Hello,
I want to add a new menu in the right side of the homepage, The menu must be similar to the one on the left, can someone help me?
Site link bodasyestilo.co
Thanks in advance.
Malu
Arnav Joy answers:
i can help you in this , but i need to see theme files can you send me at : [email protected]
or if you can provide me access to your site then may be i can help you,
Arnav Joy comments:
Arnav Joy comments:
i have created that , please check now
Jatin Soni answers:
Register new menu in function.php
register_nav_menus( array(
'rightmenu' => __( 'Right menu', 'template name' )
) );
Than add this code to the place where you want to add the new menu
wp_nav_menu( array( 'theme_location' => 'rightmenu', 'container_class' => 'rightmenu' ) );
Than you might need to style properly,
After than go to wordpress dashboard > menu and select the same menu you use for the left side.
If your template using different code and not wordpress Menu than need to check your file.
Jatin Soni comments:
Great! so you have done and got the menu at right!
Jatin Soni comments:
If you are looking to get same menu items on right side than go to your dashboard > Appearance > Menus and select same menu which you have selected at the left side.
If you still have issue than give me wordpress admin login details so will look it for you.