Home  >  Q&A  >  body text

Add social media icons to Elementor mobile menu

<p>I am looking for a solution to add social media icons to the Elementor menu in WordPress. Any ideas? </p> <p>I could use a hamburger icon and add a popup above it, but that would be my last resort. </p>
P粉521697419P粉521697419416 days ago429

reply all(1)I'll reply

  • P粉207969787

    P粉2079697872023-08-31 14:12:44

    You can create a shortcode and use it in the menu... You will need a code or plugin to allow inserting the shortcode in the menu. For example: shortcode in the menu.

    You can then create a shortcode containing the elements you want to print and put it in your functions.php file as follows:

    function function_whatever()
    { echo 'whatever'; }
    add_shortcode('shortcode_whatever', 'function_whatever');

    The final step is to insert the shortcode into the menu:

    [shortcode_whatever]

    reply
    0
  • Cancelreply