Forum Replies Created
-
AuthorPosts
-
February 2, 2020 at 6:21 am in reply to: How to Add Extra (new) Widgets to Navigation Pro Theme’s Footer #496367
StefanoV
MemberDear Braddalton,
Thank you for your reply.
Are you able to help me and be more specific. I am not tech geek, so please explain what you mean and how to do it
Thank you
StefanoJanuary 18, 2020 at 1:19 pm in reply to: How to Add Extra (new) Widgets to Navigation Pro Theme’s Footer #496013StefanoV
MemberDear Anita,
I know that it is a brand new theme, so I know that it could be that nobody can help me at this moment.
The below site explains how to add a widget to a footer
I only used the below in the functions.php in my theme, and this shows the widgets in the widget area (so this works).
genesis_register_sidebar(
[
'id' => 'footer-sidebar-1',
'name' => __( 'Footer Sidebar 1', 'navigation-pro' ),
'description' => __( 'Footer Sidebar 1', 'navigation-pro' ),
]
);genesis_register_sidebar(
[
'id' => 'footer-sidebar-2',
'name' => __( 'Footer Sidebar 2', 'navigation-pro' ),
'description' => __( 'Footer Sidebar 2', 'navigation-pro' ),
]
);genesis_register_sidebar(
[
'id' => 'footer-sidebar-3',
'name' => __( 'Footer Sidebar 3', 'navigation-pro' ),
'description' => __( 'Footer Sidebar 3', 'navigation-pro' ),
]
);}
But it seems that I also need to add something in the footer.php to get it active on the website, but the theme does not have a footer.php. So I do not know how to get it also visible on the website.
-
AuthorPosts