RobWu
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Latest plugin update breaks media uploaderany chances of having issues with the menus as well?
I’m having the same issues, incl. the Library now you mention it. I thought it was a localhost hiccup of sort..
rob
Forum: Plugins
In reply to: Woocommerce – removing active product links from shopping cartAlways nice to answer your own questions…. ??
With some more creative Google’ing/Bing’ing I found something that ended up like this:
/* REMOVE ADD TO CART BUTTON FOR nostore CATEGORY ON PRODUCT PAGE */
function western_custom_buy_buttons(){
$product = get_product();
if ( has_term( ‘nostore’, ‘product_cat’) ){// REMOVING THE ACTUAL PURCHASE BUTTONS
remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’ );
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’, 30 );
remove_action( ‘woocommerce_simple_add_to_cart’, ‘woocommerce_simple_add_to_cart’, 30 );
remove_action( ‘woocommerce_grouped_add_to_cart’, ‘woocommerce_grouped_add_to_cart’, 30 );
remove_action( ‘woocommerce_variable_add_to_cart’, ‘woocommerce_variable_add_to_cart’, 30 );
remove_action( ‘woocommerce_external_add_to_cart’, ‘woocommerce_external_add_to_cart’, 30 );
}
}
add_action( ‘wp’, ‘western_custom_buy_buttons’ );This is just for a main category, here name ‘nostore’.
Hope it helps someone!
rob
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] A question about fields and translationsHi,
One more…..
Is is possible to exclude certain products from the ‘must order at least x amount of products’ settings?
e.g. separate products have to apply to the minimum amount set, but a boxed set should be available for order at a mount of 1.cheers!
rob
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] A question about fields and translationsHi,
one additional question..
Do the filters in the Rich Guys version also have a ‘reset filter’ otpion for categories and attributes?cheers again!
rob
Forum: Plugins
In reply to: [WordTwit Twitter Plugin] wordtwit pro has stopped workingcall me silly, but isn’t it better to keep related issues within the same thread?
Personally I always hate it when you search for a solution and get a gazillion separate hits on a forum…..Hi,
Yes, I found out I had to do some pre-install tweaks to the .htaccess files to be able to go through with the cloning online.
My .htaccess files already contained several security addons, which interfered with the installer routine. Just starting off with the default values from a WP install worked just fine.
Also, as I installed my site in a subfolder (alternate path), I had to do some small changes as well to get everything as I wanted.
Other than that, the plugin works great! ??
Forum: Plugins
In reply to: [WordTwit Twitter Plugin] wordtwit pro has stopped workingSame here.
Trying to get this working, but can’t get anywhere.
The ‘estimate button’ doesn’t seem to do anything, and due to the time difference, I cannot add accounts either.very frustrating,
rob
Hi,
Thanks for the quick reply ??
I just wanted to be sure on some points.
I’ll just dive in and manually copy some files like the htaccess and index file back after the cloning. I have no custom mappings, just some additional security stuff added.again, thanks!
rob