[ad_1]
Plugin Author
xootix
(@xootix)
Hello,
Where would you like to add the text? Please point in screenshot.
You can use the below snippet to add it after tabs.
add_action( 'xoo_el_after_header', function(){
?>
<p>Custom text</p>
<?php
} );
here is the link where the image is there : https://prnt.sc/n8YwSmRpNjfA
do let us know which file the code needs to be added and where,
thanks.
Plugin Author
xootix
(@xootix)
This is the snippet. Goes in your theme’s functions.php or you can use a code snippet plugin
add_action( 'xoo_el_before_header', function(){
?>
<p>Custom text</p>
<?php
} );
