Bottom Footer Customization

Home Forums Chit Chat WPLMS customizations Bottom Footer Customization

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #3570
    House Skill
    Spectator
    Hi We would to customize the bottom footer something like this. Kindly help us out in making the menu something like this.
    #3618
    Anshuman Sahu
    Keymaster
    We are adding 6 column footer in next update of wplms (1.9.9) .
    #3708
    House Skill
    Spectator
    Thanks hopefully the update its going to launch today.
    #4013
    Anshuman Sahu
    Keymaster
    Theme already submitted for review update will be available soon .
    #4078
    House Skill
    Spectator
    Would you please tell me how to add the 6 column footer. I have updated wplms (1.9.9).
    #4519
    House Skill
    Spectator
    Can you kindly reply
    #4987
    House Skill
    Spectator
    Can anyone reply ???
    #5333
    MrVibe
    Keymaster
    a. Add this code in Child theme - Functions.php
    add_action('widgets_init','mywplms_register_sidebars');
    function mywplms_register_sidebars(){
        register_sidebar( array( 
            'name' => 'My Bottom Footer Sidebar', 
            'id' => 'mybottomfootersidebar', 
            'before_widget' => '<div class="col-md-2 col-sm-4"><div class="footerwidget">', 
            'after_widget' => '</div></div>', 
            'before_title' => '<h4 class="footertitle">', 
            'after_title' => '</h4>', 
            'description' => __('Bottom Footer widget area / sidebar','vibe') 
        ) );
    }
      b. Copy footer.php from parent theme into your child theme and change "bottomfootersidebar" to "mybottomfootersidebar" in the footer.php file of child theme. p.s: Moving to customisations forum.
    #5724
    House Skill
    Spectator
    Hi Currently i have the default theme installed. Kindly let me know the exact procedure. Do i need to install the "child one" theme as well. Then i need to add this function ??
Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Bottom Footer Customization’ is closed to new replies.