codesmithsf
Forum Replies Created
-
Thanks for the reply. This is the email set in the New Post Notification for the form. “Enable Post Notification” is checked. When a new post is submitted we are only getting an email if the user happens to be logged in. If the user is a guest visitor, no email is being sent. Checked spam, etc. Perhaps it’s an issue with the webhost but thought it was weird that we were sometimes getting the notification so thought I would ask here. Thanks!
+1
I always hesitate in recommending this plugin due to the frequency of updates. 6 releases in 8 days is ridiculous.
Forum: Plugins
In reply to: [Page-list] Shortcode broken with WP 4.4. upgradeWP 4.4.1 upgrade broke a shortcode on one of my websites as well. The short code had a space in it. Re-typing the space/re-saving did not help in either Text or Visual editor mode. Changing the name of the shortcode to remove the space solved the issue.
Forum: Plugins
In reply to: Fold Category List for 2.3.1@mystifier – Thanks for the fix. I’ve included it in the plugin as version 1.2.1 and updated the download link above. So you now can you use &exclude= followed by a comma delimited list of category ids to exclude certain categories from showing up.
Example:
wswwpx_fold_category_list ("hide_empty=1&optioncount=1&exclude=2,3");@deeplook – Have you updated your sidebar.php to include the call to wswwpx_fold_category_list?
Forum: Plugins
In reply to: Fold Category List for 2.3.1Once you’ve installed and activated the plugin you’ll need to modify sidebar.php to call the main function. I’m not sure what all the options are (check the WebSpaceWorks site for more details) but here’s the snippet from my sidebar.php file:
<?php //standard 2.3.1 category call... //wp_list_categories("show_count=1&title_li="); //...replaced with the Fold Category List function call wswwpx_fold_category_list ("hide_empty=1&optioncount=1"); ?>The sidebar.php file is located at wp_content/themes/default/sidebar.php