dimned
Forum Replies Created
-
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Portuguese (Brazil) translationHi @alantygel,
You can see the list of editors who can review your translation suggestions and approve the changes on this page https://translate.wordpress.org/locale/pt-br/default/wp-plugins/getwid/ (bottom right-hand corner) There is also a link to become an editor to be able to approve the translations. You may learn how it works here https://make.wordpress.org/polyglots/handbook/translating/glotpress-translate-wordpress-org/
If you wish to apply the translations on your site urgently you may use Loco Translate or Poedit plugin.Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Feature Request: Section tag for Section BlockHi @fishmi,
Thanks for your feedback. You may also add custom classes and IDs to the nested sections to be able to style themeasier.Forum: Themes and Templates
In reply to: [Palmeria] Replace Theme fontHi @vnforgiven,
There is no option to edit Typography in a theme by default. However, you may try using the third-party plugin to be able to modify typography e.g. https://wordpress.org/plugins/olympus-google-fonts/
Let me know if it is helpful.Forum: Plugins
In reply to: [MotoPress Hotel Booking] terms and conditionsHi @kassandra74, Thank you for your reply. Yes, there is no point to show a checkbox if the page of terms and conditions is empty. It would be helpful if you review https://wordpress.org/support/plugin/motopress-hotel-booking-lite/reviews/
Forum: Plugins
In reply to: [MotoPress Hotel Booking] Dynamic ShortcodeHi @wmewme,
Thanks for your question. Some shortcodes of the Hotel Booking plugin may fetch the ID of the current post automatically e.g. [mphb_availability] and [mphb_availability_calendar]
You may add other elements of the property as custom shortcodes too, for example:1. Price [mphb_property_price]
code
function mphb_property_price_shortcode() { if ( is_singular( 'mphb_room_type' ) ) { if ( mphb_tmpl_has_room_type_default_price() ) : do_action( 'mphb_render_single_room_type_before_price' ); mphb_tmpl_the_room_type_default_price(); do_action( 'mphb_render_single_room_type_after_price' ); endif; } } add_shortcode('mphb_property_price', 'mphb_property_price_shortcode');2. Gallery [mphb_property_gallery]
code
function mphb_property_gallery_shortcode() { if ( is_singular( 'mphb_room_type' ) ) { if ( mphb_tmpl_has_room_type_gallery() ) : do_action( 'mphb_render_loop_room_type_before_gallery' ); mphb_tmpl_the_room_type_flexslider_gallery(); do_action( 'mphb_render_loop_room_type_after_gallery' ); endif; } } add_shortcode('mphb_property_gallery', 'mphb_property_gallery_shortcode');3. Details [mphb_property_details]:
code
function mphb_property_details_shortcode() { if ( is_singular( 'mphb_room_type' ) ) { do_action( 'mphb_render_single_room_type_before_attributes' ); do_action( 'mphb_render_single_room_type_attributes' ); do_action( 'mphb_render_single_room_type_after_attributes' ); } } add_shortcode('mphb_property_details', 'mphb_property_details_shortcode');The script should be added to the functions.php file of the theme. Thus you may use shortcodes in template builder without indicating IDs and soo ID will be fetched automatically on each property page where this template is applied.
We also have this feature on our to-do list so we hope to prepare more shortcodes to be able to build the property templates in a more easy way.Hi @wmewme,
Thanks for your reply. It looks like contributors translated both Amenities and Services as Servicios so you have 2 Servicios sections under Alojamiento. The top Servicios is Amenities.
You may adjust this translation here https://translate.wordpress.org/projects/wp-plugins/motopress-hotel-booking-lite/Forum: Themes and Templates
In reply to: [Oceanica Lite] Logo sizeHi @ricsca2,
Thank you for your feedback. It would be extremely helpful if you rate the theme here https://wordpress.org/support/theme/oceanica-lite/reviews/Hi @vbbp,
You may try to remove the following filter
remove_filter('wp_calculate_image_srcset_meta','palmeria_calculate_image_srcset_meta');
Then scrset will be output as usual.Hi @ianbrodie,
The issue has been fixed in the latest update release. Please update the plugin and check if the classes are being saved on your side.Forum: Themes and Templates
In reply to: [Palmeria] Demo Importing ErrorHi @simonercc,
The accommodation type is available when there is at least 1 accommodation (unit) assigned and you have added a rate with a season for the dates when you want to make the property available. For example, if you have a Season from Jan 1, 2021 to Dec 31, 2021 and you use the season at the Rate of the accommodation type then this accommodation type will be available during the dates of the season that you have used in the rate.
This article can be helpful https://support.motopress.com/hc/en-us/articles/360000918703-Why-my-accommodations-cannot-be-booked-Hi @nivosh,
We have replicated the issue since it is not possible to disable the filter of the events. We’ll do our best to fix it in one of the next update releases.
Manwhile you may use the style to hide it:.mptt-menu.mptt-navigation-select{ display:none; }Forum: Plugins
In reply to: [Timetable and Event Schedule by MotoPress] How hide a event_description?Hi @s_i_l_l_e,
Thanks for your question however I’m not sure I get it correctly. Could you please clarify it in more detail? Screenshots and examples are appreciated.Hi @sylvainpaley,
Unfortunately, I could not replicate the issue locally with other tabs blocks and widgets. Also, the example you have shared can not be viewed anymore. Thanks for sorting this out on your own.Forum: Plugins
In reply to: [Timetable and Event Schedule by MotoPress] Mobile list not showingHi @sylvainpaley,
Unfortunately, I could not replicate the issue locally with other tabs blocks and widgets. Also, the example you have shared can not be viewed anymoreForum: Themes and Templates
In reply to: [Palmeria] Demo Importing ErrorHi @simonercc,
You may edit the Home page and select a Featured Image for this page in order to display it in the header.
If you wish to import the images from the demo you may try to follow the steps described in this post https://motopress.com/forums/topic/problem-with-demo-installation/#post-907391