J. Davis

Forum Replies Created

Viewing 15 posts - 2,521 through 2,535 (of 3,452 total)
  • Author
    Posts
  • in reply to: Remove Gallery in List View #633479

    Good job, Keith

    in reply to: Set Deposit percentage by property #633478

    Hi 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,
    John

    in reply to: Remove "Children" from Search box #633337

    Hi 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,
    John

    in reply to: Occupancy numbers adults and children #633335

    Hi 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,
    John

    in reply to: Social Media Icon not visible #633334

    Hi Michael,

    Let us know if it works properly after update.

    Best regards,
    John

    in reply to: WooCommerce +Emmet Pro Add Category Descriptions #633333

    Hi 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,
    John

    in reply to: Occupancy numbers adults and children #632402

    Hi 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,
    John

    in reply to: WooCommerce+EmmetPro Move SHOP Sidebar in Mobile #632391

    Hi 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,
    John

    in reply to: Set Deposit percentage by property #632358

    Hi 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,
    John

    in reply to: Image Sizes in Portfolio #631223

    Hi 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,
    John

    in reply to: Social Media Icon not visible #630141

    Hi 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,
    John

    in reply to: Demo-like language switcher #630120

    Hi 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,
    John

    in reply to: mandatory service #630115

    Hi Roy,

    Thank you for your feedback. It is under development right now. We’ll notify you when this it is done.

    Best regards,
    John

    in reply to: HTML in Big Title Section – Title #628411

    Hi 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,
    John

    in reply to: Can I exclude Private posts from the Post Grid? #627065

    Hi 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.

    posts grid custom query

    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 use post_status=publish&tag=news+sport&cat=1

    Best regards,
    John

Viewing 15 posts - 2,521 through 2,535 (of 3,452 total)