Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello ebamabbs,

    You need to go in footer.php and find the word than replace it.

    Thanks.

    You need to go in footer.php and find the word than replace it.

    please suggest modifications in theme files only through child theme.

    It’s always a good idea to make a child theme if you need to edit theme files. It ensures your changes to be saved even when the parent theme is updated.

    thanks,

    Thread Starter ebamabbs

    (@ebamabbs)

    </div><!– #content –>

    <footer id=”colophon” class=”site-footer” role=”contentinfo”>
    <div class=”row site-info”>
    <?php echo ‘© ‘.date(“Y”); ?>
    <span class=”sep”> | </span>
    <?php printf( esc_html__( ‘Proudly Powered by ‘,’nisarg’)); ?>
    “>WordPress
    <span class=”sep”> | </span>

    <?php
    $nisarg_theme_author_str = ‘Falguni Desai‘;
    printf( esc_html__( ‘Theme: %1$s by %2$s.’, ‘nisarg’ ), ‘Nisarg’,$nisarg_theme_author_str);
    ?>

    </div><!– .site-info –>

    I’m still a little confused as to what bits to remove/change?

    Hello ebamabbs,

    For Your Desired Result in child theme’s footer you can replace following lines of code :

    <?php echo '? '.date("Y"); ?>
    <span class="sep"> | </span>
    <?php printf( esc_html__( 'Proudly Powered by ','nisarg')); ?>
    ">WordPress
    <span class="sep"> | </span>
    
    <?php
    $nisarg_theme_author_str = 'Falguni Desai';
    printf( esc_html__( 'Theme: %1$s by %2$s.', 'nisarg' ), 'Nisarg',$nisarg_theme_author_str);
    ?>

    with this :

    <?php echo '? 2008- '.date("Y"); ?>
    <span class="sep"> | </span>
    <?php printf( esc_html__( 'White Hart Pain ','nisarg')); ?>

    Hope it works for You,
    Thanks,

    Thread Starter ebamabbs

    (@ebamabbs)

    Great, thanks very much for your help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to amend the footer?’ is closed to new replies.