CyberWoolf
Forum Replies Created
-
Forum: Plugins
In reply to: [Dynamic Widgets] Not saving selectionsThank you very much! I appreciate it, works great.
Forum: Plugins
In reply to: [Dynamic Widgets] Not saving selectionsWhat can I do to fix it now?
Forum: Plugins
In reply to: [Dynamic Widgets] Not saving selectionsYes, there are a couple that have long names. Thanks for the quick reply!
Forum: Plugins
In reply to: [Custom Content Type Manager] Filtering by custom field dateAfter poking around for hours, I found a solution:
$today = date('m/d/Y'); $args = array( 'post_type' => 'meeting_minutes', 'posts_per_page' => 3, 'order' => 'ASC', 'meta_query' => array( 'key' => 'mdate', 'value' => $today, 'compare' => '>=', ), 'meta_key' => 'mdate', 'orderby' => 'meta_value', );
Forum: Plugins
In reply to: [Gallery – Photo Albums Plugin] How to make it like Demo 1Sorry bout that. Feel free to delete the post.
Forum: Networking WordPress
In reply to: Multisite Showing Blank DirectoryThank you so much ??
Forum: Networking WordPress
In reply to: Multisite Showing Blank DirectoryLOL I did.. I was creating add-on domains and it made the directories. So will it work when I make the add-on domain live?
Forum: Fixing WordPress
In reply to: IIS7 Redirect From old Folder?<rule name=”Move new to rootdir” stopProcessing=”true”>
<match url=”^new/(.*)/” />
<action type=”Redirect” url=”{R:1}” redirectType=”Permanent” />
</rule>Forum: Fixing WordPress
In reply to: ‘Settings’ Admin Menu Leads to 404 – Confused!No one?
Forum: Fixing WordPress
In reply to: SWF In Home Page Excerpt?It’s an existing site with a ton of posts already. I decided to use excerpts reloaded. Thanks
Forum: Fixing WordPress
In reply to: Themes not displaying properlyMake sure you don’t have unclosed tags and that the main page width is wide enough to accompany the all the information (sidebar and main content)
Forum: Fixing WordPress
In reply to: Sub Pages ONLY For Current Parent PageTry this one..
<?php wp_list_pages('title_li=&sort_column=menu_order&depth=1'); ?> <?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0&depth=1"); if ($children) { ?> <ul> <?php echo $children; ?> </ul> <?php } ?>
Forum: Fixing WordPress
In reply to: Split Navigation from pagesTry this…
<?php wp_list_pages('title_li=&sort_column=menu_order&depth=1'); ?> <?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0&depth=1"); if ($children) { ?> <ul> <?php echo $children; ?> </ul> <?php } ?>
Forum: Fixing WordPress
In reply to: 404 on Editing Page – Not converting :/%2Anyone else have this issue?
Forum: Fixing WordPress
In reply to: Can’t insert picture in post with 2.5I had a problem with this. When I did a search on the web for the JS error it was throwing, it turned out that it’s because I am using the FCK editor. I found people were having similar issues with FCK (non wp).
Error: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMNSHTMLTextAreaElement.selectionStart] wp-includes/js/quicktags.js?ver=3958 Line: 349
The htaccess trick worked for the html error part, but now it won’t insert the image in to the post unless I disable FCK.