• Resolved PPCMD

    (@ppcmd)


    How can I remove the text ‘| Designed by: Theme Freesia | Powered by: WordPress ‘, and add my Website Name? I’m using the Theme, ‘Freesia Empire’, and it’s the latest version.

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

    I suggest you to:

    1. Create child theme
    2. Override footer hook in child functions.php with the following code snippet

    function my_site_footer() {
        if ( is_active_sidebar( 'freesiaempire_footer_options' ) ) :
            dynamic_sidebar( 'freesiaempire_footer_options' );
        else:
            echo '<div class="copyright">' .'? ' . get_the_time('Y') .' '; ?>
            <a title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" target="_blank" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php echo get_bloginfo( 'name', 'display' ); ?></a>
            </div>
        <?php endif;
    }
    
    function my_action_override() {
    
        remove_action( 'freesiaempire_sitegenerator_footer', 'freesiaempire_site_footer' );
           add_action( 'freesiaempire_sitegenerator_footer', 'my_site_footer' );
    
    }
    add_action( 'init', 'my_action_override' );

    Cheers!

    Thread Starter PPCMD

    (@ppcmd)

    Thanks a lot! You can now check the footer of my Website – It tells you how your help worked for me! It meant a lot to me, because my friends would’ve found out my secret, that I’m using WordPress for my Websites. Here’s the link:
    PPCMD Group Website(https://ppcmd-group.com)

    Thread Starter PPCMD

    (@ppcmd)

    @jovanav
    Thanks a lot! You can now check the footer of my Website – It tells you how your help worked for me! It meant a lot to me, because my friends would’ve found out my secret, that I’m using WordPress for my Websites. Here’s the link:
    PPCMD Group Website(https://ppcmd-group.com)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove Footer Text in Freesia Empire’ is closed to new replies.