mbarrio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Advanced Menu Question for link_afterWow I cannot believe I had so over-complicated that. I think I’ve been using this method for so long that I didn’t even think to see if there was another solution.
I did see this on the w3 website for future users of the ‘content’ css element:
IE8 only supports the content property if a !DOCTYPE is specified.
Thanks, jevets!
Forum: Plugins
In reply to: [Plugin: Lifestream] New version has problemsAhhhh, just about to send the site live. Now I have to hold off til this gets fixed or I find a replacement. Wish I woulda kept the old plugin files….
Forum: Plugins
In reply to: [Plugin: WP FollowMe] Hidden Text Generated by Plugin?You will need to decompile the flash and edit the actionscript
The line you are looking for should be labeled “navigateToURL” or something similar.This shouldn’t be that much of a concern at all but that is what you’ll need to do to change it.
Forum: Fixing WordPress
In reply to: How to hide a list unless on a certain page… bump?
Forum: Fixing WordPress
In reply to: How to hide a list unless on a certain pageI know there is a php master out there that can help me. I have basically solved all my problems from recent posts of other people but this one I couldn’t so I’m going to need your help! ??
Forum: Fixing WordPress
In reply to: Formatting missing from postHey guys after a full day of trying to figure this out I noticed in the themefunction_content under the functions.php I found a snippet of code
$content = strip_tags($content);
Me and my lack of knowledge in the php realm didn’t realize that meant it would strip all the html/css/php tags off of the $content (post).Who knows maybe this will help someone else too ??
Forum: Fixing WordPress
In reply to: How to hide child pages in submenu?Hey langsuyar thanks for the post earlier
$html = wp_list_pages(“child_of=$parent_id&depth=1&echo=”.(!$return).”&title_li=0&sort_column=menu_order”);
and see what happens.
Worked perfect for my function
function themefunction_list_pages() {
add_filter(‘wp_list_pages’,’themefunction_alter_list_pages’);
wp_list_pages(“child_of=$parent_id&depth=1&echo=”.(!$return).”&title_li=0&sort_column=menu_order”);
remove_filter(‘wp_list_pages’,’themefunction_alter_list_pages’);