• Closed
  • Paul Monette
    Spectator
    20.03.2016 at 19:02 #25756

    I am trying to find where in the Evolve+ theme I can change the setting to only have the Footer Widgets display on my main page and not every page. I want them to be just like the header widgets which can be set to only display on the main page.

    Denzel Chia
    Moderator
    Posts: 2656
    21.03.2016 at 00:49 #25764

    Hi,

    This requires modifications to the theme code.
    We do not provide assistance in modifying theme codes.
    We can only provide customization that can be done using custom css.

    You may want to hire a developer from http://jobs.wordpress.net/ to assist in your customization.

    Thank you

    Paul Monette
    Spectator
    Posts: 5
    21.03.2016 at 01:03 #25766

    Thank you for the quick response. At this point I will find another route since I do not want to modify the code. Once again thank you.

    Denzel Chia
    Moderator
    Posts: 2656
    21.03.2016 at 01:13 #25767

    Hi,

    You are welcome.

    You will require theme modification to add a setting, but we can probably use css to display your footer widgets on homepage only.

    In Theme Options -> Custom CSS

    .footer-widgets {
    display: none !important;
    }
    .home .footer-widgets {
    display: block !important;
    }

    Thank you

    Paul Monette
    Spectator
    Posts: 5
    21.03.2016 at 01:20 #25768

    Hello,

    That worked perfectly. Thank you for your help.

    Paul M.

    Denzel Chia
    Moderator
    Posts: 2656
    22.03.2016 at 00:26 #25799

    You are welcome.