• Resolved wfeu

    (@wfeu)


    I am trying to remove the bullets in the footer div class site-info that appear after the using TinyFramework link.

    this is the code:
    <span class="meta-separator" aria-hidden="true">?</span>

    but I am unable to find where to remove it. I do not see it in the functions php – 1.4 – Change/Remove Footer credits – Tip87

Viewing 3 replies - 1 through 3 (of 3 total)
  • Have a look here: https://www.ads-software.com/support/topic/strange-dot-in-copyright-widget-footer/
    This worked for me:
    in style.css:

    #site-admin-link {
        display: none;
    }

    in functions.php:

    function tinyframeworkchild_remove_parent_theme_credits() {
    	remove_action( 'tinyframework_credits', 'tinyframework_display_credits' );
    }
    add_action( 'init', 'tinyframeworkchild_remove_parent_theme_credits' );
    
    function tinyframeworkchild_display_credits() {
    	$text = ' ©2017 <a href="https://www.xyz.de/impressum" rel="designer">Impressum</a>';
    	echo apply_filters( 'tinyframework_credits_text', $text );
    }
    add_action( 'tinyframework_credits', 'tinyframeworkchild_display_credits' );
    • This reply was modified 7 years, 8 months ago by wpjap.

    I was wondering if someone could help me about a similar question. Whenever I try to edit something using the “editor”, I get an error page as if I don’t have permission to do so. This behavior will only happen when using the editor.

    Any guesses?

    Theme Author Tomas Mackevicius

    (@tomasm)

    It is not good a practice (from the security perspective) to change theme files with WP editor, it is better to download them via FTP and change with notepad++ or similar editor.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Bullets in footer site-info’ is closed to new replies.