Hi there @krishs,
Yes, I confirm there is an issue with the Astra theme and the plugin. I am currently working on implementing a few new positions where you can place the tip form.
If you are eager to get it fixed and unable to wait for the next version, for the time being, please do the following:
In the folder /frontend/controllers/main.class.php, at line 28, change:
add_action( 'woocommerce_checkout_after_customer_details', array( $this, 'tip_form' ) );
to
add_action( 'woocommerce_before_order_notes', array( $this, 'tip_form' ) );
This would move the form tip before the order notes field on the checkout page and the order review would go back to its normal position.
You could try also:
add_action( 'woocommerce_checkout_order_review', array( $this, 'tip_form' ) );
This would move the tip form right after the “Your Order” title in the order summary in the sidebar.
The new release of the plugin will come with more positions for the tip form and with a shortcode should anyone wish to display it on any page/post.
@sushmita11 you can style the buttons for mobile with your own CSS. You can use the following css selector for this purpose:
button.woo_order_tip
Best,
Adrian
-
This reply was modified 3 years, 10 months ago by railmedia.