allg33k
Forum Replies Created
-
Forum: Plugins
In reply to: [Printful Integration for WooCommerce] Old Plugin?I just installed and tested, it works again! Thanks so much. My orders that went out yesterday didn’t have shipping added fortunately it wasn’t more than the profit. 🙂
Forum: Themes and Templates
In reply to: [tdMacro] Turn off CommentsUltimately I would prefer not to have to remove the code every time the theme is updated.
Forum: Plugins
In reply to: [Better bbPress Signature] support for bbpress 2.3?Didn’t work for me. Also after the change above it looks like the plugin and my theme are fighting over how to style the button.
Forum: Fixing WordPress
In reply to: Pages Widget: Hiding PagesExcellent you answered my next question without me posting it. Your answer did exactly what I needed it to do. However the theme I’m using is also displaying the pages at the top of the page. I was assuming the widget would control that list too, however it doesn’t appear that way. So I’m assuming I need to look in the header for how it’s pulling that list: wp_list_pages and see if I can add your exclude in there.
….almost worked. I’m sure this just comes down to a comma or something. Here’s where it’s at in the header:
<?php if ( get_theme_mod( ‘cat_nav’ )) { wp_list_categories(‘title_li=&depth=1’ ); } else { wp_list_pages(‘title_li=&depth=1’ ); } ?>
And I tried to do this:
<?php if ( get_theme_mod( ‘cat_nav’ )) { wp_list_categories(‘exclude=12,24; title_li=&depth=1’ ); } else { wp_list_pages(‘exclude=21,24 title_li=&depth=1’ ); } ?>
It appears to disregard the title_li part then. So I’m guessing you can’t put two things inside the () or I’m using a ; instead of something else. Any help?