How to remove page list (col-md-6 footer-gateway) on right of footer area

  • Home
  • Forums
  • Dokan
  • How to remove page list (col-md-6 footer-gateway) on right of footer area
This topic contains 3 reply and 3 voices, and was last updated by Sekander Badsha 9 years, 6 months ago
Viewing 3 Posts - 1 through 3 (of 3 total)
Author Posts
October 8, 2014 at 2:55 pm 28090
Sekander Badsha I would like to know how to remove/disable the list of pages in the right of the footer area of my dokan site. My site is at http://www.thecraftshoppe.co.za
October 9, 2014 at 9:32 pm 28128
Manuel Manuel

Hi Erica,

seems that the footer menu render the page menu if no menu is assigned to that position.
3 solutions:

1) If you don’t want nothing in that position you can hide it from css:
.footer-gateway > div { display:none; }

2) Change the file footer.php of your theme (hope you use a child theme).
find the footer menu and change it form:
[php]
wp_nav_menu( array(
‘theme_location’ => ‘footer’,
‘depth’ => 1,
‘container_class’ => ‘footer-menu-container clearfix’,
‘menu_class’ => ‘menu list-inline pull-right’,
) );

to

if ( has_nav_menu( ‘footer’ ) ) {
wp_nav_menu( array(
‘theme_location’ => ‘footer’,
‘depth’ => 1,
‘container_class’ => ‘footer-menu-container clearfix’,
‘menu_class’ => ‘menu list-inline pull-right’
) );
}
[/php]
3) Assign a menu to that position from admin

October 12, 2014 at 6:35 pm 28228
Erica Erica

Hi Manual

Thanks. I assigned a foooter menu, and it came right.

October 16, 2014 at 1:35 pm 28521
Sekander Badsha Sekander Badsha

Hello Manuel,
Thank you for helping Erica.

And Erica,
Is your issue solved now? If yes, please mark this topic as resolved.

Thank you 🙂

Viewing 3 Posts - 1 through 3 (of 3 total)