AMP-MODE
Forum Replies Created
-
Forum: Reviews
In reply to: [Leave At Door For WooCommerce] Really useful pluginThanks for the great review, @birdhousedigital
Forum: Plugins
In reply to: [Leave At Door For WooCommerce] Move location on Order pageForum: Plugins
In reply to: [Leave At Door For WooCommerce] Move location on Order pageHi @birdhousedigital thanks for that! Yes, this is certainly possible.
First, you will have to add the following line of code to your functions.php or to a site-specific plugin. This will remove the “leave at door” options from the checkout page altogether.
remove_action( 'woocommerce_review_order_before_submit', 'wlad_checkout_options' );
Next, you’ll have to add the “leave at door” options back where you want them. You can do that by including anadd_action()
function that includes the correct function from our plugin (wlad_checkout_options()
).
Here is an example of what you would want to add:
add_action( 'woocommerce_after_order_notes', 'wlad_checkout_options' );
The first part of that function (
woocommerce_after_order_notes
) is the location where the “leave at door” options will be added. This can be changed to any of the action hooks available on the checkout page. See this page for a visual guide of all the action hooks available. The second part (wlad_checkout_options
) is the function that adds the options to the checkout page. This should not be changed.Altogether, it should look something like this:
remove_action( 'woocommerce_review_order_before_submit', 'wlad_checkout_options' ); add_action( 'woocommerce_after_order_notes', 'wlad_checkout_options' );
Again, you can change
woocommerce_after_order_notes
to any of the available action hooks provided in the link above.If this has helped you at all, I would encourage you to leave a review to help others find this plugin for their store. If you still need assistance, please let me know.
Forum: Reviews
In reply to: [Free Product Sample for WooCommerce] Worst support everThanks so much, @egocefalo for the great review!
Hi @vikashbavisi, sorry for the experience you had with support. We recently acquired this plugin from the original developer, and we may have lost your support ticket in the transition. If you would be willing to reach back out to us with your issue, we’ll do our best to help solve it. https://amplifyplugins.com/support/
Forum: Reviews
In reply to: [Free Product Sample for WooCommerce] TERRIBLE PLUGIN AND EVEN WORSE SUPPORTHi @ryantack89, sorry for the experience you had with support. We recently acquired this plugin from the original developer, and we may have lost your support ticket in the transition. If you would be willing to reach back out to us with your issue, we’ll do our best to help solve it. https://amplifyplugins.com/support/
Forum: Reviews
In reply to: [Free Product Sample for WooCommerce] Support Requests are not Responded toHi @kimruddock, sorry for the experience you had with support. We recently acquired this plugin from the original developer, and we may have lost your support ticket in the transition. If you would be willing to reach back out to us with your issue, we’ll do our best to help solve it. https://amplifyplugins.com/support/
Forum: Reviews
In reply to: [Free Product Sample for WooCommerce] Support doesn’t respondHi @innpulswerbeagentur, sorry for the experience you had with support. We recently acquired this plugin from the original developer, and we may have lost your support ticket in the transition. If you would be willing to reach back out to us with your issue, we’ll do our best to help solve it. https://amplifyplugins.com/support/
Forum: Plugins
In reply to: [Free Product Sample for WooCommerce] PRODUCT_TYPE: Sample SAMPLE_PRICE: 0Great, I’m glad that helped. If you are willing to leave a review based on the support you received, we would really appreciate it.
https://www.ads-software.com/support/plugin/woo-free-product-sample/reviews/#new-post
Forum: Plugins
In reply to: [Free Product Sample for WooCommerce] Add to cart problemHey, @fabiogigli sorry for the delayed response. We recently acquired this plugin from the original developer, and this question might have gotten lost in the transition. We’re planning on addressing the open support questions now that the transition dust has settled.
To help with this, could you provide me with a link to a product that is experiencing this behavior?
Also, if you want to reach out to our support directly via email in case you don’t want to post your response publicly, you can do so here: https://amplifyplugins.com/support/
Forum: Plugins
In reply to: [Free Product Sample for WooCommerce] Unable to purchase Pro versionHey @oakwoodmedia and @mediendesignwerk Thanks for checking out the plugin. We recently acquired this plugin from the original developer, so you may have gotten caught up in the transition. You should be able to purchase it now by going to our website here: https://amplifyplugins.com/downloads/free-product-sample-for-woocommerce/
Please let me know if you have any questions.
Thanks!
Forum: Plugins
In reply to: [Free Product Sample for WooCommerce] PRODUCT_TYPE: Sample SAMPLE_PRICE: 0Hi, @egocefalo update to version 2.2.1 and then add the following to your theme’s functions.php or to a custom plugin.
/** * This filter tells the plugin you want to replace PRODUCT_TYPE and SAMPLE_PRICE with something else. */ add_filter( 'wfps_custom_order_meta', __return_true() ); /** * This action will actually output whatever you want in place of the * existing PRODUCT_TYPE and SAMPLE_PRICE lines. * In the example below, I've changed the following: * PRODUCT_TYPE -> Product type * SAMPLE_PRICE -> Sample price * To add your own custom information enter the following: * wc_add_order_item_meta( $itemID, 'Heading text', 'Value text shown after the colon' ); */ add_action( 'wfps_custom_order_meta_action', 'fps_custom_meta_action', 10, 2 ); function fps_custom_meta_action( $itemID, $values ) { $sample = __( 'Sample', 'woo-free-product-sample' ); wc_add_order_item_meta( $itemID, 'Product type', $sample ); wc_add_order_item_meta( $itemID, 'Sample price', (float)$values["sample_price"] ); }
Let me know if you need any further assistance with this.