indreshyadav
Forum Replies Created
-
Hi @mrclayton ,
I have checked you API documentation as you provided thewc_stripe_force_save_payment_methodfilter is not working because we need to save payment method for when order total amount is zero.
so when total amount is zero then this filter is not working.So please provide filter in
should_save_payment_method()Kind Regards,
Hello,
@fawazmek
you want want to remove featured image from shop page as well as single product page then you can simply remove the following hooks.add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); add_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );for more info
https://businessbloomer.com/woocommerce-visual-hook-guide-archiveshopcat-page/
https://businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/It will help you.
Forum: Plugins
In reply to: [WooCommerce] Make [products] pagination work on all pagesHello,
@shiznitxxx please try with your theme setting for pagination because theme override the default woocommerce pagination.Forum: Plugins
In reply to: [WooCommerce] Rename select optionsHello,
@adwaitatechnologies yes, it is possible, if you only want to change the “Select Options”
text then you can change using LOCO translate plugin and for light box pop-up functionality you need to modify the single product page.Forum: Plugins
In reply to: [WooCommerce] Change text button continue shopping in WoocommerceHello,
@vdooijes if you are using Polylang plugin then you no need to use LOCO translate plugin,
you can translate using PolylangForum: Plugins
In reply to: [WooCommerce] Change Coupon notice/error messageHello,
@lastnoob if your problem is solved, so please resolved this ticket.Forum: Plugins
In reply to: [WooCommerce] Change text button continue shopping in WoocommerceHello,
@vdooijes
Go to the Loco Translate–>plugins->WooCommerce
here is screenshot, search the string you want to translate.Forum: Plugins
In reply to: [WooCommerce] Adding product details button above add to cart buttonhello,
@above-the-circle you can use ‘woocommerce_before_add_to_cart_button’ hook to add section above the add to cart button.Forum: Plugins
In reply to: [WooCommerce] Change text button continue shopping in WoocommerceHello,
@vdooijes you can use LOCO translate plugin to change the text.Forum: Plugins
In reply to: [WooCommerce] Change Coupon notice/error messageHello,
@lastnoob
you can use following code.add_filter( 'woocommerce_coupon_error','coupon_error_message_change',10,3 ); public function coupon_error_message_change($err, $err_code, $parm ) { switch ( $err_code ) { case 105: /* translators: %s: coupon code */ $err = sprintf( __( 'Coupon "%s" does not test!', 'woocommerce' ), $parm->get_code() ); break; } return $err; }you can modify message.
- This reply was modified 6 years, 2 months ago by indreshyadav.
- This reply was modified 6 years, 2 months ago by indreshyadav.
- This reply was modified 6 years, 2 months ago by indreshyadav.
Forum: Plugins
In reply to: [WooCommerce] Single page layoutHello,
@vikasbobi if you problem is solved, then please resolved this tikcet.Forum: Plugins
In reply to: [WooCommerce] Change Coupon notice/error messageHello,
@lastnoob you can use the following filter.
apply_filters( 'woocommerce_coupon_error', $err, $err_code, $this )Forum: Plugins
In reply to: [WooCommerce] Single page layoutHello,
@vikasbobi
Yes, I can do that as per your requrementForum: Plugins
In reply to: [WooCommerce] Ordering DropdownHello,
@omarfolghe can you change the theme for a while to check the issue.
or you can try
https://wordpress.org/plugins/health-check/ this plugin to switch the theme.Forum: Plugins
In reply to: [WooCommerce] Single page layoutHello,
@vikasbobi
/woocommere/templates/single-product/tab/tabs.php
This is the core file, so you need to hire a developer for that.