- NewsmagChild theme support
- NewspaperChild Theme Support
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewsmagWhat’s included in Newsmag theme package
- NewspaperHow to Update the Newspaper Theme
- NewspaperWhat’s Included in the Newspaper Theme Package
- ApiThe Theme API
- NewspaperFlex Block Settings Guide
- NewspaperPrimary Category: Build a hierarchy for your website
- NewsmagCustom Post Type Support
- NewsmagInstall via WordPress
- NewsmagInstall via FTP
- NewsmagBreadcrumbs
- NewspaperBreadcrumbs
- NewspaperHow to Install Newspaper via FTP
- NewspaperHow to Install Newspaper via WordPress
Hi,
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv plugins, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
If the problem persist, please provide some more details and some screenshots.
Let me know the results!
Thank you!
Hi,
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv plugins, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Let me know the results!
Thank you!
Hi,
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv plugins, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Also please install a ssl plugin and check the results!
Let me know the results!
Hello!
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again. We have tested this option on our end and everything worked out fine.
Thank you !
Hello!
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again. We have tested this option on our end and everything worked out fine.
Thank you !
Hello!
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again. We have tested this option on our end and everything worked out fine.
Thank you !
Hi,
My blog page and single blog post pages are not working.
Here is the link: https://guardingtheguards.com/blog/
My issue is that it the blog page just shows one article (rather than any sort of grid of multiple articles). It seems to ignore all settings. Both the blog page setting and all the blog related settings in the Theme panel.
I confirm I am using a child theme but I have not overwritten any files. I think this may be related to the issue though as if I switch from child theme to Newspaper my blog page changes.
Thanks
Hello,
At our company, we are setting up our blog with theme Newspaper, child theme iGossip…
I may have found a bug. Is it something I modified or a bug from you, tagDiv?
On a single post page, when I set a featured image with a photo in portrait orientation, i.e. with height > width, I see image is positioned top on the top of the box. And would like the image to be “center center”.
This is because of a CSS rule within the HTML code typed like this :
<style>
/* custom css */
.tdi_23_553 .tdb-featured-image-bg{
background: url('https://blog.cadeau-maestro.com/wp-content/uploads/2019/10/tasses-putain-de-tasses-x5.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center center%;
padding-bottom: 640px;
} ...
I assume the % character should not be here.
Can you investigate? If because of you, may you correct it in next patch? If because of me, can you give me a hint on which file I should change?
I managed to bypass this behavior setting up a custom CSS. But it isn’t very clean.
.tdb-featured-image-bg {
background-size: cover;
background-position: center center!important;
}
Hope you’ll be able to help me.
Thank you.
Best regards,
Romain Bourgin, webdeveloper at Cadeau Maestro
I’m not sure which demo. The default template upon installation. The same one I’ve had 3+ years. I don’t have screenshots of the old site – I just know the font is now smaller, with less line spacing, more condensed and doesn’t read well. I can send you the old css sheet I’ve restored, with the correct font, so you can figure out on your end what you changed so I can change it back in my child theme.
Hi,
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv plugins, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Make sure that you have a good host, also if you use a plugins like Wordfence please set it in learning mode.
If there is still a problem, you can send us an 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.
Let me know the results!
Thank you!
Hi,
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv plugins, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
If there is still a problem, you can send us an 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.
Let me know the results!
Thank you!
Hi! Good work with this theme.
I have a problem ’cause I couldn’t change the time delay of Newsticker at home. I read at forum that it’s possible to change it searching in tagdiv-theme.js the line in which appears this tag: 3E3.
But I’m looking for it in this file and hadn’t find anything similar.
I’d follow your comments and check this photo (https://content.screencast.com/users/andrei_tagdiv/folders/Jing/media/8f7bd7f0-04cd-4fb6-b66e-26ffdaec494a/2017-10-03_1302.png) but in my theme folder, JS folder is inside INCLUDES folder, not at root of theme folder. And there is no code similar than your posts explains.
This is my code:
/* global jQuery:{} */
/**
* tagdiv-theme.js - the main theme js
*/
/**
* tagdivSearch.js - handles the search events
*/
;var tagdivSearch = {};
( function() {
'use strict';
tagdivSearch = {
_is_search_open: false,
_$body: undefined,
_$dropDownSearch: undefined,
init: function() {
tagdivSearch._$body = jQuery('body');
tagdivSearch._$dropDownSearch = jQuery('.td-drop-down-search');
// hide the drop down if we click outside of it
jQuery(document).on('click', function(event) {
if (
tagdivSearch._is_search_open &&
'td-icon-search' !== event.target.className &&
'td-header-search' !== event.target.id &&
'td-header-search-top' !== event.target.id
) {
tagdivSearch._$dropDownSearch.removeClass( 'td-drop-down-search-open' );
tagdivSearch._$body.removeClass( 'td-search-opened' );
tagdivSearch._is_search_open = false;
}
} );
// show and hide the drop down on the search icon
jQuery('#td-header-search-button').on('click', function(event) {
event.preventDefault();
if ( tagdivSearch._is_search_open ) {
tagdivSearch._$dropDownSearch.removeClass( 'td-drop-down-search-open' );
} else {
tagdivSearch._$dropDownSearch.addClass( 'td-drop-down-search-open' );
}
tagdivSearch._is_search_open = !tagdivSearch._is_search_open;
});
// show and hide the drop down on the search icon for mobile
jQuery('#td-header-search-button-mob, #tdb-header-search-button-mob').on('click', function(){
tagdivSearch._$body.addClass('td-search-opened');
var search_input = jQuery('#td-header-search-mob');
/**
* search input autofocus
* @note: the autofocus does not work for iOS and windows phone devices ..as it's considered bad user experience
*/
setTimeout( function(){
search_input.focus();
}, 1300);
});
//close the search
jQuery( '.td-search-close a' ).on( 'click', function(){
tagdivSearch._$body.removeClass( 'td-search-opened' );
});
}
};
} )();
jQuery(document).ready(function () {
'use strict';
var $body = jQuery('body');
// handle open/close mobile menu
jQuery('#td-top-mobile-toggle a, .td-mobile-close a').on('click', function(){
$body.toggleClass('td-menu-mob-open-menu');
});
// move trough all the menu and find the item with sub-menues to atach a custom class to them
jQuery(document).find('#td-mobile-nav .menu-item-has-children').each( function(i) {
var $this = jQuery(this);
$this.addClass('td_mobile_submenu td_mobile_elem_with_submenu_' + i);
// click on link elements with #
$this.children('a').addClass('td-link-element-after');
$this.on('click',function(event) {
/**
* currentTarget - the li element
* target - the element clicked inside of the currentTarget
*/
var $eventTarget = jQuery( event.target );
// html i element
if ( $eventTarget.length &&
( ( $eventTarget.hasClass('td-element-after') || $eventTarget.hasClass('td-link-element-after') ) &&
( '#' === $eventTarget.attr('href') || undefined === $eventTarget.attr('href') ) ) ) {
event.preventDefault();
event.stopPropagation();
jQuery(this).toggleClass('td-sub-menu-open');
}
});
});
tagdivSearch.init();
});
What should I do to change the time delay of this widget?
I have Newspaper 9 theme version. It’ll changes in X version?
Thanks to all!
Hi,
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv plugins, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Make sure that you have a good host, also if you use a plugins like Wordfence please set it in learning mode.
Let me know the results!
Thank you!
Hi,
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv plugins, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
When tagDiv Composer is not working -> https://forum.tagdiv.com/tagdiv-composer-not-working/
If you use a plugins like Wordfence please set it in learning mode.
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Let me know the results!
Thank you!
Hi,
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv Composer, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
If there is still a problem, you can send us an 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.
Thanks
Hello!
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again. We have tested this option on our end and everything worked out fine.
Make sure that you have accomplished all the system requirements as in our documentation here: https://forum.tagdiv.com/requirements-for-newspaper/
Thank you !
Something about the paragraph font changed with the latest update for the default template. Not sure what it was, but it looks different (and not as good). For now, I’ve reverted back to an old style.css, but I need to move to the old code to the child theme for future updates. What exact style changes were made with this new update and what exact code do I need to put in my child/custom style sheet to make it like the older code? Thanks.
Hello!
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again. We have tested this option on our end and everything worked out fine.
Thank you !
Hello!
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again. We have tested this option on our end and everything worked out fine.
Thank you !
Hi,
I’ve made some tests and for me the center align on image caption is working
-> https://i.imgur.com/ObEhaUL.jpg -> https://i.imgur.com/rI2o4Gd.jpg
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv Composer, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you!
Is there a way to change the titles of the predefined footer content or take a copy of the theme file necessary and place in my child theme instead?
Or how do I build the same thing as a page and link to from the theme options – there is no ‘popular posts’ WYSIWYG block? and the client wants one of the ‘popular category’ items removed from the list too?
Hello!
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again. We have tested this option on our end and everything worked out fine.
Make sure that you have accomplished all the system requirements as in our documentation here: https://forum.tagdiv.com/requirements-for-newspaper/
Thank you !
Hi,
This can be achieve only if you are not using the child theme, if you are using a child theme, then is need to make some changes in the theme core to can achieve this.
Changes that need to be done ->https://prnt.sc/q5jvtz add “!”before is_child_theme.
Thank you!
Hi,
Make sure that is not a firewall security from host or some Wordfence.
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv Composer, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
If there is still a problem, you can send us an 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.
Thank you!