Tunn
Forum Replies Created
-
Forum: Plugins
In reply to: [Salon Booking System] Wrong week calendarHi, @vyyt! I checked right now, the calendar is OK in all calendar views, including with the Prague timezone (I am from Moldova). Maybe something is wrong with your server time?
Forum: Plugins
In reply to: [Salon Booking System] Wrong week calendarGreat! Thank you!
Forum: Plugins
In reply to: [Salon Booking System] Wrong week calendarToday I discovered a new calendar issue. I suppose days and dates are not synchronized correctly.
https://drive.google.com/open?id=1mQ2VYZ0G4Fc9D3TBZeG2hoVCPtnFc0eh
Forum: Plugins
In reply to: [Salon Booking System] Wrong week calendarI suppose you have that because of Booking time range settings as here:
https://drive.google.com/open?id=116JdkQ9qRRx3dEgjkYWwYaiewo_AU83c
I don’t understand how, but after some manipulation with the Loco Translate the plugin “Checkout” setting label reverted to the English, and my custom translation of it for the frontend remained as I wanted.
Forum: Plugins
In reply to: [Salon Booking System] Skip the service selecting stepI am looking at the “Exclusive service” checkbox. It says: “If enabled, when a customer choose this service no other services can be booked during the same reservation“. Can this mean that that service can OR must be checked by default so the selecting step is not needed and can be skiped?
Forum: Plugins
In reply to: [Easy Appointments] Exclude a specific dateI understood. Thank you very much!
Forum: Plugins
In reply to: [Easy Appointments] Terms and Conditions pageYes. Because for what is there the “I agree” checkbox? If a service has some terms, conditions, rules, etc., they must be exist somewhere and they must be linked. Or not?
Forum: Plugins
In reply to: [Salon Booking System] Terms & Conditions / GDPRAfter some rethinking of the Terms & Conditions / GDPR problem I suppose that these options must be considered sepatelly of your plugin, in the context of the whole site, where the plugin can be only a small part of it, so no reasons to integrate them to the plugin.
But, anyway, I would like to have an option to disable or to customize the hardcoded “Terms & Conditions” part of the booking form, at least an option to change the label / title. Is this possible?
Forum: Plugins
In reply to: [Salon Booking System] Terms & Conditions / GDPRThank you, I already have that function in my functions.php file and I will consider to use other GDPR options, but what can I do with the “Terms & Conditions” text from the last step of booking form, before the “Finalize” button? I don’t need that. I think it must be optional. And will be nice to have the option of editing that label/title.
Forum: Plugins
In reply to: [Salon Booking System] Splite an hour by 15 minutesThank you very much!
Excellent! Thank you!
I solved my question with two functions:
const PLUGIN_SLUG = "super-socializer/super_socializer.php"; add_filter("plugin_action_links_" . PLUGIN_SLUG, function ($actions, $plugin_file, $plugin_data, $context) { unset($actions[1]); // remove link "Add-Ons" unset($actions[2]); // remove link "Support Documentation" return $actions; }, 10, 4); add_filter( 'plugin_row_meta', 'custom_plugin_row_meta', 10, 2 ); function custom_plugin_row_meta( $links, $file ) { if( strpos( $file, 'super_socializer.php' ) !== false ) { $new_links = array( 'addons' => '<a href="' . esc_url( 'https://www.heateor.com/add-ons' ) . '" target="_blank" aria-label="' . esc_attr__( 'Add-Ons', 'domain' ) . '">' . esc_html__( 'Add-Ons', 'domain' ) . '</a>', 'support' => '<a href="' . esc_url( 'https://www.heateor.com/add-ons' ) . '" target="_blank" aria-label="' . esc_attr__( 'Support Documentation', 'domain' ) . '">' . esc_html__( 'Support Documentation', 'domain' ) . '</a>' ); $links = array_merge( $links, $new_links ); } return $links; }
https://drive.google.com/open?id=12yT5IoicCWMjG26Kur7Ou6mn96K6P7Ch
Hi,
I like your plugin, but too many links under the plugin name is too ugly. I think you can move the Add-Ons | Support Documentation links to the second column.
https://drive.google.com/open?id=1UybFml_nH0pntFlKxenCxh9PE2rFgoRJ
https://drive.google.com/open?id=13bc6qJEYlxSzfKtDNXA2zlPxrco2V3fY
https://drive.google.com/open?id=1V_5J8sAAvNrTd9NHa6EpXYFCI7CfRc8TForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Rename a form field labelGreg, thank you very much!