• I want to order the home page sections and also want to add new sections on home page but I’m not able to do that so kindly let me know how to override that template and also the header. My client want to add cart ad search icon in mobile view along with the logo. So please advice.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author britetechs

    (@britetechs)

    Hello @jdesai,

    Thanks for contacting us.

    We have checked your website and found that you have added background color for mobile version header. Also already added cart icon and search icon in mobile version of the site.

    In this case, only issue is color not showing for cart icon for mobile header. Please add below css code to set color for cart icon in mobile header.

    @media screen and (max-width: 991px){
    .mobile-menus.is_transparent .xoo-wsc-sc-bki {
    color: var(–bs-black);
    }
    }

    Your admin dashboard -> Appearance -> Customize -> Additional CSS -> Paste this code in this setting box. Save this settings.

    Then check your site again.

    Thanks,

    Thread Starter jdesai

    (@jdesai)

    Hello @britetechs, thanks for the quick response and suggestion!

    But that is not the issue. I fixed that icon issue and I wanted to override the homepage template where I can add more sections as well as move existing sections like service and review sections which are coming from your theme customizer.

    Currently made changes in the main theme and used JS to move section for now. I was expecting to override the template like we do for other themes and plugins like WooCommerce.

    Looking forward to your response! (:

    Thank you!

    Theme Author britetechs

    (@britetechs)

    Hello @jdesai,

    You are talking about homepage sections order. This feature is available in our pro template.

    You can manage your homepage section from customize option panel. This feature not in the lite version.

    Thanks,

    Thread Starter jdesai

    (@jdesai)

    Hello @britetechs

    Yes I came to know about that. but I want to know how can I simply override those templates using child theme, as we’re using free version, or is there any hook or custom code you’d like to refer me?

    If someone want to add new sections on home page how can we add/modify it? Also in WooCommerce template I don’t want sidebar but it is hard coded and it occupies width based on bootstrap class that’s why I also need to override that file. So can you please point me to the right direction?

    Thanks in advance!

    Theme Author britetechs

    (@britetechs)

    Hello @jdesai,

    First of all, Please update your theme. Beacuse we have updated our theme on www.remarpro.com.

    1. To add a new custom section on homepage=>

    Please copy bellow code to add a new section on the homepage. Also change the number value to order homepage section.

    Code is:

    function jewelry_store_add_custom_section(){
    }
    add_action( 'jewelry_store_sections', 'jewelry_store_add_custom_section', 5 );

    2) How you can remove sidebar from woocoomerce pages =>

    Please login to your site admin dashboard -> Appearance -> Widgets -> Find Woocommerce Sidebar and remove all widgets in this sidebar. Save the changes.

    Then check your site again.

    If you have more questions about our reply. Then please let us Know.

    Thanks,

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to override template?’ is closed to new replies.