WP Scripts
Forum Replies Created
-
Forum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Add Ons DisplayHello @seoptseseo
Sorry for the inconvenience. For some reason, we might have missed your ticket. Have you found any solution to this yet, or do you still need help on this?
DO let us know if it is plain text email or regular email. There is no direct way, you might have to edit the templates to get it, or we can update it in the plugin version itself.
Do let us know.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Can’t buy addonHello,
We hope the issue has been resolved for you. As there is no response from your side, we are closing this ticket for now. Still you can reply if you want to reach us.
Thanks & Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Store PickupHello,
It’s a little delayed, but with the version 1.3.11 update the above feature is added. Hope it’s still helpful to you.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] How to change language?For add to cart, filter is
wfs_modal_product_add_to_cart_text
For update cart,wfs_modal_product_update_cart_textThere is no filter available for ‘Continue’.
Please try to get these done with Loco Translate. We are able to find every text on Loco T.
Regards,
Team WP ScriptsHello @slaap
Thank you for trying out the plugin. We are not able to get your point. Can you please explain a bit more. Or if possible can you provide some screenshots of it.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Delivery pickup problemsHello @quimgt
Actually, that is a restriction with WooCommerce itself. We are basically fixing a Shipping method when Pickup is selected and removing a shipping method (Local Pickup) from the available services when delivery is selected.
So once the package rates are fixed for a session with an address, that stays like that until the end of the session or change of address.
Thank you so much for your feedback. Please review our plugin if you find it helpful 🙂
THanks & Regards,
Team WP ScriptsHello @fatninja07 @enricocs @robbert89 @ljconsulting
Thank you for your support and patience. It’s been really a long time but we have released the small enhancement with version 1.3.11.
With this version update, the local pickup will be selected when the Pickup service is chosen and the local pickup will be removed when delivery is chosen.
Hope this will still be helpful to you guys.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Manual OrdersHello @nickdgreen
Thank you for your patience and support. It’s really been a long time, but unfortunately, we have decided not to proceed with this feature.
With almost no requests from other users and complexity of the task, we are not going to update anything on this.
Sorry for the inconvenience.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Disable pop upHello @mikel555
Thank you for your patience and support. It’s really been a long time, but unfortunately, we have decided not to proceed with this feature.
With a number of add-ons depending on the structure and complexity of the task, we are not going to update anything on this.
Sorry for the inconvenience.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Error with Shipping classHello @davematthew
I hope you are doing good. It’s been really a long time. But we have finally added this small little feature to version 1.3.11.
We hope this will still be helpful to you.
Thnks & Regards,
Team WP ScriptsHello @mandy07 @ash707 @lostbuddha
It’s been really a long time. But we are finally adding the feature with the free version itself.
With version 1.3.11, the checkout page will automatically select Local Pickup when Pickup service is chosen by the customer and it will remove local pickup from the list when Delivery is selected.
We hope this will be useful to you and lots of other users of Food Store.
Thank you for your patience and kind support.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Add-ons problemHello @tomercohen84
Please refer to below code,
// MAKE SURE YOU HAVE $ITEM OBJECT INSIDE YOUR FUNCTION $item_id = $item['item_id']; $addon_items = wfs_get_addons_from_meta( $item_id ); $string = ''; if ( ! empty( $addon_items ) && is_array( $addon_items ) ) { foreach( $addon_items as $key => $addon_item ) { // THIS IS YOUR ADDON NAME $addon_name = isset( $addon_item['name'] ) ? $addon_item['name'] : ”; // THIS IS YOUR ADDON PRICE $addon_price = isset( $addon_item['price'] ) ? $addon_item['price'] : ”; // MAKE SURE TO ECHO OR GENERATE STRING AT APPROPREATE PLACE echo $addon_name; echo $addon_price; } } $special_note = wc_get_order_item_meta( $item_id, '_special_note', true ); if ( ! empty( $special_note ) ) { // THIS IS YOUR SPECIAL NOTE ACCOCIATED WITH THE ITEM echo $special_note; }Try to take the pieces as per your need. If you need paid support create a ticket at http://support.wpscripts.in/.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Delivery CostsHello,
You might have to remove that specific code in order to achieve this. Please check the below screenshot.
File is food-store/includes/class-wfs-services.php
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] How to change language?Hello,
If the translation is not working for you, use the following filter. Make sure to put it in functions.php of the active theme.
add_filter( 'wfs_product_add_to_cart_text', 'custom_add_to_cart_text' ); function custom_add_to_cart_text() { return 'YOUR TEXT HERE'; }To hide the plus icon you can use the CSS,
.wfs-food-item-cart-action .wfs-icon-plus { display: none; }Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Discount on Pick upHello,
With WooCommerce or any other advanced discount plugin, if you can check the condition with cookies, then you might able to get your requirement.
Pickup information can be accessed with the cookie name “service_type”. And the values are delivery and pickup. I certainly need custom development if can’t be done by any plugin. You can create a ticket at http://support.wpscripts.in/ for paid support.
Regards,
Team WP Scripts