Forum Replies Created
- AuthorPosts
J. Davis
KeymasterGood job, Keith
J. Davis
KeymasterHi Keith,
There is not option to define deposit value for each accommodation type at the moment. However we’ll keep your request in mind and its priority will depend on quantity of same queries. So anybody who need this feature feel free to comment this topic.
Best regards,
JohnJ. Davis
KeymasterHi Keith,
Please refer to this reply to find how to hide Children parameter at all.
In case you need to hide it at from search form you can add the following code:.mphb_sc_search-children, .mphb_widget_search-children{ display:none !important; }
Best regards,
JohnJ. Davis
KeymasterHi Stephanie,
You need to edit language file that is used at your WordPress. Thus if your WordPress is in English you need to edit English translation but not the template.
Please try to edit template file and naming Adults back again. Then go to edit language file and change its translation.Best regards,
JohnJ. Davis
KeymasterHi Michael,
Let us know if it works properly after update.
Best regards,
JohnJ. Davis
KeymasterHi Mike,
Thank you for reaching us out. You can output category description page where are listed categories by adding code below to functions.php file of your child theme.
add_action( 'woocommerce_archive_description', 'woocommerce_category_image', 2 ); function woocommerce_category_image() { if ( is_product_category() ){ global $wp_query; $cat = $wp_query->get_queried_object(); $thumbnail_id = get_woocommerce_term_meta( $cat->term_id, 'thumbnail_id', true ); $image = wp_get_attachment_url( $thumbnail_id ); if ( $image ) { echo '<img src="' . $image . '" alt="' . $cat->name . '" />'; } } }
Best regards,
JohnJ. Davis
KeymasterHi Stephanie,
It is not good idea to create few accommodation types for the same bedroom as it would be difficult to control availability. In this case it would be better to hide parameter ‘Children’ and edit translation of ‘Adults’ to something general like ‘Guests’ or ‘Persons’. At the moment you can do that by placing code below to style.css file of Child Theme (or Appearance>Customize Additional CSS)
.mphb_sc_search-children, .mphb_widget_search-children, .mphb-room-type-children-capacity, .mphb-check-children-date-wrapper{ display:none !important; }
Later will add an option to hide children in easier way.
In order to edit Translation of ‘Adults’ parameter you can try using Loco Translate, Poedit plugins.Best regards,
JohnJ. Davis
KeymasterHi Mike,
Try to place the code below to style.css file of your Child Theme (or Appearance>Customize Additional CSS):
@media only screen and (max-width: 1040px) { /* switching the sidebar to the top */ .woocommerce-page .container .main-container{display: table !important;} .woocommerce-page .col-md-8.col-lg-8 {display:table-footer-group !important; float: none !important;} .woocommerce-page .col-md-4.col-lg-4 {display:table-header-group !important; float: none !important;} }
Best regards,
JohnJ. Davis
KeymasterHi Keith,
Could you clarify your request more detailed providing examples? Could you describe your situation so we could understand it better? Thank you.
Best regards,
JohnJ. Davis
KeymasterHi Gareth,
Portfolio thumbnails should be scaled to the same size no mater what is image orientation. The size of thumb is 265x260px. I’ve also checked your site and found that portfolio images looks properly.
Please clarify if it is solved or provide examples or screenshots if the issue still persists.Best regards,
JohnJ. Davis
KeymasterHi Michael,
Make sure you use latest version of theme as we could not replicate the issue locally. And what happens to social icons at footer?
You can also submit a request providing providing screenshots and examples.Best regards,
JohnJ. Davis
KeymasterHi Teodor,
Thank you for your question. Yes, there is used WPML and its modules like Translation management, String Translation, etc in Villagio demo. We recommend to use WPML to create site with Hotel Booking plugin as it has been tested.
Best regards,
JohnJ. Davis
KeymasterHi Roy,
Thank you for your feedback. It is under development right now. We’ll notify you when this it is done.
Best regards,
JohnJ. Davis
KeymasterHi Gareth,
HTML tags can be used at Description box of Big Title Section so you can move title text to description box and style it there.
Best regards,
JohnJ. Davis
KeymasterHi Burt,
Thank you for your question. You can achieve this by using post queries. You can add it when you switch to Query Type > Custom query in Posts Grid.
You should add them in format shown under the form like:
post_status=private&tag=news&cat=1
and if you want to exclude Private posts usepost_status=publish&tag=news+sport&cat=1
Best regards,
John- AuthorPosts