Enjoy unlimited access to all forum features for FREE! Optional upgrade available for extra perks.

A couple of Wordpress Jobs Help

Discussion in 'Wordpress' started by SF, May 11, 2019.

  1. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    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
     
  2. Domain Forum

    Acorn Domains Elite Member

    Joined:
    1999
    Messages:
    Many
    Likes Received:
    Lots
    IWA Meetup
     
  3. Murray

    Murray Well-Known Member

    Joined:
    Sep 2012
    Posts:
    4,261
    Likes Received:
    432
    It should be in the footer.php no? just look in them all worst come to worst and ctrl+f to find it

    I don't know if you just want a helping hand or professional stuff done, @Adam H is very good if you do
     
    • Like Like x 1
  4. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    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
     
  5. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    Also need someone just cleaning my logo up and inserting it into the wordpress site
     
  6. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    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?
     
  7. dee

    dee Well-Known Member Acorn Supporter

    Joined:
    May 2013
    Posts:
    2,592
    Likes Received:
    404
    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?
     
  8. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    hi dee thanks for your reply, if you look at

    COPYRIGHT © 2003 - 2019 CHERISHEDNAMES.COM . < it has the full stop which floats to far to the right i am trying to remove it from the code above so it does not show on my website
     
  9. dee

    dee Well-Known Member Acorn Supporter

    Joined:
    May 2013
    Posts:
    2,592
    Likes Received:
    404
    If its outside the php stuff (which it looks like it is from your post) you should just be able to delete it ?
     
  10. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    but from where in the code i put above?
     
  11. dee

    dee Well-Known Member Acorn Supporter

    Joined:
    May 2013
    Posts:
    2,592
    Likes Received:
    404
    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.
     
  12. RobM

    RobM Retired Member

    Joined:
    Mar 2012
    Posts:
    3,273
    Likes Received:
    470
    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: May 12, 2019
  13. dee

    dee Well-Known Member Acorn Supporter

    Joined:
    May 2013
    Posts:
    2,592
    Likes Received:
    404
    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 -->
    :
     
  14. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    Ive tried add a captcha to my contact form followed all instructions and ive got some popup showing up ?
     
  15. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
     
  16. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    yes dee thats how i edited the footer took me hours to find it but ive still that full stop floating to the right :(
     
  17. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    great idea ill give that a go which one rob should i be looking for in my files
     
  18. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    theres an hours work for a wordpress guy to do a few jobs? pm me
     
  19. SF

    SF Well-Known Member

    Joined:
    Jun 2005
    Posts:
    7,543
    Likes Received:
    58
    anyone out there?