Add social media icons to Elementor mobile menu
P粉521697419
P粉521697419 2023-08-30 18:40:44
0
1
427
<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粉521697419
P粉521697419

reply all(1)
P粉207969787

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]

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!