• Hi,
    My question is, how can I remove the footer credits, shown as follows;

    Proudly powered by WordPress | Theme: Trusted by uXL Themes

Viewing 1 replies (of 1 total)
  • Theme Author uxl

    (@uxl)

    There are a few different ways to remove the footer credits.

    Add this in Additional CSS (does not remove it, only hides it from view):

    .site-info {
        display: none;
    }

    Or, in a child theme’s functions.php file, add this:

    function trusted_powered_by() {
        ?>
            <div class="site-info">
                **YOUR OWN CONTENT OR HTML MARKUP HERE**
            </div>
        <?php
    }

    Or, upgrade to Trusted Pro as it has a widget area allowing you to write your own content to override the standard footer credit.

Viewing 1 replies (of 1 total)
  • The topic ‘how to remove footer credits’ is closed to new replies.