- NewspaperAutoptimize Plugin – install and configuration
- NewspaperCache plugin – install and configure
- NewsmagInstall via WordPress
- NewsmagInstall via FTP
- NewsmagInstalling pre-built websites
- TutorialsHow to install Revolution Slider
- NewspaperInstalling Pre-built Websites
- NewspaperHow to Install Newspaper via FTP
- NewspaperHow to Install Newspaper via WordPress
- TutorialsHow to Install bbPress forum
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewspaperHow to edit modules for Flex Block X
- NewspaperWooCommerce: Happy “Add to Favorites!”
- NewspaperWoo Brands
- NewspaperStripe Setup
- NewspaperModal Popup
- NewspaperPayPal Setup
- NewspaperFlex Block Settings Guide
- NewspaperHow to setup the Contact Page
- NewspaperAdd Cryptocurrency Price Ticker Widget
1- I wonder where I can get ” Tabs with icon”. I can obtain and install “Tabs” as it works wonderful.
2- Is there a way where I can customize “Bog Grid 9” ??? . I need to make it much shorter ( about 1/3 of the current height ) AND I would like to have more than 4 panels. like 9 or 10. Any suggestion??????
Thanks
working on a test site at this link http://newsmag7beta.wpengine.com for some reason the big grid is not showing up.fresh install using health blog demo layout, using home page templ
plwasw advise
Hello,
Since 2-3 weeks , my wordpress comment system and disqus plug’in does not working.
-I just updated my theme 7.1 to 7.1.1 to fix this problem ( i thought might fix it) but it didn’t.
-I turned on and off wordpress comment from settings ,
-I have checked theme settings to , if it is not enabled . ( it is enabled )
-I have uninstalled and reinstall plug’ins
Those steps didn’t work.Right now i have no comment system.
+ I also installed facebook comment system , which was working like a charm about 1 weeks or so , it does cause some problem while i was posting url’s on my facebook page which i couldn’t see short information about url links .So i have removed it.
As Js composer team have integrated font-awesome-CSS, user don’t need to install Font Awesome 4 Menus plugin. Installing this plugin adds unnecessary one more CSS to you your code along with one external CSS in performance result.
I have almost activate mobile theme bua not shown on mobile devices
Hi,
Since we updated to newsmag 3.0 I can not get the mobile theme to work proberly. The screen turns blue after 1-2 seconds.
I have tried to reinstall the theme according to your documentation: https://forum.tagdiv.com/newsmag-how-to-update-the-theme/
I does not help! Any suggestions why?
Regards,
Thanks a lot, it workssss…..only delete old version of VC and installed the js_composer included in the themeforest package.
Regards
my website is kaidenworld.com .
I have recently installed say2 what demo of newspaper 7 and I am unable to change some basic colour schemes. Like from theme panel i have changed theme accent colour and header colour to default but it is still showing the theme colour. I have already cleared cache and all but still. Please help 🙁
Hi
Yes you can follow the above steps to update the theme. However as a security measure make sure you do a full backup to your current wp-install: https://codex.wordpress.org/WordPress_Backups
Thanks!
Hi,
@jydnyc I’m glad you have figured out and solved this!
@billg76 Please check the installation guides(ftp and wordpress) – https://forum.tagdiv.com/install-via-ftp/ – https://forum.tagdiv.com/install-via-wordpress/
If you install the theme via wordpress please unzip the zip file that you download from themeforest, it contains Newspaper-tf folder that you can find the theme zip file, the theme plugins and so on – https://forum.tagdiv.com/whats-included/
So please upload this file – http://screencast.com/t/qw0riTrec
Thanks!
I reinstalled the theme and it worked the second time.
Thanks all
good day, i recently purchased your theme and after installation, the images are not displaying. I did a few regenerate and yet, images are not showing,please i need a solution
Hi, could I use these step in the document to update without losing any custom layout and configuration related to theme?
————————
Step 1 – Deactivate the current “Newspaper” theme from the Appearance > Themes section by simply activating a different theme. Once you activate a different theme, delete the Newspaper theme. Don’t worry, your content will not be lost.
Step 2 – Get the “Newspaper.zip” file from your new Themeforest download (Installable WordPress file only). If you downloaded the “All Files & Documentation” from Themeforest, then you need to unzip the archive file you received, the Newspaper.zip will be inside it.
Step 3 – Go to Appearance > Themes, choose Add New Theme, Upload the “Newspaper.zip” and click on the “Install Now” button.
Step 4 – After your upload is finished choose Activate the theme.
Step 5 – Update the plugins. The theme required and recommended plugins are included in the theme package inside the ../Newspaper-tf/plugins folder.
————————
Thanks.
Hi, I occasionally get emails of theme updates. It leads to a download page where new updated theme can be downloaded. If I upload this ‘new’ theme, all my earlier theme setting are lost and I have to start form the scratch. Just like when I installed the theme for the first time.
Am I missing anything here? How to update your theme without losing your customization and theme panel settings. Please help.
regards
Satinder
I installed the Visual Composer, but it does not show up on pages.
Wish I could send you a screen-shot of my WP page…
Hi,
I recently purchased this Newspaper7 theme and installed on WPEngine page. The theme loads fine, but when it is trying to get the default content, it gives the issue of tagDiv Importer error and does not load the default content.
Note: It only happens for default template, other templates work fine. Can you let me know where or what to do to resolve this issue?
Thanks in Advance.
Everything else works as expected.
Problem is, on a fresh WP install with any other theme, the use of ANY shortcode in a page maintains the basic elements of a page template (title, body). Searching for ANY shortcode to decide whether or not VC is being used is a bug. To go by your own documentation:

If VC is used, the page title will not show. I didn’t use VC and the page title didn’t show. You see where I’m going with this?
Whatever conditional is being used to check for a shortcode is not limited to a regex for VC only shortcodes and is tripping on any and every shortcode available. It essentially ruins the shortcode feature of the whole page system in WP. It modifies core behavior in a round about way that doesn’t actually change core code.
I can edit this myself, sure, and I can even keep maintaining it across updates, but that’s just a band aid for the bigger problem. This isn’t a localized issued. Also not a difficult fix… ** correction. It’s not a difficult fix for you because you know the VC methods used and how they cross with NP methods. Looking at the code, it looks like you’re depending on VC’s own internal array of shortcodes and then not filtering through them at all aside from adding the leading bracket to the shortcode names. Literally checking if it’s empty or not and nothing else…
`
if (is_array($td_page_builder_short_codes) && !empty($td_page_builder_short_codes)) {
foreach ($td_page_builder_short_codes as $short_code_name){
// we have to add [ before the shortcode name, else it may target simple words that match with the shortcode name
$short_codes_buffer[] = ‘[‘ . $short_code_name;
}
}
if (!empty($short_codes_buffer) && td_util::strpos_array($post->post_content, $short_codes_buffer) === true) {
$td_use_page_builder = true;
}
`
If it’s not going to be fixed, then the above screenshot shows text that must be changed, because ALL I’m wanting is for the software to do what it says there; if VC is used, no title, if VC is not used, page title. Simple.
Thanks.
-
This reply was modified 10 years by
Bryson T.
I just bought and tried to install the Newspaper Theme but kept getting an error message as follows…
“The package could not be installed. The theme is missing the style.css stylesheet.”
Hello killerkhan,
I have checked your website and I saw that big white space. Also, I have checked your source page and I saw that you are using a lot of untested plugins, including a youtube embed and etc. which are not tested with our theme and which might cause many problems in theme. I have noticed that this plugin adds some classes and custom CSS in the theme which damage the layout and that’s why that white space it appear. Please try to disable all the active plugins, leave just Visual Composer to active, clear all your caches, purge CDN file if you are using the CDN system and install only the plugins that come bundled with our theme and rule out the conflicting plugins. Plese keep in mind that all of these plugins which you are using on your side are not tested with our theme and we have no idea about the theme behaviour with these and also, we cannot provide support for those untested plugins, sorry!
Thanks for your understanding!
Hi,
Please install and activate the Social Counter plugin provided with the theme – http://screencast.com/t/DvsKFDenO4 and the Social Counter block will appear on your page. If you don’t want to use it, just edit your homepage and remove it – http://screencast.com/t/I9A2ZBmU
If you want to use it please check this guide and configure it – https://forum.tagdiv.com/tagdiv-social-counter-tutorial-2/
I also checked your post and the article top ad appears properly – http://screencast.com/t/YhcfMNDT
Thanks!
Hello all,
I want to underline the fact that our theme is in constant development and we working hard that it to be updated with the latest version of plugins. So, I suppose that you are using the latest version of WordPress which is 4.5.2 and if you are not using the latest version of the theme, you will not bring the best results here. Also, you will have to use the latest tested version of Visual Composer (4.11.2) with the theme because if you are using an older version of it, also, you will not bring the best results and the Composer will not work. So, if you are using an older theme version of the theme and if you not planning to reinstall/update the theme to the latest version, then you will have to downgrade the WordPress and Visual Composer from an older version if you want that your theme to work as expected. Please keep in mind that for every time when Visual Composer will release a new version, we will release a new update with the latest version of the theme which is adjusted to this version of a plugin, for better results. So, if you have updated these plugins to the latest version of them and if your theme is not updated to the latest version of it, the chances are high to not working as properly.
Please keep in mind that we cannot offer support for older version of the theme, but only for the latest, because this area is in constant development and we have to keep up technologies advanced.
I hope that you understand this!
Thanks for your message!
Hi
I’ve checked your site again but theme’s update is not made properly. Try to deactivate all plugin except Visual Composer then update the theme again following the ftp method: https://forum.tagdiv.com/newsmag-install-via-ftp/ clear ll caches, purge cdn files then test again.
Let us know how it goes and if the problem persist please send us an email at contact@tagdiv.com with your login credentials and also give us ftp access. We will inspect this issue as soon as possible,and will get back to you with an answer, also include a link to this topic.
Thanks!
hello, I do not speak English, I do this with google translator, I need your help, I bought this theme wordpress newspaper, I feel great, I really like, but I have a problem, need to increase the filter 7 days for posts popular, since my news sites need to place a block of “the most viewed this month” but only allows me to have “become popular last 7 days” I need to have “popular posts last 30 days.”.
My website is https://www.bibliatodo.com and theme is installed here: https://www.bibliatodo.com/NoticiasCristianas/
The way the options used to work (can’t say for sure which version it worked in last as it’s been a while), you had to actually use VC for the page title to stop showing up. Now in 7.1.1 I put in a CF7 shortcode on a page and the sidebar and page title disappears.
I know the theme supports CF7 as a VC element but one does not equal the other!
Now I can’t have a page with a shortcode from an entirely separate plugin in it without also loading VC css/js, which I don’t want.
Tested with an all text page by inserting and removing the shortcode for the default CF7 form [contact-form-7 id="1295" title="Contact form 1"] at the end of the page body. When the shortcode is there, I get no page title or sidebar (in spite of Page Settings), and when it’s not there, the page has a title and sidebar. I also tested on my production site and a fresh install with nothing but Newspaper and VC installed, same issue.
Need a fix please.
Obviously, if the use of VC triggers page title and sidebar inclusion, then it shouldn’t be checking for any shortcode, it should be checking the beginning of a VC row and ONLY that shortcode. If it’s there, change stuff, if not, stop breaking stuff.
I have the same problem, and like Go Angle, Im not planning reinstall and re-customising the whole site, It´s a lot of work.