pou7777
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [WooCommerce] Query Products by Category ID, and Multiple CategoriesForum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] conflict with NextGen Gallerythe message:
ERROR: schema-honeynet-v2.JPG :
Fatal error: Call to undefined function wpcf7_add_tag_generator() in /home/eadevcen/public_html/dev/jld/wp-content/plugins/contact-form-7/modules/text.php on line 152Forum: Fixing WordPress
In reply to: .htaccess rewritingForum: Plugins
In reply to: how do you hide a target URL or download link?Maybe you can try this plugin: http://ww.wp.xz.cn/extend/plugins/download-monitor/
Forum: Fixing WordPress
In reply to: AstickyPostOrder featured categories = failureInstead of having this in your header.php :
<?php $my_query = new WP_Query('category_name=featured&showposts=10');?>you must build a query with the ID instead of category_name and it should look like this:
<?php $args = array( 'showposts' => 10, 'post__in' => array(1,3,66,321) ); $my_query = new WP_Query($args); ?>where 1,3,66,321 are posts ID.
Viewing 5 replies - 1 through 5 (of 5 total)