Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Aldo Latino

    (@aldolat)

    Hello, the widget title is defined by the theme you’re using. For example, in “Twenty Fifteen” theme it’s defined in functions.php file:

    function twentyfifteen_widgets_init() {
    	register_sidebar( array(
    		'name'          => __( 'Widget Area', 'twentyfifteen' ),
    		'id'            => 'sidebar-1',
    		'description'   => __( 'Add widgets here to appear in your sidebar.', 'twentyfifteen' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</aside>',
    		'before_title'  => '<h2 class="widget-title">',
    		'after_title'   => '</h2>',
    	) );
    }
    add_action( 'widgets_init', 'twentyfifteen_widgets_init' );

    As you can see, the widget title is h2, not h3.

    Also, editing the theme you could be able to define an image.

    Thread Starter toto80

    (@toto80)

    thank you aldolat. i’ll try to find a solution for this

    Plugin Author Aldo Latino

    (@aldolat)

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how replace the widget title with a logo’ is closed to new replies.