emanuelhud
Forum Replies Created
-
I was able to replicate this issue by sending a test email, and trying to create an account after woocommerce checkout. <gwmw style=”display: none; background-color: transparent;”></gwmw>
We have purchased your plugin. How can I prevent duplicate form by email from submitting on Elementor submissions and WordPress.
It does not work with the pro version as, we still see form Submissions after preventing duplication by email.- This reply was modified 2 years, 5 months ago by emanuelhud.
- This reply was modified 2 years, 5 months ago by emanuelhud.
- This reply was modified 2 years, 5 months ago by emanuelhud.
Forum: Plugins
In reply to: [WooCommerce] Implement a 3% discount for customers who use StripeI will check is out. Thanks!
Forum: Plugins
In reply to: [WooCommerce] The buy now button not redirectingAfter adding the code below, I and trying to use css on Buy Now Button for design, can’t make sense of it. Can you show me which class is it?
I have tried a few classes but they didn’t do the job:
button#sbw_wc-adding-button.single_add_to_cart_button.buy_now_button.button.alt
I am using Hello Theme and elementor page builder.
The website page: https://jor-d.com/product/white-tabbit-13/
PHP code:
/* Dynamic Button for Simple & Variable Product */
/**
* Main Functions
*/<gwmw style=”display:none;”></gwmw>function sbw_wc_add_buy_now_button_single()
{
global $product;
printf( ‘<button id=”sbw_wc-adding-button” type=”submit” name=”sbw-wc-buy-now” value=”%d” class=”single_add_to_cart_button buy_now_button button alt”>%s</button>’, $product->get_ID(), esc_html__( ‘Buy Now’, ‘sbw-wc’ ) );
}add_action( ‘woocommerce_after_add_to_cart_button’, ‘sbw_wc_add_buy_now_button_single’ );
/*** Handle for click on buy now ***/
function sbw_wc_handle_buy_now()
{
if ( !isset( $_REQUEST[‘sbw-wc-buy-now’] ) )
{
return false;
}WC()->cart->empty_cart();
$product_id = absint( $_REQUEST[‘sbw-wc-buy-now’] );
$quantity = absint( $_REQUEST[‘quantity’] );if ( isset( $_REQUEST[‘variation_id’] ) ) {
$variation_id = absint( $_REQUEST[‘variation_id’] );
WC()->cart->add_to_cart( $product_id, 1, $variation_id );}else{
WC()->cart->add_to_cart( $product_id, $quantity );
}wp_safe_redirect( wc_get_checkout_url() );
exit;
}add_action( ‘wp_loaded’, ‘sbw_wc_handle_buy_now’ );
/* Dynamic Button for Simple & Variable Product Closed */
<gwmw style=”display:none;”></gwmw>
(@roxannestoltz)
Hi @emanuelhud ,
Glad to hear you have identifed the culprit!
Regarding the quantity button, this seems to display, by default, with the Hello Elementor theme and no plugin should be required.
This being said, since this forum is dedicated to support related to the WooCommerce core plugin, you’ll need to reach out to Elementor support for further help with this specific issue.
Here is a direct link to their dedicated forum.
Hope this points you in the right direction
- This reply was modified 3 years, 2 months ago by emanuelhud.
(@roxannestoltz)
Hi @emanuelhud ,
Glad to hear you have identifed the culprit!
Regarding the quantity button, this seems to display, by default, with the Hello Elementor theme and no plugin should be required.
This being said, since this forum is dedicated to support related to the WooCommerce core plugin, you’ll need to reach out to Elementor support for further help with this specific issue.
Here is a direct link to their dedicated forum.
Hope this points you in the right direction!
- This reply was modified 3 years, 2 months ago by emanuelhud.
Forum: Plugins
In reply to: [WooCommerce] The buy now button not redirectingOk, thank you very much!
Forum: Plugins
In reply to: [WooCommerce] The buy now button not redirectinghttps://pasteboard.co/T838GrwLsn4e.png
- This reply was modified 3 years, 2 months ago by emanuelhud.
Forum: Plugins
In reply to: [WooCommerce] The buy now button not redirectinghttps://pasteboard.co/T838GrwLsn4e.png
- This reply was modified 3 years, 2 months ago by emanuelhud.
- This reply was modified 3 years, 2 months ago by emanuelhud.
Forum: Plugins
In reply to: [WooCommerce] The buy now button not redirectingThank you, the plugin that makes this conflict is Quantity Plus Minus Button for WooCommerce by CodeAstrology. any suggestion how to achieve -1+ on the quantity side on WooCommerce
Like in the attached below:
https://pasteboard.co/T838GrwLsn4e.png
- This reply was modified 3 years, 2 months ago by emanuelhud.
- This reply was modified 3 years, 2 months ago by emanuelhud.
- This reply was modified 3 years, 2 months ago by emanuelhud.