New Topic

Reply To: Customization (My Website)

Home › Forum › Customization › Customization (My Website) › Reply To: Customization (My Website)

#864

StartupWP
Keymaster

1. This is something you’ll need to post here http://wordpress.org/support/plugin/jquery-mega-menu – Where the creator(s) of the plugin should be able to help you.

2. Edit your menu under Appearance > Menus. Make sure to either delete out “Privacy Policy” from the menu or uncheck the box “Automatically Add New Top-level Pages”.

Now for creating new widget areas:

– You’ll need to first copy over functions.php from the parent theme to your child theme

– Open it up and find:

register_sidebar( array (
'name' => __('Footer Widget Area', 'startup' ),
'id' => 'footer-widget-area',
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => "</li>",
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );

– Simply duplicate below and change to say:

register_sidebar( array (
'name' => __('Footer Widget Area 2', 'startup' ),
'id' => 'footer-widget-area-2',
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => "</li>",
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );

– Now, copy over footer.php to the child theme, open it up and add wherever you want the widget area to appear:

<div id="footer-sidebar">
<?php if ( is_active_sidebar('footer-widget-area-2') ) : ?>
<div id="fsidebar" class="widget-area">
<ul class="sid">
<?php dynamic_sidebar('footer-widget-area-2'); ?>
</ul>
<div class="clear"></div>
</div>
<?php endif; ?>
</div>

– You can now find it under Appearance > Widgets to add widgets to

Repeat for any other widget areas you want to add.