voriand
Forum Replies Created
-
Okay, now I see, that the last reservation is actually in the generated html code itself, it just isn’t visible in the table as you can see here on my screenshot: https://ibb.co/wWVQgGQ
Last visible reservation is the 17:30 -> 17:45 but the 17:45->18:00 is not in the table, only in the html code.
This is some kind of css bug?
The booking rule is working okay, that is not my problem. My problem is the daily view of the ADMIN calendar, where I should be able to view ALL bookings, but the last booking is never visible. On the monthly view it’s there, but if I open the daily view, the time slots are only until 17:30, but the last booking is at 17:45. The booking is also working, customer booked at 17:45, but in the daily view of the admin calender, this timeslot is not there. That is why I’m asking, to please send me where can I change this in the code.
Again, any update? Please, I just need the location (which file, which method) for this calendar row calculation, so I can modify it to also show the last reserved time frame.
Any update? The test result are suggesting, that it’s a Salon booking system calculation issue. If you send me, where these rows are calculated (how many to show) I can fix myself. Thanks.
I just tested it. If I change the booking rule to 14:00 – 18:00, the 17:45 timeslot is visible (last should be 18:00), but if I change the booking rule back to 14:00 – 17:45, de 17:45 timeslot is not visible again. So, the last timeslot is never visible. “Session avarage duration” is 15 minutes.
Forum: Plugins
In reply to: [Salon Booking System] Calendar not loading in hungarian and SafariGood question… I think you must set the browser language (locale), but any language should work, which is missing in js/calendar_language
Forum: Plugins
In reply to: [Salon Booking System] Calendar not loading in hungarian and SafariOkay, I figured out, there was no hu-HU.js, but if so, why doesn’t just take the plugin the default language .js?
Forum: Plugins
In reply to: [Salon Booking System] Only guest booking?Ah, thank you! ??
Forum: Plugins
In reply to: [WooCommerce] List other products on product page?Anybody?
Forum: Plugins
In reply to: [WooCommerce] Why is the shipping cost not listed on checkout page?Dear Fernando,
sadly, it’s not resolved. I removed all plugins, but the shippings costs is still no visible on the checkout page.
How and where do I need to configure Woocommerce to show the shipping costs on the CART and also on the CHECKOUT page? On all two pages it should be calculated and added to the TOTAL as well.
Thank you.
Forum: Plugins
In reply to: [qTranslate] Post/page titles are messed up when editingEDIT: I have WordPress 3.7.1 installed and these plugin are installed right now:
– Email Login 4.6.3 plugin page
– qTranslate 2.5.38
– Simplr User Registration Form Plus 2.2.5 plugin page
– WordPress Importer 0.6.1 plugin page
– WP-PostRatings 1.77 plugin page
– WP Login Box 2.0.2 plugin pageIf I click quick edit the titles are not messed up, it shows only one line with the translated shortcodes and after post save the titles stay without any errors. Only the full post/page edit view has this bug. I think some JavaScript conflict must be in the background, but I don’t know where to search…
obviously in the snippet and in the error message are the real ids
I just replaced my id to “the_textarea_id”, so i don’t have to use the real name…
Okay, i try qith this:
<script type="text/javascript"> $("the_textarea_id").addClass("mceEditor"); if ( typeof( tinyMCE ) == "object" && typeof( tinyMCE.execCommand ) == "function" ) { tinyMCE.execCommand("mceAddControl", false, "the_textarea_id"); } </script>
direct under the textarea code, but nothing happening and the debugger says:
“$ is not a function
$(“the_textarea_id”).addClass(“mceEditor”);”PS.: I’m not that good with JS ??
Okay, my bad… The code snippet is from a random blog i found searching the answer. I’m using CKEditor for sure, so the question is the same:
How can i use it on custom textfields? ??Thx