Marin Matosevic
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Booking Calendar for WooCommerce] Calendar customizationHi,
I’m glad to hear that the plugin is working well for you.
In version 1.02, we’ve introduced an option for calendar themes, which allows you to customize the look of the calendar. If you haven’t already, please update to the latest version and give it a try. We also plan to include additional customization options in future releases.
As for making dates bookable when an order is in pending status, this feature isn’t available just yet. However, we are working on adding an option that will let you choose which order statuses should trigger bookings.
Thanks again for your feedback and support! If you have any more questions or suggestions, feel free to reach out.
Best regards
Hi,
Thank you for your suggestion!
Unfortunately, this functionality isn’t available in our plugin at the moment. However, you could achieve this with some custom coding by retrieving the relevant data from the
pph_price_history
table.We’ll take this feature request into consideration for future updates.
Best regards
Forum: Plugins
In reply to: [Free Shipping Label and Progress Bar for WooCommerce] N?o dá frete gratisWe haven’t heard back from you in a while, so I’m going to go ahead and mark this thread as resolved. If you have any other questions please feel free to start a new thread.
Could you confirm if you’re running the latest version of our plugin? Also, which version of PHP are you using?
Forum: Plugins
In reply to: [Free Shipping Label and Progress Bar for WooCommerce] Full Bar in websiteTo start your 7-day free trial, simply visit our website, go to the pricing table, and click on the ‘Start 7-day Trial’ located below the ‘Buy Now’ button.
Hi Tom,
Could you confirm if you’re using the free or PRO version of our plugin? I took a look at your site, and it seems that when a product is added to the cart, only the Local Pickup option is available, which is free. At checkout, if I switch to the shipping option and enter an address (e.g., San Diego), it shows “No shipping options available.”
One thing I noticed is that your cart and checkout pages are built using WordPress blocks. Our plugin provides both block and shortcode functionality, but this feature is available exclusively in the PRO version. The free version is compatible with standard shortcode-based cart and checkout pages.
Best regards
Forum: Plugins
In reply to: [Free Shipping Label and Progress Bar for WooCommerce] Full Bar in websiteHi,
Unfortunately, the functionality you’re asking about is not available in the free version of the plugin. However, the PRO version includes a shortcode that can be placed anywhere on your site, providing the flexibility you need.
We also offer a 7-day free trial, so feel free to test it out to see if it works for you!
Best regards
Forum: Plugins
In reply to: [Free Shipping Label and Progress Bar for WooCommerce] N?o dá frete gratisPlease check the “Visibility” setting in the plugin’s General Settings. If this option is enabled, the progress bar will only be shown to logged-in users. To display it to everyone, including users who are not logged in, you need to disable this setting (which is the default).
Hi,
Could you let us know if you’re using the free or PRO version of the plugin? Also, is the error persistent, or does it appear only occasionally?
Best regards
Forum: Plugins
In reply to: [Free Shipping Label and Progress Bar for WooCommerce] N?o dá frete gratisHi, please write in English so we can better assist you. I’ve translated your message using Google Translate, but I want to make sure I understood it correctly.
Could you share the URL of your website, so we can take a closer look?
Just to clarify, our plugin does not provide free shipping functionality itself. It only visually represents how much is left to qualify for free shipping based on your settings.
Great! I’m glad that I was able to help you. ?? If you’re enjoying the plugin, we would be incredibly grateful if you could spare a moment to leave a review. Your feedback is valuable to us. Thank you!
Here’s the modified code snippet to target multiple user roles:
add_filter('fsl_min_amount', function ($amount) {
$user = wp_get_current_user();
// List the roles you want to target in the array below.
$roles_to_hide_for = ['role_1', 'role_2', 'role_3'];
if (array_intersect($roles_to_hide_for, (array) $user->roles)) {
$amount = null;
}
return $amount;
});If you’re also using a gift progress bar and want to hide it, you’ll need to use the
fsl_progress_bar_html
hook instead. However, if you only have the free shipping progress bar, then it’s perfectly fine to use thefsl_min_amount
hook as shown above.Hi,
You can hide the bar by using a filter hook. Below is the code snippet that should work:add_filter('fsl_min_amount', function ($amount) {
$user = wp_get_current_user();
if (in_array('role_name', (array) $user->roles)) {
$amount = null;
}
return $amount;
});Just replace
role_name
with the role you want to target, such as ‘subscriber’, ‘editor’, or any custom role.Best regards
We haven’t heard back from you in a while, so I’m going to go ahead and mark this thread as resolved. If you have any other questions please feel free to start a new thread.
We haven’t heard back from you in a while, so I’m going to go ahead and mark this thread as resolved. If you have any other questions please feel free to start a new thread.