• Resolved boppar

    (@boppar)


    In my footer I have sitenamn/copyright and below Privacypolicy and Built with Storefront and Woocommerce.
    https://ibb.co/Z194Jqb
    I do know how to get rid of the credits etc. No problem.

    I want to edit this footer to be like this:
    ? H?ngmattor.se 2020 Integritetspolicy Sidkarta Sitemap
    Looking like something like this (this was done on my old site using a plugin, which I don’t want to use anymore):
    https://ibb.co/Jx5fxnm

    Can this be done without using a plugin, just using CSS?

    My site: https://ibb.co/VNbnNkX

Viewing 1 replies (of 1 total)
  • Thread Starter boppar

    (@boppar)

    Problem solved.
    Just added what I wanted in the div section.

    if ( ! function_exists( 'storefront_credit' ) ) {
        /**
         * Display the theme credit
         *
         * @since  1.0.0
         * @return void
         */
        function storefront_credit() {
            ?>
            <div class="site-info">
                <?php echo esc_html( apply_filters( 'storefront_copyright_text', $content = '&copy; ' . get_bloginfo( 'name' ) . ' ' . date( 'Y' ) ) ); ?>
            </div>
            <?php
        }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Is it possible to edit (not removing) footer credits?’ is closed to new replies.