Hi,
Please follow these steps to remove footer encryption from wordpress theme footer:
Step 1
Open index.php and find include code for the footer. The footer include code looks like:
<?php get_footer(); ?>
Step 2
Add this comment code on the top and bottom of the footer code:
<!–Footer code starts here–>
<?php get_footer(); ?>
<!–Footer code ends here–>
Save the file and upload it to the server.
Step 3
Load the theme in a browser. View the source code by clicking
View -> Source (If you view in IE) or
Ctrl + U (If you view in Firefox)
Step 4
The source code in between <!–Footer code starts here–> and <!–Footer code ends here–> is the source code for the footer.
Now, open footer.php and replace the encrypted code with the actual source code. We can then start to modify the footer in anyway we want. But make sure that we have taken require permissions from the theme author.
Thanks,
Shane G.
Popularity: 7%