Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 8,657 total)
  • Author
    Posts
  • in reply to: Header and menu help #97670
    wensolutions
    Keymaster

    Hello @petarv,

    First of all, thank you very much for using the theme and for all the appreciations.

    To reduce the header size, add below given CSS by going to Admin Panel > Appearance > Customize > Additional CSS.

    .is-sticky .site-branding {
        padding: 0 0 12px 0;
    }

    As for the menu, it seems fine as you can see in the screenshot below:

    https://prnt.sc/nopa1a

    Hope this helps,

    Thank you.

    in reply to: Navigation buttons disappeared in the child team #97669
    wensolutions
    Keymaster

    Hello,

    The issue that you have mentioned is quite unlikely to occur. The issue may have raised due to the conflict with the third party plugin.

    So if you have installed any third party plugin, please deactivate and verify the issue.

    Hope this works for you.

    Thank you.

    Regards!!

    in reply to: Related trips #97668
    wensolutions
    Keymaster

    Hello @kamilia

    First of all, thank you so much for pointing out and reporting the issues back to us.

    We will come up with the fix to these issues very soon and release the update. We kindly request you to update the theme once the release is out.

    Also, for query about the responsive issue, send your email at : wensolutions[at]gmail.com

    Hoping for your kind co-operation,

    Best Regards!!

    in reply to: Responsive? #97624
    wensolutions
    Keymaster

    Hello @m-pozo,

    Though the google response is otherwise, the theme works perfectly fine in every device. Also, until and unless everything works fine there is no need to worry about the google result.

    Further, if found any issues then post them here so that we can help you further.

    Thank you.

    wensolutions
    Keymaster

    Hello @richkett,

    Currently, the feature is not available and as much as we would love to help you on this, we are unable to do as it requires higher code customization.

    So if you want then you can hire our professional developer.

    To hire a developer, refer to below given link:
    https://themepalace.com/hire-a-customizer

    Thank you.

    in reply to: Related trips #97618
    wensolutions
    Keymaster

    Hello @kamilia,

    Can you please provide your site URL so that we can inspect the issue further and help you?

    Thank you.

    wensolutions
    Keymaster

    Hello @richbeckett,

    Glad we could help you.

    Let us know if you have any issue further.

    Also, we would really appreciate if you could help us by rating our plugin by following the link below:

    https://wordpress.org/support/plugin/wp-travel/reviews/

    Thank you.

    Have a great day.

    in reply to: Responsive? #97608
    wensolutions
    Keymaster

    Hello @m-pozo,

    Education Hub is a completely responsive theme and works absolutely fine in all devices.

    So you can use the theme if it meets your requirement.

    Further, if you encounter any issue then kindly let us know.

    Thank you.

    in reply to: clickable icons #97607
    wensolutions
    Keymaster

    Hello @needsupport,

    The icons in the menu are already made clickable in the latest version of the theme.

    So please update to the latest version and enjoy the feature.

    Thank you.

    in reply to: responsive issue #97606
    wensolutions
    Keymaster

    Hello,

    Adding your own custom icon will require additional code customization.

    So if you want then you need to hire a professional for this.

    To hire a professional developer, please refer to below given link:

    https://themepalace.com/hire-a-customizer

    Hope this helps.

    Thank you.

    in reply to: Navigation buttons disappeared in the child team #97605
    wensolutions
    Keymaster

    Hello,

    It is because you have made changes by adding the custom code.

    You can add a little bit style to the current button by adding below given CSS.

    .slick-prev:before, .slick-next:before {
        content: "\f104";
        font-family: "FontAwesome";
        opacity: 1;
        color: #333;
    }

    Hope this helps.

    Thank you.

    wensolutions
    Keymaster

    Hello @richbeckett,

    To remove the category names you have to add the custom code in your child theme functions.php file.

    To know how you can create and activate the child theme refer to below given link:

    https://wptravel.io/how-to-create-a-child-theme/

    Now after the activation of the child theme, add below given code in your child theme functions.php file.

    function wp_travel_child_remove_cat_titles($title) {
        if ( is_archive() ) {
    
            $title = single_cat_title( '', false );
    
        } elseif ( is_tag() ) {
    
            $title = single_tag_title( '', false );
    
        } elseif ( is_author() ) {
    
            $title = '<span class="vcard">' . get_the_author() . '</span>' ;
        }
        return $title;
    }
    add_filter( 'get_the_archive_title', 'wp_travel_child_remove_cat_titles' );

    Hope this helps.

    Thank you.

    in reply to: Navigation buttons disappeared in the child team #97532
    wensolutions
    Keymaster

    Hello,

    Please add below given in the Additional CSS:

    .slick-prev {
        left: 0px;
    }
    
    .slick-next {
        right: 0px;
    }

    Hope this helps.

    Thank you.

    in reply to: Blog posts background image container #97515
    wensolutions
    Keymaster

    Hello @salanvaris,

    First of all thank you very much for using the theme.

    Regarding your query, can you please provide your site URL so that we can provide the precise fix on this?

    Hoping to hear from you soon.

    Thank you.

    in reply to: responsive issue #97514
    wensolutions
    Keymaster

    Hello,

    Please find answers to your query below:

    Here is the link screenshot for the Query 4 for your better understanding – https://ibb.co/Gs67zXP

    Response: To change the default filter will require higher code customization. So as much as we would love to help you with this, we are unable to do so. If you want then you can hire our professional developer.

    Also, how do I put a custom icon in this section & how to change the below excerpt in this – https://ibb.co/b3gjJ3R

    Response: To change the icon just go to the widget > EC: Services and then enter your desired font awesome icon in Icon: field.
    Screenshot: http://prntscr.com/nnrko3

    As for the excerpt, the content comes from the page content section. So what whatever you enter in the page content area will be displayed here.

    A. Get rid of the space below the logo – https://ibb.co/FwKp8CB

    Response: CSS to add:

    @media only screen and (max-width: 900px){
    #right-head {
        margin-top: 0px;
    }
    }

    B. Remove the filter & search thing – https://ibb.co/FwKp8CB

    Response: CSS to add:

    @media only screen and (max-width: 767px){
    #right-head .header-search-wrapper {
        display: none;
    }
    }

    C. cart logo beside the logo. – https://ibb.co/FwKp8CB

    Response: CSS to add.

    @media only screen and (max-width: 767px){
    #cart-section a {
        margin: -75px 0;
    }
    }

    D. inline social icons & login/register – https://ibb.co/FwKp8CB

    Response: It requires higher custom code.

    E. finally change the background colour of the menu after clicking on the hamburger which is black greyish right now.

    Response: CSS to add:

    .sidr {
     
        background: #4CAF50;
        
    }

    Change the color code as per your requirement.

    There’s one more glitch in the theme, on the mobile version I can’t see the featured image. I’ve put 4 images on the desktop it’s showing all four but there are only 2 on the mobile view others are showing blank. https://ibb.co/zS63GtB

    Response: The issue you may have raised due to the caching plugin that you have activated.

    So please deactivate the plugin and verify the issue.

    Hope this helps.

    Thank you.

Viewing 15 posts - 2,386 through 2,400 (of 8,657 total)