- NewsmagtagDiv Composer Tutorial
- NewsmagHow to use the Visual Composer plugin
- NewsmagHow to update a plugin
- NewsmagWhat’s included in Newsmag theme package
- NewsmagRequirements for Newsmag
- NewsmagInstall via WordPress
- NewsmagInstall via FTP
- NewsmagBlock settings tutorial
- NewsmagtagDiv Social Counter tutorial
- NewsmagHow to update the WPBakery plugin
- NewsmagPage Menu
- NewsmagCustom ad spots
- NewsmagSmart sidebar
- NewsmagVideo playlist
- NewsmagPage templates
- NewsmagHomepage – How to build and set it
and only this modifications:
– in the index.php we put this snippet because we get errors “PHP Fatal error: Call to undefined function get_header()…. on line 6”:
if (function_exists('get_header')) {
get_header();
}else{
/* Redirect browser */
header("Location: http://theme.com/ ");
/* Make sure that code below does not get executed when we redirect. */
exit;
};
– and in htaccess:
/*CHRISTOPHER's CUSTOM MODS - 1.10.15 rev15A - (c) 2010-2015 Chris Simmons */
remove_action( 'wp_head', 'wp_generator' ) ;
remove_action( 'wp_head', 'wlwmanifest_link' ) ;
remove_action( 'wp_head', 'rsd_link' ) ;
remove_action( 'wp_head', 'feed_links', 2 );
remove_action( 'wp_head', 'feed_links_extra', 3 );
remove_action('wp_head','print_emoji_detection_script',7);
remove_action('wp_print_styles','print_emoji_styles');
function no_errors_please(){
return 'You appear to be up to no good. Please stop now!';
}
add_filter( 'login_errors', 'no_errors_please' );
/* Disable YOAST SEO Admin Bar. */
function mytheme_admin_bar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wpseo-menu');
}
// and we hook our function via
add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );
function delete_enclosure(){
return '';
}
add_filter( 'get_enclosed', 'delete_enclosure' );
add_filter( 'rss_enclosure', 'delete_enclosure' );
add_filter( 'atom_enclosure', 'delete_enclosure' );
function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
add_action('init', 'myoverride', 100);
function myoverride() {
remove_action('wp_head', array(visual_composer(), 'addMetaData'));
}
function dequeue_visual_composer_css() {
if (is_single()) {
wp_dequeue_style('js_composer_front');
}
}
add_action('wp_enqueue_scripts', 'dequeue_visual_composer_css', 1003);
Hello lbinternet1,
If you are using the Mobile Theme plugins fo your mobile mode, please notice that this do not render the Visual Composer shortcode and that’s why you will get these shortcodes. The mobile theme concept has been designed to have a very basic structure to improve the page speed loading on mobile. For more information about our mobile theme, please refer to our documentation here -> https://forum.tagdiv.com/the-mobile-theme/
Thanks for your message!
Hello nairolf2013,
First of all, please try to make a new clean install, without any untested plugins, leave just Visual Composer to active, clear all your caches and install only the plugins that come bundled with our theme and rule out the conflicting plugins and check the results. Please notice that this issue is not theme related and if your problem is still there after these, you will have to find some online solutions or you can contact the WordPress stuff because they should be able to provide a more accurate response.
Thanks for your understanding!
How to make the “big grid” element was had separate background?
or any part of the (new row in Visual Composer) had a different background color?
Different background in the video demo template:

Dark bg full with has “big grid” element
lighter bg has a different emenent with visual composer.
Where the admin template panel can I create new css styles?
Thank you for your answer.
Hi,
Thank you for your answer.
I just install TD Composer and now is no problem.
Hello,
The sidebar was not added to the mobile theme so that is a default behavior of the theme. The menu on the other hand should work so please disable all plugins except visual composer and the mobile theme, clear cache and reset cdn files if you use it. Then test the mobile menu again.
let us know if you still have trouble with the menu.
Thank you!
Hello ufosonearth,
Please ensure that you are using the latest version of the theme (Newspaper 7.2 with Visual Composer 4.12 and Social Counter 4.1) and try to use it without any untested plugins which might interact with the theme and create a lot of unknown issues.
Hope this helps and let us know how it goes!
Thanks.
Hi,
Unfortunately the page builder does not allow you to add classes on a specific title. You can only add an extra class to the row in visual composer and use it to target the block title by using your browser inspector: https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thank you!
Hello AndreBoni,
I have checked your website and I saw that you are using an older version of our theme. Please try to update it to the latest version of it, Newspaper 7.2 with Visual Composer 4.12 and Social Counter 4.1 via FTP because this is the surest method in this regard. Clear all your caches and then test it again and see how it will work. For more information about theme update, please consult the documentation here -> https://forum.tagdiv.com/install-via-ftp/
Thanks for your understanding!
Hello thehhh,
Please ensure that you are using the latest version of the theme (Newspaper 7.2 with Visual Composer 4.12 and Social Counter 4.1) in order to achieve best results in theme.
After this, if your problem is still there, please send us an email at contact@tagdiv.com with your log-in information (wp-admin) so we can further inspect your setup page. Also, please provide the link of this topic so we can easily identify you.
Thanks for your understanding!
Hi,
As I see from your images you use a big grid inside a tab element. You do not need to change the section id from the tabs settings to filter the block .You do it from block settings. Tabs are simple containers for other content. You cannot make them lead to specific categories. I’m still not sure exactly how you want it. Sorry if I’m not getting this right. You want to make the tabs a link so when you click on the fashion or sports tab to lead to a category? Won’t this make the tab’s content unavailable for the user? The section ID cannot be made into a link as the section ID is added automatically by visual composer and it cannot accept any other parameters.
Let me know if I did not get this right and provide more details so we can better understand how to help.
Thank you!
Hello bumpirides,
Please ensure that you have downloaded the latest version of the theme which has included all the required files and required plugins. -> Newspaper 7.2 and Visual Composer 4.12 and Social Counter 4.1. Please notice that the Visual Composer is part of our theme and the license of it come bundled with the theme packet and you will not have to buy any license for it. The update of the theme has been made only via FTP because this is the surest method in this regard. For more information about this, please consult our documentation here -> https://forum.tagdiv.com/how-to-update-the-theme-2/
Hope this helps and let us know how it goes!
Thanks for your understanding!
Hello Frydenborg,
Please notice that you can use the Tabs element from Visual Composer in your Widgets area if you are using the shortcode which is generated from VC and add it to your Text Block in Widget, like this -> http://screencast.com/t/xFGfZIbcB but please notice that it is possible to some additional customizations using the CSS for a better look.
Thanks for your understanding!
Hi,
please try disable all plugins except visual composer, clear cache and reset cdn if you use it. If the problem is not fixed this way, please contact us via email at contact@tagdiv.com and provide a link to your site and wp-admin so we can login and investigate this issue.
Please also include a link to this topic so we can identify you.
Thank you!
Hello,
Please make sure you have the latest version of the social counter and the latest version of the theme. FIrst update your theme by using this guide: https://forum.tagdiv.com/how-to-update-the-theme-2/ then update your plugins social counter and visual composer using this method: https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
After you do so, please switch users for these elements and try a different public one like ‘cocacola’ for example to see if the info is being pulled. Then if the info is there switch back to your own id’s
Let us know how it goes
Thank you!
Hi,
In visual composer columns you can place visual composer and theme elements. Each element has block settings which let you filter posts in different ways. Please check this guide: https://forum.tagdiv.com/block-settings-guide/
If the revolution slider element is what you are referring to, the slider has to be configured from the plugin itself and not through visual composer. For more details on how to create sliders and filter posts, please check the official revolution slider documentation.
Thank you!
Hi,
I have tested your site on multiple apple devices using safari but could not find the issue. Ads displayed properly on every one. If the problem comes back, please try to disable all plugins except visual composer, clear cache and reset cdn files. There could be a conflicting plugin causing this issue. If the problem reappears, check your browser console to see if any errors show up when adds disappear.
Thank you!
Hello gsmadvert,
Actually, if you want to use the ‘Homepage post’ element from Visual Composer to your category page, please notice that you will have to use the do_shortcode method in order to achieve as you wish. First of all, you will have to create the shortcode using the Visual Composer editor, like this -> http://screencast.com/t/7lbVJ3Fm2Sz -> http://screencast.com/t/VM5LKmMUv0i -> http://screencast.com/t/LO6nrg2cHM1o and the snippet of the code which has to be added in the corresponding category post style used by you are the following code ->
<?php echo do_shortcode('[td_block_homepage_full_1]'); ?>
For example, if you are using the category top posts style 1, you will have to add this code in td_category_top_style_1.PHP, like this -> http://screencast.com/t/txOSy4wD and the result you should see here -> http://screencast.com/t/ewi0BhnetwL
Hope this helps!
Thanks for your understanding!
Figured it out… I had to manually update the Visual Composer.
I installed the latest Visual Composer V.4.12 and of course updated to Newspaper 7. For some reason, when I add the Newspaper demo, I can’t edit anything. I can’t add any new TD blocks, they don’t show up at all, in Visual Composer and even the demo blocks aren’t editable for me, (Title, Color etc…)
Any idea why that is?
Thanks
Hello ,
I have bought Newspaper theme and visual composer is free with it.
I have searched in wordpress plugin panel, it is not available and also in the visual composer plugin page it is asking to buy it.
So how to install it?
It happens on various blocks. For example, when I add Block 20 to the homepage using Visual Composer, I specify that section to filter using the category “Lifestyle”. However, other categories (not subcategories, but random categories) appear under that section.
So, the filter should be Lifestyle, but world news articles are appearing.
Hi,
The characters you see are the text next and prev that visual composer adds. If you make them even smaller the text should be readable. You can try to choose another font icon using the font awesome 4 menus plugin and choosing different icons from their repository: https://astronautweb.co/snippet/font-awesome/
Then you can change the “content” code for the buttons by using this css:
.flex-direction-nav .flex-prev:before{
font-family:fontawesome!important;
content: '\f001'!important;
}
.flex-direction-nav .flex-next:before{
font-family:fontawesome!important;
content: '\f001'!important;
}
Thank you!
Hi,
Visual composer had an issue with WP 4.5 but it got fixed since then. you will have to update your theme to the latest version: https://forum.tagdiv.com/how-to-update-the-theme-2/ and then also update visual composer: https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
(links are from newspaper but the method is the same)
Thank you!
We purchased Newsmag – News Magazine Newspaper before 2,3 month now i update wordpress CMS then visual composer working stop at page why the problem please help .