Community Forums › Forums › Archived Forums › General Discussion › Metro Theme Real Footer Edit
Tagged: Metro
- This topic has 12 replies, 3 voices, and was last updated 8 years, 2 months ago by fncll.
-
AuthorPosts
-
October 30, 2015 at 7:59 am #169611DerekMember
Hello,
When I say real footer edit, I mean the footer at the bottom part of the page where it says "Copyright 漏 2015 路 Metro Pro Theme on Genesis Framework 路 WordPress 路 Log in".
I can't find this edit portion in the widget, nor in the Editor sections. How can I edit this area? It's driving me nuts!
Thanks in advance for your help.
Regards,
-DerekOctober 30, 2015 at 8:49 am #169616Davinder Singh KainthMemberTwo ways:
1. Code method: Use last code on this page (https://my.studiopress.com/snippets/footer/) in your functions.php file (add at bottom).
2. Plugin method: Use this plugin https://wordpress.org/plugins/genesis-simple-edits/
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesOctober 30, 2015 at 8:51 am #169617DerekMemberAwesome Davinder! Thanks so much for the help. Will see if I am able to execute this.
Have a great day 馃檪
October 30, 2015 at 11:31 am #169647DerekMemberHey Davinder,
I added the entire code at the bottom of my functions.php:
<?php //* Do NOT include the opening php tag shown above. Copy the code shown below. //* Customize the entire footer remove_action( 'genesis_footer', 'genesis_do_footer' ); add_action( 'genesis_footer', 'sp_custom_footer' ); function sp_custom_footer() { ?> <p>© Copyright 2012 <a href="http://mydomain.com/">My Domain</a> · All Rights Reserved · Powered by <a href="http://wordpress.org/">WordPress</a> · <a href="http://mydomain.com/wp-admin">Admin</a></p> <?php }
But when I click to save I get an error page. On the error page it says this:
No data received
ERR_EMPTY_RESPONSE
Unable to load the webpage because the server sent no data.
Reload this webpage
Press the reload button to resubmit the data needed to load the page.It's strange as if the templates not letting me do my thing. Any thoughts?
Thanks in advance for your help.
Regards,
-DerekOctober 31, 2015 at 7:15 am #169715Davinder Singh KainthMemberDid you try doing again or checked plugin method?
As such that error is related to file permission / server configuration. Refer - https://wordpress.org/support/topic/error-324-neterr_empty_response-the-server-closed-the-connection-without-se
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesOctober 31, 2015 at 9:04 am #169721Davinder Singh KainthMemberYou should use code in following format
//* Customize the entire footer remove_action( 'genesis_footer', 'genesis_do_footer' ); add_action( 'genesis_footer', 'sp_custom_footer' ); function sp_custom_footer() { ?> <p>© Copyright 2012 <a href="http://mydomain.com/">My Domain</a> · All Rights Reserved · Powered by <a href="http://wordpress.org/">WordPress</a> · <a href="http://mydomain.com/wp-admin">Admin</a></p> <?php }
Do not include opening php tag
<?php //* Do NOT include the opening php tag shown above. Copy the code shown below.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesNovember 2, 2015 at 4:25 pm #169942DerekMemberHi Davinder,
Apologies once again for the late response on this topic.
I did do exactly as you said, however, as mention the website doesn't react to this. As well, the plugin version also yielded the same error message as mention above. It's as if wordpress was condemning me of doing any changes to the site LOL. For your reference here is the site: http://goo.gl/gxPqNw
So Even though I place the code at the bottom, made the necessary changes, it still yields no change after I click save. I'd love to hear your thoughts!
Cheers,
-Derek
November 2, 2015 at 8:39 pm #169958Davinder Singh KainthMemberLooks like footer credits are being output as "漏 Copyright 2015 My Domain 路 All Rights Reserved 路 Admin" above the real site footer.
Difficult to check without back-end access. Send me login details (iguiding.com/contact), I will have a look.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesNovember 3, 2015 at 4:39 pm #170087DerekMemberHi Davinder,
Email sent. I really appreciate this, big time!
Regards,
-DerekNovember 3, 2015 at 9:10 pm #170107Davinder Singh KainthMemberCheck now, issue is fixed. Metro theme was hooking footer at new location. Hence updated 'footer credits change" code with that hook location.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesNovember 4, 2015 at 6:31 am #170127DerekMemberDavinder, I can't thank you enough. This is something I wouldn't have been able to figure out on my own. Not sure why the credit section isn't straight forward on this theme as it is on others...
Thanks for all your help!
Regards,
-DerekNovember 5, 2015 at 2:05 am #170195Davinder Singh KainthMemberWelcome!
Not sure why the credit section isn’t straight forward on this theme as it is on others…
Because credits section is hooked outside site-container in this theme.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesJuly 16, 2016 at 12:05 pm #189605fncllMemberI'm having the same problem. What hook location should I be using? How can I find this out for myself?
-
AuthorPosts
- The topic ‘Metro Theme Real Footer Edit’ is closed to new replies.