mcwebdesignro
Forum Replies Created
-
Forum: Plugins
In reply to: Woocommerce drop down filter does not work on iOSTry this. Enter the following code into your theme functions.php file:
add_action( 'wp_enqueue_scripts', 'agentwp_dequeue_stylesandscripts', 100 ); function agentwp_dequeue_stylesandscripts() { if ( class_exists( 'woocommerce' ) ) { wp_dequeue_style( 'select2' ); wp_deregister_style( 'select2' ); wp_dequeue_script( 'select2'); wp_deregister_script('select2'); } }This simple bit of code will disable the enhanced boxes and give you a good old fashioned dropdown menu. This method has been tested in WooCommerce 2.5.5.
Forum: Plugins
In reply to: [Delete Spam Users] Page delete 'Comment Count'I’ll add this feature in the next update.
Forum: Plugins
In reply to: [Delete Spam Users] Users with no posts OR no comments?I’ll add this feature in the next update.
Forum: Plugins
In reply to: [Delete Spam Users] doesnt work for meTry the old version: http://downloads.wordpress.org/plugin/no-posts-user-delete.1.0.zip
Forum: Plugins
In reply to: [WordPress WP-Advanced-Search] Language files don't have correct nameThe current version is 2.01, but you still didn’t correct the language file names.
In WP-Advanced-Search.php you have:
load_plugin_textdomain('WP-Advanced-Search', false, dirname(plugin_basename( __FILE__ )).'/lang/');The files in lang folder must have the name like is defined in the code above: WP-Advanced-Search-xx_XX.mo and WP-Advanced-Search-xx_XX.po, wih upper case at beginning.
Forum: Plugins
In reply to: [WordPress WP-Advanced-Search] Language files don't have correct nameThe plugin is default in french language, but has support for other languages. The files are located in the plugin’s folder “lang”, but they have a wrong name.
Forum: Plugins
In reply to: [Delete Spam Users] Respect Post Types?NO, it doesn’t.