Marc
Forum Replies Created
-
Forum: Plugins
In reply to: [Free Product Sample for WooCommerce] MultiVendorX CompatibilityHi Thank you for bringing this up. I will discuss this with my team and give you an update.
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] No code send to subscriberHi, thank you for informing us regarding your issue.
Do you have staging site where we can test your issue?
Hi,
Upon understanding on your issue, this is actually how WooCommerce works. WooCommerce expects to see a variation passed to the cart when a customer adds a product to the cart if that product is variable. This is because customers and store owners must know which product variation a customer wants. Think about a product that comes in several different colors. The customer will want to pick a specific color, and the store owner will want to know which color to send the customer – even with a sample. And we also follow WooCommerce’s process for validating variable products being added to a cart.
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] SD stopped workingHi, the page you shared can’t be reach, can you please share the working page for us to see the issue. Thanks
Forum: Plugins
In reply to: [Free Product Sample for WooCommerce] Fatal error on PHP 8.1Hi – thank for bringing this up. We are already working with this.
Forum: Plugins
In reply to: [Tabbed Account Area for Easy Digital Downloads] UpdatesHi – yes we already working with the new release. ??
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] PHP8 IncompatibilityHi Marco, thank you for informing us regarding this. We already working on this issue.
Forum: Plugins
In reply to: [Simple Full Screen Background Image] What happened to you guys ?Hi Sorry for the late reply, yes we still in the game. Our websites are all working.
Hi you can check our readme text in this link
Regards,
Forum: Plugins
In reply to: [Free Product Sample for WooCommerce] Your website is down, should we worry?Hi – no you should not worry anything. Thanks for asking.
Forum: Plugins
In reply to: [Simple Full Screen Background Image] remove background imageHi Lexant,
In removing the background image. You need to go to Appearance > Fullscreen BG Image > In each image that you have uploaded there is a Delete button beside Edit Image button.
I hope that answer your question.
Regards,
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] Stopped generating codesHi – can you please give me screenshots of the issue that you encounter and also the settings.
Thanks
Forum: Plugins
In reply to: [Leave At Door For WooCommerce] Not workingHi – we need additional details to move forward. First can you please explain to us the details of your testing site?, is this a replicate of your live site barnes.com? If not what are the plugin installed and the themes your using?
We also recommend the troubleshooting below to isolate your proble;
1. Copy your site to a staging or development server to troubleshoot this issue if possible (many hosts offer this as part of their hosting packages). If not, be sure to backup everything on your live site (files and database).
2. Deactivate all plugins on the site except for WooCommerce and Leave At Door For WooCommerce .
3. Check if Leave At Door For WooCommerce works as expected again.
4. If it does, reactivate one of the previously active plugins, and continue to step 5. If it does not skip ahead to step 6.
5. Repeat steps 3 and 4 until the plugin stops functioning correctly. The last plugin that you activated likely is the cause of the error.
6. Switch your theme to Storefront, then repeat step 3. Continue to step 7.
7. If the plugin functions as expected, the problem is likely in your theme. We can help troubleshoot from there.We hope this helps.
Forum: Plugins
In reply to: [Leave At Door For WooCommerce] Make all of it mandatory?Hi,
Please refer below for the code.
To hide the checkbox that is shown on the checkout page, you will need to use a little code. The following code will go in your theme’s style.css file or in a custom plugin.
p#leave_at_door_checkbox_field { display: none; }
To make the field mandatory. The following code will go in your theme’s functions.php file or in a custom plugin.
add_action( 'woocommerce_after_checkout_validation', 'make_delivery_instructions_text_mandatory2', 9999, 2); function make_delivery_instructions_text_mandatory2( $fields, $errors ){ // if any validation errors if ( empty( $_POST['leave_at_door_instructions'] ) ) { $errors->add( 'woocommerce_password_error', __( 'Please add note to the instruction' ) ); } }
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.
Cheers
- This reply was modified 2 years, 5 months ago by Marc.
Forum: Plugins
In reply to: [Leave At Door For WooCommerce] Make all of it mandatory?