I know that there are snippets to store form uploads in different folders, but I would…
Remove Visual Composer Metadata from Sourcecode

xiangying_xu / Pixabay
Visual Composer is a useful plugin but as many others it leaves it’s traces in the sourcecode of you website. Simply add this snippet to your functions.php to prevent this bevaior.
add_action('init', 'myoverride', 100); function myoverride() { remove_action('wp_head', array(visual_composer(), 'addMetaData')); }
Dieser Beitrag hat 0 Kommentare