• huntman

    (@huntman)


    Hello,
    Have a good day.

    How can it be changed settings for Copyright ?2017 etc and put some extra links ?
    How to put footer menu in footer area while having plugin installed like MAX MEGA MENU?

    https://www.outacts.com

    Thanks & Best Regards

Viewing 6 replies - 1 through 6 (of 6 total)
  • Subrata Sarkar

    (@subrataemfluence)

    You have two parts in your question.

    How can it be changed settings for Copyright ?2017

    There is a file called hooks-funcitons.php under wp-content/themes/mesocolumn/lib/functions/ folder. Function meso_add_footer_left_item controls the copyright message. You can make changes, add additional links etc. to this function to display your desired output.

    How to put footer menu in footer area

    Create a new menu by going to Appearance > Menu > Create a New Menu and assign it to footer Menu. Drag a few items from the left to this menu. Once you are done Save Menu. Refreshing your site should now display the menu items in the footer section.

    Please look at the footer section of the screenshot here https://prntscr.com/egohdz. I have made the changes for better understanding. Hope this helps.

    Always use Child Theme to avoid overwriting your changes when theme is updated!

    Thread Starter huntman

    (@huntman)

    Thank you so very much @subrataemfluence
    Can you please assist me little more about the above topic.

    well I found the source file you mentioned above hooks-funcitons.php and the function meso_add_footer_left_item , where can I find the other part of this code i.e CSS to make it effective on front end?

    In other part of my question, (How to put footer menu in footer area) unfortunately I already followed the above steps you mentioned but nothing happened.

    It automatically disappeared menu options in menu setting section as all thing were going well. Automatically updated I don’t know.

    Will be greatfull for you

    Best Regards,

    Theme Author Richie KS

    (@rkcorp)

    add this to functions.php or child theme functions.php if you’re using one.

    remove_action('bp_footer_left','meso_add_footer_left_item');
    function meso_add_custom_footer_left_item() { ?>
    <!-- any html code you want -->
    <?php }
    add_action('bp_footer_left','meso_add_custom_footer_left_item');

    afraid footer are not suitable for mega menu. the footer area did not allow sub item by default on this theme. not sure how the mega menu will work there. consult with plugin author on how to apply mega menu to custom menu location.

    Could anyone tell about how to remouve the footer background? Copyright and the color bloc.

    https://www.okhbb.com

    Hi @bluebleu,

    Admin > Appearance > Customize > Additional CSS

    .footer-bottom { display: none; }

    I hope this much will do. Let me know if this works!

    rcworld

    (@rcworld)

    Hi,

    We have started working on a new site with, and have installed a free WordPress theme
    (MH Magazine) which also has paid version available.

    As there is a very limited setting where we can make certain changes but, I have got to put Footer links such as Privacy Policy, Terms and Condition and others.

    Could anybody, please help me with handly code where I can update it without any confusion?

    Site: ReviewCart

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to change footer text Copyright ?2017 etc’ is closed to new replies.