mvvapps
Forum Replies Created
-
Forum: Plugins
In reply to: [Chat Button- Leads and Order over Chat] Não recebi o email de confirmaçãoWhat is the issue you are facing? are you able to activate the plugin? Once it is activated go the page site.com/wp-admin/options-general.php?page=mvvwo_admin_ui
Also you can follow this video https://www.youtube.com/watch?v=xlLV-pxNrdg&feature=emb_title
Forum: Plugins
In reply to: [Chat Button- Leads and Order over Chat] Não recebi o email de confirmaçãoHi, We can’t see any payment/purchase from this email id or from this site.
Could you share the correct email id from which you made the purchaseForum: Plugins
In reply to: [Booking Addon for WooCommerce] Disappeared?We have moved it to our own site. If you want, it can be downloaded at https://mvvapps.com/woocommerce-booking-and-appointment-plugin/
Forum: Plugins
In reply to: [Booking Addon for WooCommerce] Disappeared?yea, those are GPL, But we didn’t give credits. And not allowed to resubmit after giving credits.
Forum: Plugins
In reply to: [Booking Addon for WooCommerce] Disappeared?We tried our best to convince. There was some functions and templates are copied from woocommerce booking plugins, that may be the reason.
Forum: Plugins
In reply to: [Chat Button- Leads and Order over Chat] Não recebi o email de confirmaçãoPlease check your email spam folder also.
If you share your email Id, we can check and resend it.Forum: Plugins
In reply to: [Booking Addon for WooCommerce] Disappeared?🙁 WordPress removed our plugin. Saying ” it is a copy of woocommerce booking Plugin.
If we copy some thing. It must have substantial changes in it. ”
What’s your thoughts on this? Was it same as woocommerce bookings Plugin?You can hide cart button using custom css code.
Add below css code to hide add to cart buttonbutton.single_add_to_cart_button { display:none !important; }You can add this css Appearnce>>Customize>>Additional Css
Forum: Plugins
In reply to: [Booking Addon for WooCommerce] Missing stockActually there is no such field in DB, as the inventory connected with the slots. It will not have a specific value in database. It is calculated programmatically as the customer try to book a slot.
Could you give a more idea on your needs, I mean how you want the inventory data. You want it for all the slots? or you will be passing any date/time in the api request to fetch inventory for that time?Forum: Plugins
In reply to: [Booking Addon for WooCommerce] Turism with TukTuk@andregouveia , We have released the Pro version, Still a beta version.
You can get it from this checkout https://checkout.freemius.com/mode/dialog/plugin/4871/plan/8353/ You can have a test, If it is not meeting your requirement, You can request refund. We ensures risk free money back.And regarding your query on elementor: This Booking form and Calender all together appended next to the add to cart button for a product. So if you add the product add to cart button in elementor, the booking for also will be visible.
You can’t use this without connecting to a productForum: Plugins
In reply to: [Booking Addon for WooCommerce] Missing stockThere is now such api now. We will implement it in future versions. Anyway we cant provide a estimated date now
Forum: Plugins
In reply to: [Booking Addon for WooCommerce] Turism with TukTukYea. It will be working so. Anyway we can’t give an assurance now. We can provide the trail version once it is released and you can check it.
Forum: Plugins
In reply to: [Booking Addon for WooCommerce] Turism with TukTukThanks for detailed explanation.
Your requirement is not possible with current version.
We are working one a pro version now, in this version, we will be providing resources section.
It will allow add resources for booking items. And also can set the limit for a resource.So we hope your requirement will be possible in the pro version.
Hopefully we will be releasing the pro version by this week .
Forum: Plugins
In reply to: [Booking Addon for WooCommerce] How to Localize / Translate Plugin@andregouveia create a new thread. This thread is for translation queries.
Forum: Plugins
In reply to: [Booking Addon for WooCommerce] How to Localize / Translate Plugin@magneticdud We have released a new update.We have added the missing strings also. Now we have two json files, You have to copy both to languages folder and translate. The new one (mvvwb-productMeta.json) is for the texts in product edit window.
@andregouveia Yea, now you can change the datepicker format to 24 hours. You just add below code in functions.php in your theme
function mvvwb_config_filter($settings) { $settings['conf']['timePickerFormat'] = 24; return $settings; } add_filter('mvvwb_config_filter', 'mvvwb_config_filter', 10, 1);