Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #186249

    Hi there,

    This is not working as you have described in #186228

    I have in Enfold Settings.-> Set Pages to have right side bar
    In Widgets -> removed all widgets from display everywhere, and added widgets to SideBar Pages
    On Home Page -> under page settings set No Side Bar. (http://imgur.com/3JzLnP1)

    But I still have the side Bar on my home page.

    #186348

    Hi markw1!

    Can we see the actual page where the sidebar/widgets/issue is? I’m not really clear on what is happening that should not be.

    Cheers!
    Devin

    #186809

    Hi Devin,

    here is the site (TEST) http://test.markwiltshire.com

    I have
    a) In Enfold Settings, set Pages to have ‘right sidebar’
    b) In Widgets, removed all the widgets from the display everywhere, and added widgets to the SideBar Pages area
    c) On my page ‘Home’, which is set to be the front page of the site, I have set Layout to have No Sidebar

    From previous explanation from support (See #186228), this setting should have no side bar.

    I want sidebar on most Pages, just not on the Home page.

    thanks

    Mark

    #187260

    Hi!

    Please make sure that you have set your frontpage in Enfold theme options and in Settings > Reading front “page displays” to “latest posts”

    Best regards,
    Yigit

    #187777

    Hi Yigit,

    The settings were already as you suggested :
    1) Frontpage in Enfold theme options – is set to show Home Page.
    2) Settings > Reading > Front page displays – is set to – Your latest posts

    I have also now moved the site live, so you will find it at .
    http://www.markwiltshire.com
    (I have just updated DNS, may take a little while to push through)

    I still get the sidebar, despite the Page Home, having the ‘No Sidebar’ option selected.

    Regards

    Mark

    • This reply was modified 11 years ago by markw1.
    #187860

    DNS is now resolving, so you can see site at http://www.markwiltshire.com

    #188301

    Hey!

    Please create us an admin account and post the login data as private reply – we’ll check why it’s not working.

    Cheers!
    Peter

    #188312
    This reply has been marked as private.
    #189297

    Hey!

    I’m not sure which, but I *think* one of the plugins is causing the settings not to get recognized. I don’t want to disable them since I’m not sure what you have for settings but that would be my first suggestion to try.

    Best regards,
    Devin

    #190045
    This reply has been marked as private.
    #190514
    This reply has been marked as private.
    #190536
    This reply has been marked as private.
    #191179

    Hi!

    Since the cookie requirement is readily available with other plugins I would recommend finding a different one. There are far too many plugins to debug them all and at the moment we just aren’t able to debug this one.

    Best regards,
    Devin

    #191413
    This reply has been marked as private.
    #191883

    I have no idea why it could be causing a conflict like that as it really shouldn’t be altering the page output at all. Its strange that its the cause at all since all of the theme code is wrapped in its own class to prevent conflicts.

    #207590

    I have now spent a month looking through other cookie law plugins, but none of them work as well as this one.
    this is the only one which gives me the control I need.

    I have also confirmed that the issue absolutely lies in The enfold theme and Cookie Law Info plugin.

    I have deactivated all plugins (except bb forum (required by theme), and Juiz Last Tweet Widget (is widget on my home page) and when I do this, the side column in my theme is correctly displayed. i.e. on home page, it is removed. (As Home Page, has no sidebar set)

    Then when I activate ‘Cookie Law Info’ the error occurs, i.e. side bar is shown on home page.

    Can you again please look at this and tell me what is going on, as this is paid for theme I am after just a little more assistance please.
    I have tried to get developer for the Plugin to look at it, but he said he has had issues with other Kriesi themes.

    Many thanks, and wishing you a fantastic new year.

    Mark

    • This reply was modified 10 years, 10 months ago by markw1.
    #208375

    Hey!

    Try to insert following code into the functionsphp file (at the very bottom):

    
    add_filter('avf_avia_get_the_ID','avia_homepage_id_workaround', 10, 1);
    function avia_homepage_id_workaround($id)
    {
     $id = get_the_ID();
    return $id;
    }
    

    If the code doesn’t help try

    
    add_filter('avf_avia_get_the_ID','avia_homepage_id_workaround', 10, 1);
    function avia_homepage_id_workaround($id)
    {
     $id = avia_get_option('frontpage');
    return $id;
    }
    

    Cheers!
    Peter

    #209105

    Wow peter, thanks

    the first one has worked. ( i placed in the wp-content/themes/enfold/functions.php file)

    add_filter(‘avf_avia_get_the_ID’,’avia_homepage_id_workaround’, 10, 1);
    function avia_homepage_id_workaround($id)
    {
    $id = get_the_ID();
    return $id;
    }

    Do I now need to update this in each update to Enfold manually myself, or is something you can put in a permanent fix.

    Many thanks for fixing, really impressed.

    Now all working at http://www.markwiltshire.com

    Regards

    Mark

    #209372

    Hi!

    You can add the code into your child theme functions.php file which will not be affected by the parent theme update.

    Cheers!
    Peter

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Cannot remove sidebar’ is closed to new replies.