• Resolved ArtGoddess

    (@artgoddess)


    Hello, I would like to add a link to a “discord server” with the Gutenberg “social icon” block, and it seems it is not supported.

    Is there any way to replace the standard link for the Discord icon?

    https://discord.com/branding

    Many thanks!

    • This topic was modified 1 year, 5 months ago by ArtGoddess.
Viewing 5 replies - 1 through 5 (of 5 total)
  • If it’s unsupported, you should do it manually (wrap an img element inside of a link element) – I recommend iconmonstr: https://iconmonstr.com/?s=discord

    Thread Starter ArtGoddess

    (@artgoddess)

    As I have to use the Gutenberg social icons block on all pages, I kindly ask for a solution (class declaration) on functions.php or style.css for a Twenty Twenty-One child theme.

    Or in a custom plugin, valid for any theme.

    I am going to use Discord SVG icon from https://discord.com/branding

    Many thanks!

    • This reply was modified 1 year, 5 months ago by ArtGoddess.
    Thread Starter ArtGoddess

    (@artgoddess)

    I’m trying with this code:

    function Custom_twenty_twenty_one_social_icons_map( $icons ) {
        $icons['discord'] = array(
            'discord.com',
        );     
        return $icons;
    }
    
    add_filter( 'twenty_twenty_one_social_icons_map', 'Custom_twenty_twenty_one_social_icons_map' );
    
    function Custom_twenty_twenty_one_svg_icons_social( $icons ) {
    
        $icons['discord'] = '<svg>  ...  </svg>';
    
        return $icons;
    }
    
    add_filter( 'twenty_twenty_one_svg_icons_social', 'Custom_twenty_twenty_one_svg_icons_social' );

    It works in the footer, but it doesn’t work with the Gutenberg “social icon” block in the content.

    Footer
    Content

    Is there any way to replace the standard icon with the Discord icon inside the content? Many thanks!

    • This reply was modified 1 year, 4 months ago by ArtGoddess.
    Thread Starter ArtGoddess

    (@artgoddess)

    Any thoughts? Thank you.

    Thread Starter ArtGoddess

    (@artgoddess)

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Discord icon on social icons block’ is closed to new replies.