• Hello,
    I love the Sinatra theme. There is something I can’t figure out and I wonder if anybody can help me out. I added Social Media links on the bottom right footer (the website is under construction but you can see that). In any case, I created a Menu with custom Links and added the on the Widget/Footer. Everything works perfectly and the icons are ok except the WhatsApp icon.
    The link works and it’s ok, but the icon is like an external link, not the traditional WhatsApp icon.
    Is there any way to change that? If I have to change all icons with pictures to be consistent, it’s ok. But I’d like the traditional WhatsApp icon there.
    Thank you so much for your help!!
    JD

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • +1 Having the same problem. I have found a lot of solutions but none of them worked.

    Branko

    (@brankoconjic)

    Hey,

    The theme does not have inbuilt icon for WhatsApp, but I will add that to our to-do list and it will be added in the future.

    @brankoconjic
    Hey,

    I wonder if this code snippet might help>

    function custom_sinatra_nav_menu_social_icons( $item_output, $item, $depth, $args ) {
    
    	if ( false !== strpos( $args->menu_class, 'sinatra-socials-menu' ) && false !== strpos( $item_output, 'naver.com' ) ) {
    		$item_output = str_replace( $args->link_after, '</span>NAVER ICON GOES HERE', $item_output );
    	}
    
    	return $item_output;
    }
    add_filter( 'walker_nav_menu_start_el', 'custom_sinatra_nav_menu_social_icons', 10, 4 );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WhatsApp logo on Siantra Theme’ is closed to new replies.