Andre Flores

Forum Replies Created

Viewing 15 posts - 871 through 885 (of 1,932 total)
  • Author
    Posts
  • in reply to: AMP-compatible theme ?? #1092312

    Hello Maurice,

    The Booklium theme should be compatible with AMP plugin, feel free to install it.

    Regards,
    Andre

    in reply to: Unable to translate using loco translate #1092311

    Hello Gevorg,

    At the moment these variables can be translated only directly in public.js, public.min.js, flatpickr.js and flatpickr.min.js files for dates/months:

    weekdays: {
            shorthand: [
                __('Sun'),
                __('Mon'),
                __('Tue'),
                __('Wed'),
                __('Thu'),
                __('Fri'),
                __('Sat')
            ],
            longhand: [
                __('Sunday'),
                __('Monday'),
                __('Tuesday'),
                __('Wednesday'),
                __('Thursday'),
                __('Friday'),
                __('Saturday')
            ]
        },
        months: {
            shorthand: [
                __('Jan'),
                __('Feb'),
                __('Mar'),
                __('Apr'),
                __('May'),
                __('Jun'),
                __('Jul'),
                __('Aug'),
                __('Sep'),
                __('Oct'),
                __('Nov'),
                __('Dec')
            ],
            longhand: [
                __('January'),
                __('February'),
                __('March'),
                __('April'),
                __('May'),
                __('June'),
                __('July'),
                __('August'),
                __('September'),
                __('October'),
                __('November'),
                __('December')
            ]
        },
        amPM: ['AM', 'PM'],

    And public.js and public.min.js files for Service, Date, Time, Price text:

    output += '<div class="mpa-booking-order-item">';
            output += '<ul class="mpa-reservation-details">';
                output += '<li class="mpa-reservation-service">';
                    output += '<span class="mpa-label">' + __('Service:', 'motopress-appointment') + '</span>';
                    output += ' ';
                    output += '<span class="mpa-value">' + serviceName + '</span>';
                output += '</li>';
    
                output += '<li class="mpa-reservation-date">';
                    output += '<span class="mpa-label">' + __('Date:', 'motopress-appointment') + '</span>';
                    output += ' ';
                    output += '<span class="mpa-value">' + Object(dev_functions_date__WEBPACK_IMPORTED_MODULE_0__["mpa_format_date"])(cartItem.date) + '</span>';
                output += '</li>';
    
                output += '<li class="mpa-reservation-time">';
                    output += '<span class="mpa-label">' + __('Time:', 'motopress-appointment') + '</span>';
                    output += ' ';
                    output += '<span class="mpa-value">' + cartItem.time.toString() + '</span>';
                output += '</li>';
    
                output += '<li class="mpa-reservation-price">';
                    output += '<span class="mpa-label">' + __('Price:', 'motopress-appointment') + '</span>';
                    output += ' ';
                    output += '<span class="mpa-value">' + servicePrice + '</span>';
                output += '</li>';
            output += '</ul>';
        output += '</div>';

    We are still working on improving translations in order to allow users to perform translations in language files.

    Regards,
    Andre

    in reply to: Info for the search result page #1092307

    Hello Fenton,

    The code is located in the room-content.php and results-info.php files under /wp-content/plugins/motopress-hotel-booking/templates/shortcodes/search-results/ directory, you may copy both files to the /wp-content/themes/your-theme/hotel-booking/shortcodes/search-results/ directory and perform necessary changes to the code in them.

    Regards,
    Andre

    Hello Alejandro,

    I have checked your website and both the logo and the main menu are visible: https://prnt.sc/10pp803. Let me know if the issue no longer persists.

    Regards,
    Andre

    in reply to: Calendar Availability #1092305

    Hello Carl,

    As I have mentioned in my previous replies, the Maximum Advance Reservation option should not be used to allow bookings in future, if all the rates/seasons are configured properly, your guests should be able to book any number of days in future.
    Kindly provide me with an Administrator role user to your WordPress dashboard in a private reply, so I take a closer look at the issue.

    Regards,
    Andre

    in reply to: How change stars color #1092301

    Hello Coralie,

    You are most welcome.
    It would be very much appreciated if you leave your positive feedback about the Hotel Booking Reviews plugin at: https://motopress.com/products/hotel-booking-reviews/#edd-reviews-respond.

    Thank you in advance!

    Regards,
    Andre

    Hello Lucia,

    You may add ids=”” parameter to the shortcode and list 6 random accommodation type ID’s there to have them displayed, e.g.:

    [mphb_rooms ids="12,25,34,47,53,68"]

    Where “12,25,34,47,53,68” are your accommodation type ID’s.

    Regards,
    Andre

    in reply to: Use case for single accommodation #1092297

    Hello Andy,

    You should choose the “Show price for selected period” option for selection next to the Direct Booking Form section under Accommodation ->Settings tab – this will allow to have the price displayed along with the “the accommodation is available” message.

    Regards,
    Andre

    in reply to: Hotel Booking Plugin update #1092296

    Hello there,

    You are most welcome. If you have not had a chance yet, it would be very much appreciated if you leave your positive feedback about the Booklium theme at: https://motopress.com/products/booklium/#edd-reviews-respond.

    Thank you in advance!

    Regards,
    Andre

    in reply to: Is there a way to bulk import rates? #1091716

    Hello Martin,

    Thank you for your up-vote, it has been counted.
    The Rates appear to be a custom post type, so they are stored in the the wp_options table.
    Basically, the plugin was not built to have an ability to export/import rates.

    Regards,
    Andre

    in reply to: Remove Price and minimum nights #1091073

    Hello Diana,

    Simply add the following code under Appearance ->Customize ->Additional CSS:

    .single-room-form-wrapper .mphb-regular-price {
    	display: none;
    }

    Regards,
    Andre

    Hello Alejandro,

    It looks like a CSS z-index issue, try adding the following code under Appearance ->Customize ->Additional CSS:

    .luviana-front-page-header {
    	z-index: 999;
    }
    .front-page-widget-area {
    	z-index: 999;
    }

    Regards,
    Andre

    in reply to: Use case for single accommodation #1091065

    Hello Andy,

    You should use the [mphb_availability id=”777″] shortcode instead, where “777” is the accommodation type ID. You might also want to check out this article with some advises on setting up a single property rental.

    Regards,
    Andre

    in reply to: How change stars color #1091062

    Hello there,

    You may add the following code under Appearance ->Customize ->Additional CSS:

    .mphbr-stars .dashicons.dashicons-star-filled {
    	color: #XXXXXX;
    }
    .mphbr-stars .dashicons.dashicons-star-filled.active {
    	color: #XXXXXX;
    }

    Replace #XXXXXX with any desired color code.

    Regards,
    Andre

    in reply to: how to change the font colors on the check-out page #1091058

    Hello Patrick,

    Email colors can be edited under Accommodation ->Settings ->Email Settings tab – scroll down to the very bottom to find Styles section.

    Regards,
    Andre

Viewing 15 posts - 871 through 885 (of 1,932 total)