WP Scripts
Forum Replies Created
-
Forum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Store PickupHello,
We are working on it to make it available with next version release. Thank you for your support & cooperation.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] we need apremium versionHello,
The menu stylings available in the demo can be achieved by using premium extension “Food Store – Essentials”. Yes, it’s compatible with WooCommerce in relation to Food Store plugin. If your customizations are minor, then we’ll add to plugin and update new version, otherwise it will be paid service to add major customizations.
You can find the extensions at Food Store > Add-Ons on your WordPress admin dashboard.
Thanks & Regards,
Team WP ScriptsHello,
This is option will be available with premium addons in coming days. At this moment it’s not available with the plugin.
Thanks & Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Is the plug in in spanish?Hello,
Thank you for reaching out. The plugin can be translated to spanish.
https://translate.ww.wp.xz.cn/projects/wp-plugins/food-store/
As per the forum there is not much submissions in Spanish. So you can use plugins like Loco Translate to create your own translation file.
Thanks & Regards,
Team WP ScriptsHello,
Truly sorry for your inconveniences. Let’s fix your problem. Can you please confirm that the plugin you are using is this one, https://ww.wp.xz.cn/plugins/woocommerce-pdf-invoices-packing-slips/ ?
Also, is your invoice (which we worked earlier) and the kitchen print being generated from the above plugin itself or is there any separate plugin to prepare kitchen print ?
Do let us know here. Or you can mail us at [email protected] with all details.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Woocommerce Add To Cart showingHello,
We just checked your website. Seems like you have made the Order Online page as your WooCommerce default shop page. That’s the reason the page is showing broken. We have received this report from other users and working on a solution.
For now we suggest you to add the below code to your functions.php of your activated theme. That should fix your problem.
function f_wfs_is_foodstore_page($shortcode_found) { if(is_shop()) { return true; } else { return $shortcode_found; } } add_filter( 'wfs_is_foodstore_page', 'f_wfs_is_foodstore_page' );Hope this helps.
Thanks & Regards,
Team WP Scripts- This reply was modified 5 years, 2 months ago by WP Scripts.
- This reply was modified 5 years, 2 months ago by WP Scripts.
Forum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] No scroll to categoryHello,
We have checked your website. Seems like because of the translation the target ID is being converted to html characters.
We are looking into it, once fixed it will be released with new version update.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Change variation price positionThank you for your support. Please review the plugin if you find it helpful. Any feedback is appreciated.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] Change variation price positionHello,
There are 2 ways you can achieve this. 1st method is to apply css on the current html elements and adjust them to come in same line.
2nd method is to apply the filters. As this is asked for 1st time, I prepared a code to check plugins flexibility for various requirements.
function f_wfs_variation_name( $child_name, $child_object) { echo $child_name . '<span>' . $child_object->get_price_html() . '</span>'; } add_filter( 'wfs_variation_name', 'f_wfs_variation_name', 10, 2 ); function f_wfs_variation_price() { echo ''; } add_filter( 'wfs_variation_price', 'f_wfs_variation_price' );1st filter, adds the price in the same row of variation name. 2nd filter return blank to make the current price area empty. Please make sure to put this code in the functions.php of activated theme. YOu still need to adjust the elements with little changes in CSS. Do let us know.
Thanks & Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] how to hide + $0.00 for addonThank you for your support. Please review the plugin if you find it helpful. Any feedback is appreciated.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] how to hide + $0.00 for addonHello @a4bits
Hope your issue has been resolved. We have tried to add as many classes as needed. Along with that plugin is fully flexible with filters and actions. We are constantly adding new elements and hooks as per requirement and enhancements.
Thanks & Regards,
Team WP ScriptsHello,
Thank you for reaching out. Yes, with paid extension “Store & Service Hours”, you can achieve your requirement. You’ll have the option to disable same day delivery and all the orders will be placed in between the time you chose in the previous day.
You can find the addons at Food Store > Add-Ons on your WordPress Admin Dashboard.
Regards,
Team WP ScriptsHello @cdsigns
Thank you for reaching out.
Import: You can just follow the regular import/export methods for WooCommerce Products. Everything remains the same except the Extras (Addons) which is a custom taxonomy and the taxonomy slug is “product_addon”. You can follow WC doc on how to import custom taxonomies and product associated with CT.
https://ww.wp.xz.cn/support/topic/product-import-with-custom-taxonomy-2/
No Extra Cost: With below code you can hide the prices having value 0.
function f_wfs_popup_addon_price( $price_html, $addon_id, $raw_price) { if( intval( $raw_price ) == 0 ) { echo ''; } else { echo $price_html; } } add_filter( 'wfs_popup_addon_price', 'f_wfs_popup_addon_price', 10, 3 );Hope this helps.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] sample dataHello @rgegeo
Sorry for the late reply. As Food Store completely based on WooCommerce, you can import the categories (Menu Items) and the Products (Items) from WooCommerce sample file for testing purpose. This import file is available in the WooCommerce plugin folder itself.
There is no import file for Food Items is available at this moment from Food Store.
Regards,
Team WP ScriptsForum: Plugins
In reply to: [Food Store - Online Food Delivery & Pickup] sample dataHello @rgegeo
Thank you for trying out the plugin. All the admin fields have sample content and upon activation plugin will apply all the necessary settings. You will also have the Order Online page created upon activation. If you want more customization on the default layout, you can then work on it. Hope this helps.
Regards,
Team WP Scripts