In this article, we will show how you can add a link to the copyright area text.
1. Open your website in site setting mode
2. Navigate to the general >> custom js
3. Add following codes there
jQuery(document).ready(function($){
$(“.copyright p”).css(“cursor”,”pointer”);
$(“.copyright p”).html(“<a href=’http://theme.pixflow.net/massive-dynamic/’>copyright-made with massive dynamic</a>”);
});
*You can use any URL which you want instead of the http://theme.pixflow.net/massive-dynamic/
*You can use any text you want instead of the “copyright-made with massive dynamic”.
For adding link to the part of the copyright text
Please use this codes:
jQuery(document).ready(function($){
$(“.copyright”).html(“<p>copyright-made with <a href=’http://theme.pixflow.net/massive-dynamic/’>massive dynamic</a></p>”)
});
*You can use any URL which you want instead of the http://theme.pixflow.net/massive-dynamic/
*You can use any text you want instead of the “copyright-made with” and “massive dynamic”.