Hi,
I checked the page and noticed it’s using Ajax next/previous pagination, as it’s a category page. I’d recommend switching to numbered pagination, as it’s better for SEO and ensures each page loads properly from the top.
With the current setup, the only solution without modifying custom code (which isn’t recommended) would be to reduce the number of articles per page. This way, you’d have two rows instead of three and all results would be visible.
Hi,
Is very important when you update the theme to make sure that all theme plugins will be installed and updated. If those are not automatically installed, then they need to be installed from Newspaper > plugins.
If you can make a staging and update the theme there, we can take a look and see if there are any problems with teh update.
If everything looks correct when you are logged in, it is likely related to the cache; clear the cache, and if you are using a CDN/Cloudflare, purge it.
Thank you!
Hi,
I just checked that link on Google and now it seems to be ok https://i.imgur.com/2sbF3DU.png without the /tagdivofficial
Usually, this situation appears when teh social networks are not set with the full link (https://www….) Please check in the theme panel > social > social networks – https://i.imgur.com/YnsOKLz.png, make sure that if you have a social, there is the complete link to that social. Next step will be to check on pages and cloud templates, the social networks, which are set using tagDiv Composer and not the theme panel settings, but the link should also be the full – https://i.imgur.com/aajksb1.png (set the full link)
Hi,
I do not follow. Could you please provide some more details?
Do you want to install a mobile plugin?
If you want the exact same content on mobile as on desktop, there is no need to create mobile pages or use the tgDiv mobile theme plugin; the desktop version is responsive and can be used.
Currently, you have the tagdiv mobile theme plugin and this is used.
1. Responsive Desktop Version – The default responsive layout that adjusts to mobile screens using tagDiv Composer – https://i.imgur.com/apZQZ0o.png
2. Mobile Page/Template – A custom mobile layout that can be created using the tagDiv Composer.
3. tagDiv Mobile Theme Plugin – A separate mobile theme that provides a dedicated mobile experience but is limited in edits and changes.
Note: When the tagDiv Mobile Theme Plugin is activated, it takes priority and will be displayed on mobile devices. If it’s not active, the system will check for a mobile page/template built with tagDiv Composer. If neither of these is in use, the responsive desktop version will be shown by default.
Thank you!
Unfortunately, we do not have an estimated timeline at the moment. Our developers are currently working through a list of fixes, and once these are completed, the update will go through testing before being officially released.
If our manager determines that an earlier release is necessary, an update may be issued with the fixes completed so far. However, this decision is still pending, and at this time we do not have any additional information regarding the update.
Hi,
If you want to use tagDiv Composer and cloud templates, you need to install the plugin tagDiv Shop – https://forum.tagdiv.com/tagdiv-shop/
In case you are using the Bakery, you should use the WooCommerce shortcodes, not the cloud templates, because there can be problems when those 2 are used.
Thank you!
Hi,
The system status is OK. What you should do is resolve the issue with the image that was set to load in the cloud header menu as a background image. The image has been deleted from the media library, but it is still linked to some rows, which can cause loading speed issues.
Please follow my example: edit the homepage, select the header menu row, and check the CSS tab. Where the background image is set, click “Remove,” then save your changes – https://prnt.sc/iZ-izfb-0jyd
Hi,
That appears to be a section from a single CPT template.
I’m not entirely sure what you’re trying to achieve, could you please provide a bit more detail?
Hi,
Regarding Google AdSense, could you please let me know how it’s implemented on your site using the Newspaper Theme? Also, what message or status are you currently seeing in your AdSense account?
For the Google search results issue, you’ll need to use Google Search Console and make sure your website is properly indexed.
If you’ve recently changed your permalinks, it’s important to request reindexing in Search Console so Google can update your pages accordingly.
– https://developers.google.com/search/docs/crawling-indexing/ask-google-to-recrawl
– https://support.google.com/webmasters/thread/133430219/how-can-i-get-google-to-re-crawl-my-page-asap-besides-request-indexing-in-google-search-console?hl=en
Thank you!
Hi,
First, please make sure that the theme plugins have not been modified. To do this, go to Plugins and delete all currently enabled TagDiv plugins. Then go to Newspaper → Plugins and reinstall the plugins you just removed. This will ensure you are using the correct versions and that no changes have been made to them.
Next, test the website using only the TagDiv plugins to see if the issue persists. In some cases, another plugin may be interfering with the theme.
If the problem still occurs, please contact us via email at contact@tagdiv.com and provide access to your wp-admin as well as cPanel or FTP. We will check the issue as soon as possible.
Thank you!
Hi,
What’s happening here is that Google Analytics 4 Enhanced Measurement is automatically tracking page views, while the Newspaper Theme also triggers its own tracking when content is loaded via AJAX. Since infinite scroll relies on AJAX, both systems fire a page_view, which results in duplicates.
The simplest and fastest solution is to disable GA4 Enhanced Measurement for page changes.
If you prefer to keep Enhanced Measurement enabled, you can instead filter out the AJAX hits, for example by excluding events where:
the parameter frm=1 or _fv=1 is present, or the URL contains tdb_ajax
This will help prevent duplicate page_view counts in reports.
Thank you!
Hi,
For this, I will need a link to the website to check it out, but here are the places where that text can come from:
– theme panel > header > logo & favicon – https://i.imgur.com/kE9CYZH.png another situation, if it is a cloud header, edit the header with tagDiv Composer, select the logo, and look for the logo text.
Hi Scott,
I understand. The issue is that the update from Nesaper 12.7.4 to 12.7.5 does not include any changes that should affect the website’s speed.
What I recommend is addressing the problem with the image that has been set as a background on the site but cannot be found: https://i.imgur.com/xWXB1KQ.png
It appears this image may be used as a background for the header menu—likely on the main header, sticky header, and possibly the mobile header as well.
I see, in this case you can use this custom css:
body .td-image-wrap {
pointer-events: none;
}
Set the code in Theme Panel → Custom Code → Custom CSS.
This will ensure that when a user clicks on an image, nothing happens, but clicking on the title will still link to the article.
For a more general solution that prevents clicks on the entire block, you can use the following code:
body .td-module-container,
body .td_module_wrap {
pointer-events: none;
}
Hi,
The way is now teh link needs to be manually added, also on images, there is no option to set dynamic links. Only the blocks and grid elements have the option to display and link to the latest articles/CPT/potcases.
Hi,
There is no need to do anything; the responsive version is automatically used if the tagDiv Mobile theme plugins and amp are disabled.
Also, if you want, the mobile theme version can also be edited on elements, per some options, those options will have a bar in front of the text https://i.imgur.com/WC9l1cJ.png
Hi,
For the call to action element, you should use the second method I mentioned use the bold HTML tags https://i.imgur.com/3gC0RSY.png you can see here how b tags can be used https://www.w3schools.com/html//tryit.asp?filename=tryhtml_formatting_b
Thank you! 😀
Hi,
No, please share this information only via email, as the forum is open and visible to all registered users. You can contact us at contact@tagdiv.com and provide access details there.
Thank you!
Hi,
To use the new license on clubtaxila.com and bookmasters.in, please follow these steps for each site separately:
– log in to the website.
– go to Newspaper > System Status.
– click “Reset Key” to remove the current license from the domain.
– after that, enter the new license key to activate the theme.
Let me know if you need any help!
Hi,
A license key can be used on a maximum of two domains. Once it has been activated on both, you may see a temporary restriction message that prevents assigning or unassigning the key for a certain period of time.
If you’ve obtained a new license key and want to replace the old one, please go to Newspaper > System Status in your dashboard and click the Reset Key button. Afterward, you can activate the theme using your new license key by following this guide:
https://forum.tagdiv.com/newspaper-6-how-to-activate-the-theme/
Hi Bernd,
We can certainly take a look. However, we can’t promise a specific outcome, as the plugin hasn’t been officially tested with our theme. We’re also not familiar with the plugin’s settings or how it’s intended to function in this setup.
Hi,
Unfortunately, I haven’t received any message from our developers, but I see this is on the list for the next theme update.
Thank you for your understaing!
Hi,
I’m not sure if I understand. Could you please clarify? The users should get to the article only if they click on the article title, but when they click on the image, nothing should happen?
Hi,
I checked all articles from the page https://filderanzeiger.de/tagdiv-support/ and all of them have a featured image set 🙁 Normally, one of those 2 articles should not have an image because different classes will apply to the featured image – https://i.imgur.com/JzckjCw.png – https://i.imgur.com/6SwPurl.png, only then can I see what code can be used.