• I am trying to remove the “Bento theme by SatoriStudio” text in the footer. How do I do this?

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • There may be a CSS way of doing it, but the best practice would probably be (in my opinion) is to override parent’s function to create and render your own content.

    The following article I thought might be helpful:
    https://code.tutsplus.com/tutorials/a-guide-to-overriding-parent-theme-functions-in-your-child-theme–cms-22623

    However, you can do another thing if you don’t really want to “override” parent function, i.e. by writing your own function in your child theme’s functions.php file and call it in child theme’s footer.php, where you have ?php bento_copyright_my(); ?>

    The function you write in your child theme could look like this:

    if ( ! function_exists( 'your_theme_custom_copyright_info' ) ) {
        function your_theme_custom_copyright_info() {
            $copyright = '© '.date_i18n( __( 'Y', 'bento') );
            $sitename = '<a href="'.esc_url( home_url( '/' ) ).'">'.esc_attr( 
    get_bloginfo( 'name' ) ).'</a>';
            echo '<div class="footer-copyright">' . $copyright . ' ' . $sitename . 
    '</div>';
        }
    }

    then call it in footer.php file in your child theme folder by replacing <?php bento_copyright_my(); ?> with <?php your_theme_custom_copyright_info(); ?>.

    Let me know if this helps!

    Theme Author satoristudio

    (@satoristudio)

    Hey @daweymey, removing the footer statement is not envisaged in Bento; in case you like the theme, you can show your appreciation by purchasing the official Expansion Pack plugin, which, among other additional perks, includes the option to customize or remove the footer statement.

    Thank you for the detailed response, @subrataemfluence, for the future please also take into account that the footer statement is often the only way the theme’s author is being thanked by the user – for the 100s of hours of work that have resulted in a product that the user now gets for free ??

    Sincerely,
    Andrii / Satori Studio

    @satoristudio, I will remember this in the future! I should not have replied like this and really sorry for this. Thank you for telling me.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing “Bento Theme” in footer’ is closed to new replies.