This topic has 7 replies, 4 voices, and was last updated 11 years by nusolutions.
-
Author
-
September 3, 2013 at 20:54 #2184nicholaus1221Participant
Hi,
I was trying to add links to the “terms and conditions” and the “privacy policy” pages where it says Copyright “Site” 2013 “tagline” for the footer that appears at the bottom of every page. I actually installed a footer plugin from WPMUDEV that worked, but it didn’t override the main WordPress footer info so both we’re visible. Is there a way to add an html link in the WordPress footer code in the theme?
Any help is much appreciated,
Thanks,
NicholausSeptember 4, 2013 at 21:15 #2257SQadminKeymasterSince version 2.0 you can add this function to sweetdate-child/functions.php to override default text:
COPY CODEfunction kleo_copyright_text() { echo "My custom text"; }
You need to replace/add your own text in it
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 30, 2013 at 05:50 #5376hughmParticipantI would like to format my footer information. Currently all that is displaying is “Copyright © 2013,”
I tried adding the above code to my functions.php file in my child theme but had a few problems. The copyright symbol didn’t show correctly. Instead it showed up as a box. Also the site name and description did not display.
Could you give some direction on how to fix this and how to add additional details.October 30, 2013 at 13:27 #5383nusolutionsParticipantNot working for me:
function kleo_copyright_text()
{
echo ‘<p’>Date Demo. Copyright © 2013. All rights reserved. ‘</p>’; <br class=”hide-for-large show-for-small”/>’. get_bloginfo( ‘description’ ).'</p>’;
}The goal for me is to have links on both the left and right sides of that footer area.
tia
October 30, 2013 at 19:19 #5423SQadminKeymasterOk, to be more specific I modified the above function so you understand what I meant
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 30, 2013 at 19:22 #5424SQadminKeymasterThat function displays exactly the original text. Replace with your own text. Something like
COPY CODEecho '<div class="row"><div class="six columns">Bla bla</div><div class="six columns right">Bla bla</div></div>';
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.