moiseh
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Subscriptions Extras] Fatal ErrorThanks for providing the wp-admin.
I reproduced and fixed the issue.Forum: Plugins
In reply to: [WooCommerce Subscriptions Extras] Subscription Start Date Has No EffectHello,
I’ve added a new config when edit subscription product: Subscription next payment (below “Subscription start date”).
The “Subscription start date” it seems to working here, it was asked by some customers in the past so i will not change this at moment, you can leave it blank to not change.
Thanks
Forum: Plugins
In reply to: [WooCommerce Subscriptions Extras] Fatal ErrorPlease send me a staging admin access to moiseh [at] gmail [dot] com if possible, it’s easy to reproduce the issue, thanks.
Forum: Plugins
In reply to: [WooCommerce Bookings Calendar] Show next 7 days – list viewGreat thanks ??
I’m not sure but you may have issues when week resets, like Sunday or Monday depending where you live. For example when Saturday comes and it’s the last day of week (7), you will get 8 instead 0 (that is first day of week).
Maybe it’s a good idea to use instead:
$options['firstDay'] = date('w', strtotime('+1 day'));
Just released an update with the fix ??
ThanksForum: Plugins
In reply to: [WooCommerce Bookings Calendar] Week view (agenda) – HIDE empty hoursHello guys, if it helps in something, in recent updates i’ve added the possibility to pass FullCalendar variables using WordPress hooks (from PHP).
For example adding the following code in your child-theme functions.php file will produce the same results as posted above:
add_filter('wbc_fullcalendar_options', function($options){ $options['minTime'] = '10:00:00'; $options['maxTime'] = '22:00:00'; return $options; });
This may be better because the changes will not be lost when updating the plugin in future ??
Forum: Plugins
In reply to: [WooCommerce Bookings Calendar] Show next 7 days – list viewHi,
You can add the following code into your theme functions.php:add_filter('wbc_fullcalendar_options', function($options){ $options['firstDay'] = date('w'); return $options; }, 10, 1);
This will define the firstDay parameter to FullCalendar. I’ve found this trick in: https://stackoverflow.com/questions/29857212/fullcalendar-js-custom-start-date-in-weekview
If this fix and don’t cause other issues i may define as default on plugin for next updates.
Forum: Plugins
In reply to: [WooCommerce Subscriptions Extras] Fatal ErrorHello,
I can’t reproduce the issue in my PC install.
Although released an update that may fix the issue based in my presumption in what caused the issue.
If still persists please send me a staging admin access to moiseh [at] gmail [dot] com if possible, it’s easy to reproduce the issue, thanks.
Forum: Plugins
In reply to: [WooCommerce Bookings Calendar] different Category DisplaysHi,
I’ve added this excatly posted code at end of my theme functions.php and didn’t receive syntax error. Can you please provide PHP version and paste the error?Forum: Plugins
In reply to: [WooCommerce Bookings Calendar] Week view (agenda) – HIDE empty hoursHello,
Sorry, apparently the FullCalendar library don’t have this configuration to hide slots based on empty events.Thanks for look and report the issue.
I’ve reproduced and looked into theme code, it seems that is a desired behavior of Storefront (to hide the footer bar on mobile). So i will consider that is not ideal to change it in my plugin to not cause unexpected behavior for some users.
Forum: Plugins
In reply to: [WooCommerce Bookings Calendar] Show customernameI’ve sent the custom code to your e-mail ??
Forum: Plugins
In reply to: [WooCommerce Bookings Calendar] Show customernameHello Sir,
I’m assuming that the feature to show the already booked exists when you configure “When item not bookable” = “Display as read-only in calendar”.
To show customer name, would be necessary some code tweaks. The premium version already have tooltip system when mouseover on calendar events, so i may add this extra feature to display customer name if you interested.
Thanks for reporting the issues
Just released the update with the fix ??