railmedia
Forum Replies Created
-
Forum: Plugins
In reply to: [Order Tip for WooCommerce] Neve theme frontend issue on checkout pageHi there @rong123,
Yes, I see the issue on your checkout page.
Please update the plugin to version 1.1. There are several new positions you can use to display the tip form, including a shortcode you could use on any page/post/widget – [order_tip_form]
Please do let me know how it went for you.
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] How to change Tip valuesHi there @muleque
You can use the wc_order_tip_rates filter.
Example:
add_filter( 'wc_order_tip_rates', 'your_custom_wc_order_tip_rates' ); function your_custom_wc_order_tip_rates( $rates ) { $rates = array(1,2,5,10); return $rates; }
You can paste this code in your functions.php file or in another plugin.
Please also make sure, in your case, that you select the Fixed amount in the Tip Type select box on the Settings page.
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Plugin Conflict with popular pluginsI will be closing this ticket for the time being, but I will look into enhancing compatibility with the plugins you mentioned.
Hi there @vlokshah0806
Please update to the latest version (1.1) – I introduced a shortcode you can use in any page/post/widget – [order_tip_form]
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Filled fields that are deletedHi there,
Please update to the latest version (1.1) – the page will no longer refresh and no data loss will occur. The tip is added using the trigger mentioned by @miguelocarvajal
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] How can I edit the styling of the buttons?You can use the following css selector for styling the buttons:
button.woo_order_tip
I will close this ticket for the time being.
Forum: Plugins
In reply to: [Order Tip for WooCommerce] Fatal Error causing issuesI will close this topic for the time being. I will be looking into integrating the order tips with subscriptions.
Forum: Plugins
In reply to: [Order Tip for WooCommerce] Position of ShortcodeHi there @gislainelilo
Please update to the latest version. There are various positions available and also a shortcode you can use in any page/post/widget – [order_tip_form]
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] How to Reposition location of the Tip FieldsHi there @nikoy
Please update to the latest version. There are various positions available and also a shortcode you can use in any page/post/widget – [order_tip_form]
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Reports missingForum: Plugins
In reply to: [Order Tip for WooCommerce] Conflicting with checkout pageHi @krishs,
Please update to version 1.1 – latest. You will have more options to place the form and a shortcode to use wherever you wish – [order_tip_form]
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Conflicting with checkout pageHi 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 4 years, 2 months ago by railmedia.
Hi there vlokshah0806,
Thank you for getting in touch. It is actually a very interesting idea of having the form work using a shortcode as an alternative for the default functionality.
I’ll include this in a future release, however, I am not sure how soon this will happen as I’ve got a lot of pending projects at the moment.
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Plugin Conflict with popular pluginsHi tomsychau,
Thanks for reaching out.
Unfortunately, the plugin was not designed to work with CheckoutWC or any other plugin that overwrites the default WooCommerce checkout page, process, hooks, and filters.
I received a request for giving the option to use a shortcode instead of directly injecting the tip form through the hooks. I am willing to develop this and integrate it in a future version of the plugin, and perhaps it may help you in a better way than the way it works now.
Could you please share a link to the WCMP plugin?
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Conflicting with checkout pageDear krish,
I will test the plugin on the Astra theme and let you know how to fix your issues.
Regards,
Adrian