I am struggling to add the links to my Disclaimer and Privacy policy pages in the colophon.
Could anybody help me?
I am struggling to add the links to my Disclaimer and Privacy policy pages in the colophon.
Could anybody help me?
Hey there,
I hope you’re doing well today
Unfortunately, I’m not clear on what it is you mean by colophon?
Are you Disclaimer and privacy policy pages regular pages located in WordPress Dashboard > Pages?
Please send a link to these pages along with further clarification.
Best Regards,
Support
Disclaimer and Privacy policy are regular pages, yes. I would like to add the links to them to this section if possible, ideally above the Copyright section.
It is in the bottom of the website: https://upbeatimpulse.com/
Hi,
Create a child theme, and copy paste the footer.php from parent theme, in the child theme’s footer.php remove these two lines, around line #21 and #22
<?php echo esc_html( get_theme_mod( 'activello_footer_copyright', 'Activello' ) ); ?>
<?php activello_footer_info(); ?>
and add your links in that place.
Let us know,
Thanks,
laranz.
You can achieve this by using child theme solution shared in the following topic.
It worked, thank you. I’d only like to add | between Powered by Wordpress, Privacy Policy, and Disclaimer if possible: Privacy Policy - Upbeat Impulse
Thanks
You can achieve that by adding the mark | between the code of those links as displayed below.
<a href="https://upbeatimpulse.com/privacy-policy" target="_blank">Privacy Policy</a> | <a href="https://upbeatimpulse.com/disclaimer" target="_blank">Disclaimer</a>
It works! Thank you very much.
You are most welcome here