Can anyone show me how to edit the footer links in paper template by Robert Plank?

6 replies
Hello everyone,
I wish to edit the footer links on my website www.happyemarketing.com I don't know if someone will help me out. I wish to add refund policy, about me and two others. I've checked through everything and nothing seems to be working.
#edit #footer #links #paper #plank #robert #show #template
  • Profile picture of the author otfromtot
    I haven't looked through the theme itself but if you add something like this to functions.php it should work. I usually add custom edits to the very bottom of functions.php

    PHP Code:
    /** Custom Footer */
    /** Customize the return to top of page text */
    add_filter'genesis_footer_backtotop_text''custom_footer_backtotop_text' );
    function 
    custom_footer_backtotop_text() {
        echo 
    '<div class="creds"><a href="/">HOME</a></div>';
       
    }


    /** Customize the credits */
    add_filter'genesis_footer_creds_text''custom_footer_creds_text' );
    function 
    custom_footer_creds_text() {
         echo 
    '<div class="gototop"> All Rights Reserved.</div>';

    {{ DiscussionBoard.errors[8296308].message }}
  • Profile picture of the author Fenshon
    I checked and there is no functions.php file in Robert Plank's paper template plugin.
    Signature
    {{ DiscussionBoard.errors[8296941].message }}
    • Profile picture of the author RobinInTexas
      Since it's a paid plugin, and we would need to look at the plugin file(s) in order to find it, it's difficult to guess. Looking at the page source, they are not giving enough hints for me to tell.

      I also suspect that since there are limits to the license some of the code in the plugin is obfuscated and that may make it difficult. You might contact the developer for support.
      Signature

      Robin



      ...Even if you're on the right track, you'll get run over if you just set there.
      {{ DiscussionBoard.errors[8298899].message }}
  • Profile picture of the author otfromtot
    I work with a lot of wordpress sites, and have even had to build a few custom themes. I can look through the files if you want and see if there's anything I can do, but I can't guarantee that I would be able to find what to change.
    {{ DiscussionBoard.errors[8299225].message }}
    • Profile picture of the author Fenshon
      I checked all the files one by one and did not find any...the write ups looked scattered. i guess i'll just contact the developer. i thought i could just get a quick fix by posting here. thanks for all your responses.
      Signature
      {{ DiscussionBoard.errors[8299454].message }}
      • Profile picture of the author otfromtot
        Originally Posted by Fenshon View Post

        I checked all the files one by one and did not find any...the write ups looked scattered. i guess i'll just contact the developer. i thought i could just get a quick fix by posting here. thanks for all your responses.
        good luck!
        {{ DiscussionBoard.errors[8300053].message }}

Trending Topics