Hi team
Today i am looking to add custom link using subfooter along with our site name. http://prntscr.com/8z8x1e
But when i add followed link along with subfooter,
Proudly Hosted by Cloudways
it points to wrong URL and not rendering properly.
Will you please help me to resolve the same.
Hello,
The text box from the theme panel does not support html code by default. It gets removed by the theme so a link inserted here will not work without customization.
Modify the code in footer.php – http://screencast.com/t/bUR2WvmmY
echo stripslashes($tds_footer_copyright);
And also remove this code – http://screencast.com/t/dkdikkHCAJD1 so the html will not be removed from the panel.
Then you can add your link in the text box as before and it should work this time.
Thank you!
Hello,
The easiest method would be with CSS. You can identify the page id: http://screencast.com/t/9fDaCbodJEfr and use it to target the specific pages you want to remove the link from. You can use the display:none property.
Thank you!
Hello,
Another way to do it is by adding a condition in Footer.php: http://screencast.com/t/ZaTaJqXngY using this reference: https://codex.wordpress.org/Function_Reference/is_page.
I hope this helps.
Thank you!