-
AuthorPosts
-
November 8, 2013 at 5:58 pm #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.
November 9, 2013 at 1:32 am #186348Hi 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!
DevinNovember 11, 2013 at 12:28 pm #186809Hi 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 SidebarFrom 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
November 12, 2013 at 2:55 pm #187260Hi!
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,
YigitNovember 13, 2013 at 3:11 pm #187777Hi 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 postsI 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.
November 13, 2013 at 5:39 pm #187860DNS is now resolving, so you can see site at http://www.markwiltshire.com
November 14, 2013 at 11:27 am #188301Hey!
Please create us an admin account and post the login data as private reply – we’ll check why it’s not working.
Cheers!
PeterNovember 14, 2013 at 12:05 pm #188312This reply has been marked as private.November 15, 2013 at 5:23 pm #189297Hey!
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,
DevinNovember 18, 2013 at 1:32 pm #190045This reply has been marked as private.November 19, 2013 at 11:26 am #190514This reply has been marked as private.November 19, 2013 at 12:10 pm #190536This reply has been marked as private.November 20, 2013 at 11:28 pm #191179Hi!
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,
DevinNovember 21, 2013 at 12:44 pm #191413This reply has been marked as private.November 22, 2013 at 4:38 pm #191883I 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.
January 9, 2014 at 7:43 pm #207590I 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.
January 11, 2014 at 11:01 am #208375Hey!
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!
PeterJanuary 13, 2014 at 6:48 pm #209105Wow 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
January 14, 2014 at 10:56 am #209372Hi!
You can add the code into your child theme functions.php file which will not be affected by the parent theme update.
Cheers!
Peter -
AuthorPosts
- The topic ‘Cannot remove sidebar’ is closed to new replies.