leemon
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Time Slots Booking Form] .nonavailableslots CSS class is not appliedIt’s weird because I tried this in the demo on your site, and the CSS class is applied correctly when one books all slots in a date and they are approved by the admin.
Forum: Plugins
In reply to: [WP Time Slots Booking Form] .nonavailableslots CSS class is not appliedIt seems that this line in the
37_fbuilder.fslots.jsfile is not run in the case all slots in a date are booked:c.push("nonworking ui-datepicker-unselectable ui-state-disabled tmpinvalidDate nonavailableslots");Forum: Plugins
In reply to: [WP Time Slots Booking Form] Some non-internationalized stringsThere’s a typo in the
cp-admin-int.inc.phpfile:_e('From the email address indicated by the custome','wp-time-slots-booking-form'); ?>r</option>Note that the “r” of “customer” is outside the
_e()function.Forum: Plugins
In reply to: [WP Time Slots Booking Form] Some non-internationalized stringsForum: Plugins
In reply to: [WP Time Slots Booking Form] Some non-internationalized stringsThanks!
Are the “Pending”, “Rejected” and “Cancelled” booking state strings dynamic? They are still untranslated after the update.
Forum: Plugins
In reply to: [Booking Calendar] Multiple bookings in the same day in different time slots?Thanks!
Forum: Plugins
In reply to: [Polylang] Function _load_textdomain_just_in_time was called incorrectlyRelated info about this issue:
https://make.ww.wp.xz.cn/core/2024/10/21/i18n-improvements-6-7/ (“Warnings if translations are loaded too early” section)Related important info about this issue for the plugin developer:
https://make.ww.wp.xz.cn/core/2024/10/21/i18n-improvements-6-7/ (“Warnings if translations are loaded too early” section)Forum: Plugins
In reply to: [Booking Calendar] Redsys payment gatewayIn case you are interested, here you can find documentation (in Spanish) to develop for the Redsys platform in redirect mode (the easiest way):
https://pagosonline.redsys.es/conexion-redireccion.html (in Spanish)
Forum: Reviews
In reply to: [Polylang] No Language Switcher in Free Version@rics, not in block themes
Forum: Plugins
In reply to: [WooCommerce] How to access Flexslider instance?Apparently, since WC 8.3, all frontend scripts (including the FlexSlider one) are loaded using the “defer” loading strategy. Since my script wasn’t enqueued using this strategy, it was executed before the FlexSlider script, so the instance didn’t exist yet.
Therefore, I solved this issue using this code:wp_enqueue_script( 'child-script', get_stylesheet_directory_uri() . '/assets/js/my-script.js', array( 'jquery', 'flexslider' ), filemtime( get_stylesheet_directory() . '/assets/js/my-script.js' ), array( 'in_footer' => false, 'strategy' => 'defer', ) );Forum: Plugins
In reply to: [WooCommerce] How to access Flexslider instance?Sorry, I thought my solution worked, but it only does intermittently. So, I deleted it.
- This reply was modified 2 years, 4 months ago by leemon.
Forum: Plugins
In reply to: [WooCommerce] How to access Flexslider instance?I need to attach three click events to control the slider. Two of them on custom prev/next links and the last one on the slider itself so the user is able to slide to the prev/next slide when clicking it.
Here is the slider having the issue: https://toniamengual.com/product/devotos-book/
Forum: Plugins
In reply to: [WooCommerce] How to access Flexslider instance?Here it is: https://toniamengual.com/product/devotos-book/
You can trigger the error in the console when clicking the PREVIOUS and NEXT links.
Thanks
Forum: Plugins
In reply to: [WordPress Beta Tester] Updating to 6.4-RC1I did what you told me (Bleeding edge and just RC) and updated to 6.4-RC1. No issues here, apparently. But as soon as I disable the plugin, the update button is set to update to 6.5 nightly. Now I have to leave the plugin enabled to be able to stay in the 6.4 channel, which didn’t happen before. 😒