Turn more button into read more toggle
https://gist.github.com/wpexplorer/33811c988bae14e64cc83cda9d7494ec // Hook into the vc_shortcode_content_filter flter to modify the vc_column_text content // and covert the more tag into an actual toggle button. add_filter( 'vc_shortcode_content_filter', function( $content, $shortcode ) { if ( 'vc_column_text' !== $shortcode ) { return $content; }…