While we are working on a super powerful appearance editor for LatePoint, you still can change colors to match your site using this css, just replace the colors with the values you want:
In cases where your event or service starts somewhen in the future, you might want to show the calendar started on that date instead of making your customers to scroll all the way to your available period. You can simply add calendar_start_date attribute to your booking form or button shortcode and it will open the […]
If you are using LocoTranslate Plugin, make sure you use “system” for the location of your translations: You need to store language files in this folder: /wp-content/languages/plugins/ and name them like this: latepoint-es_ES.mo so it does not get overwritten with plugin updates, replace es_ES with the string for your language. Here is a list of all language codes:
If you have WooCommerce installed – it automatically sends any WP user to the WooCommerce page. You can prevent that for LatePoint agent users by adding this code to your theme’s functions.php file: add_filter( ‘woocommerce_prevent_admin_access’, ‘latepoint_agent_admin_access’, 20, 1 ); function latepoint_agent_admin_access( $prevent_access ) { if( current_user_can(‘edit_bookings’) || current_user_can(‘manage_latepoint’) ) $prevent_access = false; return $prevent_access; }
You need to set a Twilio account (https://www.twilio.com/) and then enter Twilio account API credentials inside the latepoint settings for sms notifications, and it will be working right away. You can find your Account SID and Auth Token on your Twilio project settings page: Phone Number or your Company Name for a “from” field Twilio […]