Menaka S.
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Plugin does not activateYes, it works upto V 2.1.2 for me. v2.1.3 has the API key invalid issue.
Earlier releases can be downloaded from here.Forum: Plugins
In reply to: [Mailchimp for WooCommerce] API problem / API Key InvalidYes, it works upto V 2.1.2 for me. v2.1.3 has the API key invalid issue.
Earlier releases can be downloaded from here.Forum: Everything else WordPress
In reply to: Core contributor badge not displayed on profile pageGot the badge. Thanks. Marking it as resolved.
Forum: Everything else WordPress
In reply to: Core contributor badge not displayed on profile pageOh, is it? No issues @anevins
So, do I have to do anything on my part for this badge to appear?
As both the props were got a few weeks before the 4.8 release which is a major release, I expected the badge to appear. Is there some mistake in my understanding?Forum: Everything else WordPress
In reply to: Core contributor badge not displayed on profile pageI cleared my browser cache. I tried on mobile too. I can see only 3 badges- plugin developer, translation contributor and tranlation editor. Are my eyes deceiving me?
Forum: Everything else WordPress
In reply to: Core contributor badge not displayed on profile pageHi @anevins,
Thanks. I don’t know if there is any other profile. But it doesn’t appear on this profile: https://profiles.www.ads-software.com/menakasForum: Plugins
In reply to: [WooCommerce] How do I remove category thumb images?Hi,
You can do this through the woocommerce settings. In the woocommerce Settings go to Catalog and for Shop Page Display choose only Show products from the dropdown.Alternately, Would this post help?
https://www.ads-software.com/support/topic/removing-category-thumbnail-links/Forum: Plugins
In reply to: [WooCommerce] I cannot remove items from my cartHi,
I tried it on your site and the X removes the particular item from the cart.
It works.
??Forum: Plugins
In reply to: [WooCommerce] Can I hide wordpress plugin from text box?Hi,
Where is it? Can you show the url?Forum: Plugins
In reply to: [WooCommerce] Additional Information HeadingHi,
Add this to your child theme’s functions.php amd change ‘My Additional Information’ to whatever you want.add_filter('woocommerce_product_additional_information_heading', 'my_add_info_heading' ); function my_add_info_heading($content) { return __( 'My Additional Information', 'woocommerce' ); }
Forum: Plugins
In reply to: [WooCommerce] Keep Billing Fields but how to clear Ship To fieldsHi @spanky22,
I tried both the solutions on my local installation. The woocommerce_shipping_fields solution did not really help.But the stackoverflow solution worked perfectly. Can you check it again?
The white screen might be due to some missed/extra characters while doing copy+paste?Forum: Plugins
In reply to: [WooCommerce] Keep Billing Fields but how to clear Ship To fieldsHi,
Would this post help?
https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/According to this, you could use the filter
woocommerce_shipping_fields
instead ofwoocommerce_checkout_get_value
.If that doesn’t work, this user on stackoverflow seems to have had a similar problem and a working solution.
Hope one of these help.
Forum: Plugins
In reply to: [WooCommerce] How Can I customize Checkout error message?Hi @elmalak,
Glad ?? Will you mark this post as resolved?Forum: Plugins
In reply to: [WooCommerce] How Can I customize Checkout error message?Hi,
Add this code to your child theme’s functions.php and change Mybilling to whatever you want.function my_woocommerce_add_error( $error ) { return str_replace('Billing','Mybilling',$error); } add_filter( 'woocommerce_add_error', 'my_woocommerce_add_error' );
Hi,
If the changes are done in a child theme, then you can make the child theme’s parent as twenty seventeen and check. This does not assure a 100% smooth transition. It would really depend on what changes you have done. But, this would be the way ahead. If it fails, you can always revert easily.
Btw, I hope I don’t have to tell you to backup everything before starting the move.