JNews Theme: How to enable WPBakery for posts
In JNews, WPBakery in posts is turned off by default. To turn it on, add the code below to the theme’s child theme functions.php. add_filter( ‘vc_check_post_type_validation’ , ‘jnews_vc_post_type’, 99, 2 ); function jnews_vc_post_type( $value, $type ) { if ( $type === ‘page’ || $type === ‘post’ ) { return true; } else { return false; […]
JNews Theme: How to display the post publish date rather than the last modified date
On the WordPress top menu bar, click Customize On the Vertical menu, click to expand: JNews: Additional Option On the next menu, Click to expand: Post Date Setting Under Post Date Meta: Select Publish Date Then, click Publish You can see the above steps demonstrated in the video below.