Forum Replies Created

Viewing 15 posts - 1 through 15 (of 8,657 total)
  • Author
    Posts
  • in reply to: Prices, Dates and Related Trips #142262
    wensolutions
    Keymaster

    Hello,

    Please find answers regarding your queries pointwise below:

    Query1: Wp Travel Checkout page – how can I remove the Your Order section?

    Response: To remove the section you have marked in screenshot you have provided, please add following given CSS code in additional CSS section by going to Admin Panel > Appearance > Customize > Additional CSS

    .wp-travel-cart-sidebar .cart-summary .cart-header{
     display: none;
    }

    Query2: Wp Travel Checkout page, in the Traveller Info Fields section how can I remove the birthdate, gender and country fields and to remove default fields at all? If I can’t remove it for example how can I make the default country to be Bulgaria (now it is Afganistan).

    Response: Regarding removing gender field, please refer below given link:

    https://wptravel.io/remove-gender-field-in-checkout-page/

    Also, to remove birthdate and country fields, please add following given code in functions.php file of your child theme as instructed in above given link(link to remove gender field).

    function wp_travel_remove_country( $checkout_fields ){
            unset( $checkout_fields['traveller_fields']['country'] );
            return $checkout_fields;
        }
    add_filter('wp_travel_checkout_fields', 'wp_travel_remove_country' );
    function wp_travel_remove_dob( $checkout_fields ){
    
    	unset( $checkout_fields['traveller_fields']['dob'] );
    	return $checkout_fields;
    }
    
    add_filter('wp_travel_checkout_fields', 'wp_travel_remove_dob' );

    Query3: How can I change the colour of the Booking button in the Booking page when I book a trip? It is grey now.

    Response: Actually, the color of ‘Book Now’ button vary according to theme’s setting so please once post your query in below given link:

    https://themepalace.com/forum/free-themes/travel-ultimate/

    Query4: On the home page how can I change the background to be in one colour for example. Now one part of the background is white and the other is with some kind of pattern?

    Response: Regarding background color, please post your query to below given link:

    https://themepalace.com/forum/free-themes/travel-ultimate/

    Further, regarding query related to theme update. please post your query to below given link:

    https://themepalace.com/forum/free-themes/travel-ultimate/

    Thank you.

    in reply to: Change onmouseover color on menu #140132
    wensolutions
    Keymaster

    Hello,

    Glad that we could help you.

    If you have any queries further, please let us know.

    Thank you.

    in reply to: Installation error #139972
    wensolutions
    Keymaster

    Hello.

    Actually, WP Travel Pro is a plugin not a template so please upload(install) it by going to Admin Panel > Plugins

    If you have any queries further, let us know.

    Thank you.

    in reply to: Change Header text color #139948
    wensolutions
    Keymaster

    Hello,

    To change the header text color in blog page, please add following given CSS code in Additional CSS section by going to Admin Panel > Appearance > Customize > Additional CSS

    .blog .custom-header .section-title{
        color: #ffff;
    } 

    Also, the feature regarding adding text for the search icon displaying in header section is not available.

    If you have any queries further, let us know.

    Thank you.

    in reply to: no upload wordpress #139946
    wensolutions
    Keymaster

    Hello,

    Actually, we are not quite clear with the query so can you please explain in detail?

    Regards.

    in reply to: Title font size smaller than H2 #139850
    wensolutions
    Keymaster

    Hello,

    Regarding your query, can you please provide us with your site URL so that we can help you with precise fix.

    Regards.

    in reply to: Change onmouseover color on menu #139849
    wensolutions
    Keymaster

    Hello,

    Regarding your query, you can add below given CSS following the path Admin Panel > Appearance > Customize > Additional CSS to change the color of the hover text in the menu.

    .home #site-navigation a:hover {
        color: blue;
    }

    You can add below given CSS following the path Admin Panel > Appearance > Customize > Additional CSS to change the color of the icon.

    .home #featured-services .icon-container i {
        color: red;
    }

    You can adjust color code as per your requirement.

    Hope this helps.

    If you have further queries, let us know.

    Regards.

    in reply to: demo data #139846
    wensolutions
    Keymaster

    Hello,

    Regarding your query, actually the demo data is available in the theme itself.

    You can select the demo content available in the dropdown of the sections. Go to Admin Panel > Appearance > Customize > Sections and add demo as the option.

    You can refer to below given documentation link for detailed assistance.

    https://themepalace.com/instructions/themes/create-magazine-pro/

    Hope this helps.

    If you have further queries, let us know.

    Regards.

    in reply to: Audit from SemRush is telling me all my pages don’t exist #139842
    wensolutions
    Keymaster

    Hello,

    Glad we could help you.

    If you have any queries further, let us know.

    Regards.

    in reply to: Problem with posts #139841
    wensolutions
    Keymaster

    Hello,

    Glad we could help.

    Regards.

    in reply to: Multiple Audios #139784
    wensolutions
    Keymaster

    Hello,

    You can add the audio in the sidebars following the steps below from the screen record by going to Admin Panel > Appearance > Customize > Widgets

    https://www.awesomescreenshot.com/video/1906942

    Hope this clears.

    Regards.

    in reply to: Problem with posts #139783
    wensolutions
    Keymaster

    Hello,

    Regarding your query, you can add images directly into the post content form ” Add Media ” and text as per your requirement. Go to Admin Panel > Posts > Add new

    https://prnt.sc/vtcllv

    Further, the feature to remove the excerpt length is not available in the theme as the text can be long and short which will destroy the design so to add this feature you can consider hiring a freelancer as it requires code customization.

    Hope this helps.

    If you have further queries, let us know.

    Regards.

    in reply to: Change onmouseover color on menu #139782
    wensolutions
    Keymaster

    Hello,

    Regarding your query, you can send screenshot using Light shot app to capture screenshot.

    You can send screenshot using the demo of busyness so that we can clear to help you change color with CSS if possible.

    Regards.

    in reply to: Change Header text color #139699
    wensolutions
    Keymaster

    Hello,

    Please find answers to your queries below:

    1. Regarding your query, please add below given CSS following the path Admin Panel > Appearance > Customize > Additional CSS to change the color of page title.

    .page .custom-header .section-title{
        color: #ffff;
    }

    You can adjust the color code as per the requirement.

    2. Regarding your query related to search, you can add the title from Admin Panel > Appearance > Customize > Widgets > Sidebar and add title as per the screenshot https://prnt.sc/vsl99i , if you are talking about sidebar search.

    If you have mentioned about the search managed by the theme then you can go to Admin Panel > Appearance > Customize > Theme Options > Search Options and change the Search Text as per your requirement.

    3. Regarding your query, please add below given CSS following the path Admin Panel > Appearance > Customize > Additional CSS to remove the content of page “home”.

    .home .content-area{
    display:none;
    }

    To change the title “featured” go to Admin Panel > Appearance > Customize > Theme Options > Featured Content > Choose Homepage from the dropdown and edit/add the section title and description.

    Hope this helps.

    If you have any queries further, let us know.

    Regards.

    in reply to: CSS for changing hover colors in pages #139697
    wensolutions
    Keymaster

    Hello,

    Glad it worked.

    Regards.

Viewing 15 posts - 1 through 15 (of 8,657 total)