• Resolved stefanartistk3erxi

    (@stefanartistk3erxi)


    I saw a similar post from a year ago but it does not help me. I am very new to word press. My theme has a footer that reads “Powered by WordPress Theme:Ignis by athemes”

    First off I cannot find where this is to edit it.
    Secondly I don’t know how to edit it once I find it.

    The customizer for Ignis does not have a footer tab. So I am at a loss on how to find and edit this. Would appreciate assistance. thank you

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @stefanartistk3erxi,

    You can add this JavaScript to your site with a custom JavaScript plugin.

    ;(function($) {
    
       'use strict'
    
       var newCredit = 'Your footer text.';
    
       $('.site-info').html(newCredit);
    
    })(jQuery);
    Thread Starter stefanartistk3erxi

    (@stefanartistk3erxi)

    Thank you for the response. I have installed the plug in “TC Custom JavaScript”. Now what? Could you please explain step by step. I am a beginner. thanks

    Hi @stefanartistk3erxi,

    Once you have the plugin installed and enabled, you can paste the code into Appearance > Custom JavaScript; and update.

    ;(function($) {
    
       'use strict'
    
       var newCredit = 'Your footer text.';
    
       $('.site-info').html(newCredit);
    
    })(jQuery);
    Thread Starter stefanartistk3erxi

    (@stefanartistk3erxi)

    Thanks again. Have pasted the code in as suggested and updated. Assume in the area that says ‘Your footer text.’ i should replace that with the text to be shown in the footer?

    Or is there some other way to change the existing footer and replace with what I want it to say? thanks

    Thread Starter stefanartistk3erxi

    (@stefanartistk3erxi)

    Before you answer my last post I tried entering my footer info into the script string and everything worked perfect. Thanks much for all your help. Most appreciative.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to find and modify footer’ is closed to new replies.