Saji
Forum Replies Created
-
Forum: Plugins
In reply to: [Woo Store Vacation] vacation notice in email notifications?Hi JP,
Yes, this is a very good feature request. I’ve noted it down and added it for consideration in a future update.
Thanks for taking the time to suggest it.
Forum: Plugins
In reply to: [Woo Store Vacation] Notice Placement on home pageHey there đź‘‹
Yes, you can fully control where the Store Vacation notice appears, especially when using Elementor.
You can add the Store Vacation notice directly inside your Elementor page using either:
- Store Vacation Notice Elementor Widget
[woo_store_vacationShortcode
We’ve prepared a step-by-step guide here:
👉 https://mypreview.github.io/woo-store-vacation/#store-vacation-notice-elementor-widgetOnce you insert the vacation notice manually (via shortcode or Elementor widget):
- The default automatic notice will be disabled
- The notice will only appear in the exact location you choose
- No more layout issues or split containers in Elementor
This gives you full layout control and avoids conflicts with Elementor’s container system.
If you need help choosing the best placement or styling it within your layout, feel free to ask.
Forum: Plugins
In reply to: [Woo Store Vacation] vacation notice in email notifications?Hi JP,
Thanks for your message!
At the moment, the plugin doesn’t include a built-in option to automatically add the vacation notice inside WooCommerce email notifications. However, the plugin does provide a function and hooks that developers can use to insert a message into order emails if needed.
If you have a developer, they can use the available hooks (such as theÂ
woo_store_vacation_vacation_mode action) together with your email templates to display a notice inside the “Order on hold” and “Processing order” emails.Since this requires custom coding and depends on how your theme or other plugins handle emails, I recommend asking a developer to implement it safely so it integrates properly with your store.
Let me know if there’s anything else I can assist with!
Forum: Plugins
In reply to: [Woo Store Vacation] Indexing issues after plugin installHi there,
Thank you for reaching out, and I understand how stressful a sudden deindexing issue can be. I want to reassure you with full confidence that Store Vacation for WooCommerce absolutely does not contain any functionality that can affect your site’s indexability, search visibility, or Google’s ability to crawl your pages.
Here are the key points to clarify:
âś…Â 1. The plugin does not touch anything related to SEO or indexing
Store Vacation does not modify:
- meta tags
- robots.txt
- sitemap files
- canonical URLs
- indexing directives (
noindex,Ânofollow) - .htaccess rules
- server headers
We simply do not have any code that interacts with those areas.
âś…Â 2. The plugin does not overwrite or alter your database outside its own settings
The plugin stores only a small set of its own configuration options under your WordPress options table (just like any other normal plugin).
It never:- deletes WooCommerce tables
- modifies product data
- alters posts/pages
- applies global redirects
- injects code into templates
Uninstalling the plugin removes only the settings related to Store Vacation and nothing else.
âś…Â 3. Temporary “close store” behavior does not affect Google
Even when the store is in vacation mode, the plugin only controls frontend visibility for customers.
It does not:- block Googlebot
- return 404/410
- returnÂ
noindex headers - password-protect content
- disable the cart for search engines
Search engines continue to access the site normally. Many customers use vacation mode regularly without any SEO impact.⚠️ About what you saw after reinstalling
If you reinstalled the plugin and it still recognized that you had configured the store to reopen in September, that simply means your earlier settings were still in the WordPress options table. This is normal for WordPress plugins unless you choose “Delete data on uninstall” — and even then, the data is limited only to the plugin’s own settings, not your site content.
Again, this cannot influence indexing or remove anything from your site structure.
📌 What you can do next
Since the issue involves:
- complete deindexing
- vague crawl errors
- timing overlap
I strongly recommend checking:
- Google Search Console → Coverage → Errors
- Server logs for spikes in 5xx errors
- Any caching/CDN/firewall (Cloudflare, Sucuri, etc.)
- Hosting provider for downtime during that period
- Whether any SEO plugin added globalÂ
noindex (this happens surprisingly often)
If you are comfortable sharing screenshots of the crawl errors from Search Console, I can help interpret them.
Please be assured: Store Vacation cannot cause deindexing and does not modify your site’s database or SEO settings in any way.
We’re happy to help you look further into the issue.Forum: Plugins
In reply to: [Additional Terms for WooCommerce] Phantom checkbox showingHey Joh,
This happens pretty often when switching between the WooCommerce block checkout and the classic checkout. When you switched to the classic checkout, WooCommerce automatically added its own built-in Terms & Conditions checkbox. The plugin adds its own checkbox too, so you end up seeing two. That “phantom” checkbox isn’t coming from the database, which is why you couldn’t find it in phpMyAdmin. It’s generated by WooCommerce itself.
If you want to keep using the classic checkout, you’ll need to disable WooCommerce’s default terms checkbox. You can do that by going to WooCommerce → Settings → Advanced → Page setup and removing the Terms and Conditions page (or unchecking the related option, depending on your version). After that, only the plugin’s checkbox will show up.
But if you’re using the block checkout, you can definitely use the plugin there too. You just need to add the Additional Terms block inside your Checkout block and place it wherever you want. That way you won’t get duplicate checkboxes.
Here’s the documentation if you want to follow it step by step:
https://mypreview.github.io/woo-additional-terms/#additional-terms-blockLet me know if you need help placing the block!
Forum: Plugins
In reply to: [Woo Store Vacation] Store vacation message shows in wrong locationHello John,
Thank you for reporting this issue. At this time, the plugin does not have an option to automatically remove the default vacation notice when the shortcode is used. We appreciate you bringing this to our attention, and we’ll consider it for a future update.
For now, you can hide the automatically inserted notice on your product pages by adding this CSS to your site:
.single-product .main-content > #woo-store-vacation {
display: none;
}Thank you again for helping us improve the plugin!
Forum: Plugins
In reply to: [Woo Store Vacation] Button stylingHey Vladimir,
Thanks for the follow-up!The
inheritkeyword in CSS means that the property is taking its value from a parent element. This can sometimes interfere with custom styling if the parent has strong or unexpected styles.To override it, you can useÂ
!important in your CSS to force your styles to apply.Forum: Plugins
In reply to: [Woo Store Vacation] Start-End DateHi there,
Thank you for your message!Unfortunately, setting specific hours and minutes for the start and end dates isn’t currently supported in the plugin. That said, I really appreciate you sharing this use case — I’ve added your request to our feature suggestions list for future consideration.
Thanks again for your feedback!
Hi there!
Great to hear that updating to version 1.9.5 resolved the issue and thanks for letting me know!Yes, the plugin is fully compatible with WordPress 6.8.1. We’ve also just released a new version with some styling adjustments to ensure compatibility with WooCommerce 9.9.5, so I’d definitely recommend updating to the latest version if you haven’t already.
Forum: Plugins
In reply to: [Woo Store Vacation] Button stylingHey Vladimir,
Thanks for reaching out!At the moment, the plugin doesn’t offer built-in options to change the button styling. However, you can customize it with CSS using theÂ
.woo-store-vacation__btn selector. For example:.woo-store-vacation__btn {
background-color: #101010 !important;
color: #fff !important;
border-radius: 10px;
padding: 6px 20px;
}
.woo-store-vacation__msg {
vertical-align: middle;
}Feel free to adjust the styles as needed to match your theme.
Hi there, thank you so much for reaching out. We appreciate for the kind words about the plugin!
The Shop Manager role should have access to the Store Vacation settings, so it’s possible that this issue is related to the plugin version or a role customization on your site. Could you please double-check that you’re using the latest version of the plugin?
Hi there, thank you so much for reaching out.
Regarding the issue on your chicmouldings website:
If you’ve confirmed that there are no conditions set that would prevent vacation mode from activating, could you please double-check the following in the Vacation settings?- Ensure that “Enable Vacation Mode” is checked.
- Also make sure “Disable Purchases” is ticked.
These two options are essential for preventing customers from adding products to the cart and completing checkout.
If everything is set correctly and you’re still seeing issues, feel free to send us a screenshot of your current Woo Vacation settings so we can take a closer look for you.
Forum: Plugins
In reply to: [Additional Terms for WooCommerce] Where does the collected info go?Hi there!
Yes, you can access the acceptance of the terms checkbox on the order page. Both sections you shared in your screenshots are correct — the acceptance is recorded in the order notes as well as in the order details section.
Forum: Plugins
In reply to: [Woo Store Vacation] How to turn off Store Vacation on my Mobile phone siteHi Mark,
Thanks for reaching out! It sounds like the issue is likely related to caching. If you’re using a caching plugin, please try purging or clearing your site cache. Alternatively, you can go to the Store Vacation plugin settings, uncheck the “Enable Vacation Mode” option, save the settings.
Let me know if you need any help with that!
Forum: Reviews
In reply to: [Woo Store Vacation] FrozenWhen the vacation end date has already passed, the date field turns red to indicate it’s invalid, which in turn disables editing and saving until corrected. Here’s how to resolve it:
- To prevent the store from going into vacation mode while making changes, you can uncheck the “Enable Vacation Mode” option and Save the settings.
- Click the “Today” button within the End Date field. This will reset the date to a valid value.
- Save the changes.
- You’ll now be able to freely update both the Start and End dates.
- Re-enable the vacation mode afterward.
Also, no data is hidden behind the Pro version in this scenario — this is not a nudge to upgrade.