Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. 🚫 No AI-generated (LLM) posts allowed. Share your own thoughts and experience — accounts may be terminated for violations.

A couple of Wordpress Jobs Help

Joined
Jun 15, 2005
Posts
7,515
Reaction score
56
Hi Guys,

Just building a new website but i cannot find anywhere in the code to change the footer from powered by word press :(

and also i wanted some advice on adding a logo?

Pm me if you can help?

Thanks
Sean
 
Hi Murray,

yes its usually in footer.php but its not there? its a new theme i am using and if you upgrade to pro it allows you to create a footer and header
 
Ok... Ive found it -

/* translators: 1: Theme name, 2: Theme author. */
printf( esc_html__( 'Copyright © 2003 - 2019 %2$s %1$s.', 'airi' ), '', '<a href="https://cherishednames.com" rel="nofollow">CherishedNames.com</a>' );
?>
<?php else : ?>
<?php echo wp_kses_post( $credits ); ?>
<?php endif; ?>
</div><!-- .site-info -->

COPYRIGHT © 2003 - 2019 CHERISHEDNAMES.COM .

can you see the dot at the end of cherishednames.com it floats to far left how can i remove it from the code altogether?
 
Looks like the wordpress stuff is probably in the line thats :

<?php echo wp_kses_post( $credits ); ?>

Would be my guess thats its that line generating the wordpress bit. It is a guess though. Your last post about the dot floating left doesnt make much sense?
 
I see... i just read the code again, looked like your bit at the end was part of the code.

Are you trying to bypass paying for it but then getting rid of developer links etc? I'm sure they won't make it easy and fair enough. Probably worth just paying for the theme and the developers development time and getting support.
 
Forget trying to do it from *within* wordpress. Find the line of code in the actual php files and just delete it if it's not in your templates.
 
Last edited:
check the template-funtions.php file

probably this bit you want i would have thought. Poke around in there

Code:
/**
 * Footer credits
 */


    $credits = get_theme_mod( 'footer_credits' );
    ?>
   
    <div class="site-info col-md-12">
       
        <?php if ( $credits == '' ) : ?>
            <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'airi' ) ); ?>"><?php
                /* translators: %s: CMS name, i.e. WordPress. */
                printf( esc_html__( 'Proudly powered by %s', 'airi' ), 'WordPress' );
            ?></a>
            <span class="sep"> | </span>
            <?php
                /* translators: 1: Theme name, 2: Theme author. */
                printf( esc_html__( 'Theme: %2$s by %1$s.', 'airi' ), 'aThemes', '<a href="https://athemes.com/theme/airi">Airi</a>' );
            ?>
        <?php else : ?>
            <?php echo wp_kses_post( $credits ); ?>
        <?php endif; ?>
    </div><!-- .site-info -->
:
 
check the template-funtions.php file

probably this bit you want i would have thought. Poke around in there

Code:
/**
 * Footer credits
 */


    $credits = get_theme_mod( 'footer_credits' );
    ?>
  
    <div class="site-info col-md-12">
      
        <?php if ( $credits == '' ) : ?>
            <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'airi' ) ); ?>"><?php
                /* translators: %s: CMS name, i.e. WordPress. */
                printf( esc_html__( 'Proudly powered by %s', 'airi' ), 'WordPress' );
            ?></a>
            <span class="sep"> | </span>
            <?php
                /* translators: 1: Theme name, 2: Theme author. */
                printf( esc_html__( 'Theme: %2$s by %1$s.', 'airi' ), 'aThemes', '<a href="https://athemes.com/theme/airi">Airi</a>' );
            ?>
        <?php else : ?>
            <?php echo wp_kses_post( $credits ); ?>
        <?php endif; ?>
    </div><!-- .site-info -->
:
 

Rule #1: Be Respectful

Do not insult any other member. Be polite and do business. Thank you!

Premium Members

New Threads

Domain Forum Friends

Our Mods' Businesses

*the exceptional businesses of our esteemed moderators
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Siusaidh AcornBot:
    Siusaidh has left the room.
      Siusaidh AcornBot: Siusaidh has left the room.
      Top Bottom