- NewsmagInstall via WordPress
- NewsmagInstall via FTP
- NewsmagInstalling pre-built websites
- NewsmagUsing the theme translations together with WPML
- NewsmagHow to update a plugin
- NewsmagNewsmag theme support
- NewsmagCustom Post Type Support
- NewsmagImport / Export theme settings
- NewsmagHow to add icons in the menu
- NewsmagRequirements for Newsmag
- NewsmagNewsmag documentation
- NewsmagHow to update the theme
- NewsmagBlock settings tutorial
- NewsmagHow to update the WPBakery plugin
- NewsmagIntroduction
- NewsmagMain menu
- NewsmagFeatured image or video
- NewsmagAuthor card
Hello !
Please remove all of the untested plugins, clear all the caches, purge CDN files and check the results. Also, ensure that you are using the latest version of the theme installed via FTP way because this is the surest method in this case.
Thank you!
Hello !
In order to have acces to all demos you must have the tagDiv Cloud Library plugin installed: https://www.screencast.com/t/0xwfkFL8H8jt
Thank you !
Hello !
In order to import demos you have to go to Newspaper – Install demos tab like here: https://www.screencast.com/t/8JgdNdjPRr. Please take note that in order to have acces to all demos you have to have the tagDiv Cloud Library plugin installed: https://www.screencast.com/t/0xwfkFL8H8jt
Thank you !
Hello !
We are sorry for your inconvenience !
It is mandatory to delete all what was left from the older version before intalling this update. Overwriting the files would cause a lot of problems. If you are certain that you have installed the updates correctly by deleting all of the older versions and made a clean install from scratch please contact us via email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Also take a look at our documentation about installing the theme and plugins: https://tagdiv.com/how-to-install-plugins-and-update-plugins/ ; https://tagdiv.com/how-to-install-newspaper-theme/
The support hours are Monday to Friday from 08:00 am to 05:00 pm as you can see here too: https://www.screencast.com/t/QvpVOd73
Also please note that support team is answering the topics from latest to newest. So if you keep replying to your topic you only make the waiting time longer.
Thank you !
Hello,
I need help with activating AMP on my Newspaper theme. I enabeled the option on the theme pannel, but nothing seemed to have changed. I also installed the plugin TagDiv AMP but still not activated.
Your help is dearly appreciated.
Adnane
Since there is not an update on this, I decided to do my own.
SINCE THIS CANNOT BE DONE ON A CHILD-THEME, EVERY THEME UPDATE WILL REVERSE THIS
TagDiv, you can easily adapt this into a new update:
/wp-content/themes/Newspaper/includes/wp_booster/td_first_install.php
line 375 add
'xing' => '',
/wp-content/themes/Newspaper/includes/wp_booster/td_social_sharing.php
line 226 add
case 'xing':
return array(
'url' => 'https://www.xing.com/app/user?op=share;url=' . $page_permalink,
'title' => 'Xing'
);
break;
Since I don’t want to rerender all .less files but to get something displayed, you can use this css in your customcss up until tagdiv adapts this into their theme:
/* Adds the XING ICON for Sharing */
.td-icon-xing {
background-color: #005F5E;
width: 40px;
height: 40px;
margin-left: -13px;
padding-top: 14px;
}
.td-author-social > .td-social-icon-wrap > a > i.td-icon-xing {
padding-top: 0;
font-size: 15px;
width: auto;
min-width: 18px;
height: auto;
margin-right: 15px;
color: #fff !important;
}
What TagDiv needs to do:
Generate a new tagDiv.svg Unicode from IcoMoon for XING and put it there,
then:
font-icons.less (mobile and desktop version)
.td-icon-xing{ background-color: #005F5E };
Hi, I would like to know what is a good way for letting the user post their articles to my website, I notice there is an ‘author template’ in the theme, should I use multiple authors or guest post, and how to do? should I need to install another plugin?
Thanks
I installed the Nature Love demo, and modified the first image.
But:
1) The image does not fit the size of the structure, although I tried with very large images (4000px wide), I tried to change the proportions of the sides (example: 1366x768px). No way.
2) At a check with the Google Lighthouse tool all the images, even those normally present on the subject, have the problem Properly Size Image: Serve images that are appropriately-sized to save cellular data and improve load time. Is there a compatible tool that makes an image resize? Regenerate Thumbnails plugin didn’t solve the problem.
hello friends
i am a beginner in world press and just setting up my website, after installing my newspaper9 theme used default demo.
problem is Top menu social icons and search box icon in main menu not showing rite symbols, by default it is showing boxes. how to fix that ?
https://www.enjoymenttube.net/
HAVE A GOOD DAY.
After installing the Newspaper theme I found my load times for the landing page were at least 24-seconds and went as high as 40-seconds. That’s just unacceptable. So, I did some digging online for .htaccess tricks to decrease load time. Now my landing page load time is 4-seconds or less. Target pages are 3-4 seconds, and back to the main landing page from another page is 2-3 seconds. I’d still like to shave off another second or two, but it’s a far cry better than what I had before.
Pasted here is the total code I put into my .htaccess file. The impact was immediate and I’m very pleased. I thought others might find this useful. See below.
Blessings,
Tom Terry
—–
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]
</IfModule>
<IfModule mod_deflate.c>
<filesMatch “\.(js|css|html|php)$”>
SetOutputFilter DEFLATE
</filesMatch>
</IfModule>
# BEGIN Expire headers
<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault “access plus 5 seconds”
ExpiresByType image/x-icon “access plus 604800 seconds”
ExpiresByType image/jpeg “access plus 604800 seconds”
ExpiresByType image/png “access plus 604800 seconds”
ExpiresByType image/gif “access plus 604800 seconds”
ExpiresByType application/x-shockwave-flash “access plus 604800 seconds”
ExpiresByType text/css “access plus 604800 seconds”
ExpiresByType text/javascript “access plus 604800 seconds”
ExpiresByType application/javascript “access plus 604800 seconds”
ExpiresByType application/x-javascript “access plus 604800 seconds”
ExpiresByType application/x-font-woff “access plus 604800 seconds”
ExpiresByType application/x-font-svg “access plus 604800 seconds”
ExpiresByType image/svg+xml “access plus 604800 seconds”
</ifModule>
# END Expire headers
# TN START GZIP COMPRESSION
<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>
# TN END GZIP COMPRESSION
# TN START DEFLATE COMPRESSION
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE “application/atom+xml” \
“application/javascript” \
“application/json” \
“application/ld+json” \
“application/manifest+json” \
“application/rdf+xml” \
“application/rss+xml” \
“application/schema+json” \
“application/vnd.geo+json” \
“application/vnd.ms-fontobject” \
“application/x-font” \
“application/x-font-opentype” \
“application/x-font-otf” \
“application/x-font-truetype” \
“application/x-font-ttf” \
“application/x-javascript” \
“application/x-web-app-manifest+json” \
“application/xhtml+xml” \
“application/xml” \
“font/eot” \
“font/otf” \
“font/ttf” \
“font/opentype” \
“image/bmp” \
“image/svg+xml” \
“image/vnd.microsoft.icon” \
“image/x-icon” \
“text/cache-manifest” \
“text/css” \
“text/html” \
“text/javascript” \
“text/plain” \
“text/vcard” \
“text/vnd.rim.location.xloc” \
“text/vtt” \
“text/x-component” \
“text/x-cross-domain-policy” \
“text/xml”
</IfModule>
# END DEFLATE COMPRESSION
# TN START ENABLE KEEP ALIVE
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
# TN END ENABLE KEEP ALIVE
# TN – START EXPIRES CACHING #
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css “access 1 month”
ExpiresByType text/html “access 1 month”
ExpiresByType image/gif “access 1 year”
ExpiresByType image/png “access 1 year”
ExpiresByType image/jpg “access 1 year”
ExpiresByType image/jpeg “access 1 year”
ExpiresByType image/x-icon “access 1 year”
ExpiresByType image/svg+xml “access plus 1 month”
ExpiresByType audio/ogg “access plus 1 year”
ExpiresByType video/mp4 “access plus 1 year”
ExpiresByType video/ogg “access plus 1 year”
ExpiresByType video/webm “access plus 1 year”
ExpiresByType application/atom+xml “access plus 1 hour”
ExpiresByType application/rss+xml “access plus 1 hour”
ExpiresByType application/pdf “access 1 month”
ExpiresByType application/javascript “access 1 month”
ExpiresByType text/x-javascript “access 1 month”
ExpiresByType text/x-component “access plus 1 month”
ExpiresByType application/x-shockwave-flash “access 1 month”
ExpiresByType font/opentype “access plus 1 month”
ExpiresByType application/vnd.ms-fontobject “access plus 1 month”
ExpiresByType application/x-font-ttf “access plus 1 month”
ExpiresByType application/font-woff “access plus 1 month”
ExpiresByType application/font-woff2 “access plus 1 month”
ExpiresDefault “access 1 month”
</IfModule>
# TN – END EXPIRES CACHING #
# TN – BEGIN Cache-Control Headers
<ifModule mod_headers.c>
<filesMatch “\.(ico|jpe?g|png|gif|swf)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(css)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(js)$”>
Header set Cache-Control “private”
</filesMatch>
<filesMatch “\.(x?html?|php)$”>
Header set Cache-Control “private, must-revalidate”
</filesMatch>
</ifModule>
# TN – END Cache-Control Headers
# TN – ENABLE MOD PAGESPEED START
# COMBINE CSS, COMPRESS IMAGES, REMOVE HTML WHITE SPACE AND COMMENTS
<IfModule pagespeed_module>
ModPagespeed on
ModPagespeedEnableFilters rewrite_css,combine_css
ModPagespeedEnableFilters recompress_images
ModPagespeedEnableFilters convert_png_to_jpeg,convert_jpeg_to_webp
ModPagespeedEnableFilters collapse_whitespace,remove_comments
</IfModule>
# TN – ENABLE MOD PAGESPEED END
# END WordPress
I asked them for version 9.6 of the newspaper and when I tried to install it, I got the error:
The link you have followed has expired. Please try again. I used the correct installation file.
Can you help me please?
Thank you
What is the use of tagDiv Cloud Library? Is it important to install this plugin for the theme to function properly?
Same problem Upgrading to Newspaper Theme V 9.7.2
tagDiv Composer Version 2.4 | built on 25.04.2019 9:32 refuse to activate.
Refreshing the wp-admin/admin.php?page=td_theme_plugins – it keeps on showing Activate (not activated)
Refreshing the wp-admin/plugins.php is the same – it keeps showing Activated (not activated)
Tried the following:
Deactivating all other plugins
Deleted theme and all TD plugins
Installing from the Theme Welcome page
Deleted theme and all TD plugins
Tried installing Composer plugin from Zipfile – no joy.
Remedy please
-
This reply was modified 7 years by
MG Dev.
it did not work and other plug-ins are working properly and installing and updating properly. we have been using the previous version of the theme on a multisite environment and everything worked. can you help us pls. we are in a pickle and we invested alot of time and money to customize your theme to our needs. we dont want to throw this away.
It will not install. I tried activating it.
Can somebody help with this? Just installed this theme and it is not working.
I tried what was said in other posts on this forum.
Hi team,
So I’ve just done this update – followed your instructions by the book. I used the Envato plugin which I had installed previously so it was a simple click to intall the update another click to install the plugins. It seemed too easy. So the site layout is now broken. Please see attached. What have I missed here? And now how do I fix it. Update was rolled back so you can see my actual website here: https://wnihp.com.au/
How do I upload a screenshot so you can see it broken?
I used the templates and modified them if that helps you diagnose.
Thanks
I installed the Nature Love demo, and modified the first image.
But:
1) The image does not fit the size of the structure, although I tried with very large images (4000px wide), I tried to change the proportions of the sides (example: 1366x768px). No way.
2) At a check with the Google Lighthouse tool all the images, even those normally present on the subject, have the problem Properly Size Image: Serve images that are appropriately-sized to save cellular data and improve load time. Is there a compatible tool that makes an image resize? Regenerate Thumbnails didn’t solve the problem.
I have now installed Firefox in my smartphone and the four images are also missing. So it’s not just my browser.
I recently installed Newspaper. The site loads very slow. It usually takes around 24 seconds before the page will load. This is really bad. And I haven’t installed all 400 of my articles yet. I’m afraid it will be even slower after that. What can I do to decrease the load times?
Also, I get a lot of 503 errors when I try to do a new post.
Tom
could anyone help out with this ?
my newspaper theme refuse to install some of the demo
Hello !
You can install it very easy by following these steps:
1. Go to: Dashboard – Newspaper – Install Demos:
https://www.screencast.com/t/GkRtt989j
2. Select your demo and install it. If you want to see how it looks with content too just select the ” Include content ” button:
https://www.screencast.com/t/hTeSMbKGfr
*In order to have all the demos available you must have the tagDiv Cloud Library Updated and active.
Thank you !
Can someone contact me on private? I can pay if someone can help us re-convert the site on newspaper theme.
Thank you
Hi,
Maybe you recently installed a plugin, plugins are the number one cause of problems. Try as a quick test to deactivate all non-theme plugins, check if the problem is solved.
If it remains, we could take a look. Please send us an email at contact@tagdiv.com and provide admin login. Include a link to this topic in the email.
Thanks
Hi vald, is there a part in the documentation that shows how to manually install it? I am using a staging server.