- NewspaperHow to update a plugin
- NewspaperHow to update the WPBakery Page Builder plugin
- NewspaperHow to Update the Newspaper Theme
- NewspaperSingle Post Excerpt
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperCredit System
- NewspaperHow to use the Bing Maps API
- NewspaperModules Builder in Newspaper Theme
- NewspaperCreate a frontend submission form
- NewspaperCustom Fields Support
- NewspaperFlex Block Settings Guide
- NewspapertagDiv Opt-In Builder
- NewspaperHow to use the YouTube API
- NewspaperDefault Category Settings
- NewspapertagDiv Composer Tutorial
- NewspaperHow to Set the Image Avatar
- NewspaperUnique Articles
- NewspaperFacebook Share
- NewspaperCache plugin – install and configure
- NewspaperFeatured Image, Video or Audio
Hi,
Please check the settings from theme panel -> https://www.screencast.com/t/H7CFzAKVw7 set the option with tagDiv Composer-> https://www.screencast.com/t/OAoAK9oUu make update on post -> https://www.screencast.com/t/vcQoLkQByxc now check the date of that post -> https://www.screencast.com/t/sKbLrp1jz also you can can sort after modified date -> https://www.screencast.com/t/VSePr63B
Also the modified date on post can be set with tagDiv Composer on single post template -> https://www.screencast.com/t/eYkeLqbCqV -> https://www.screencast.com/t/3qCSo9Nxtt
Please notice that your support period expired ( Supported until: 2017-06-14 ) we suggest you extend your support if you still need our help with your website.
Hope this will help you!
Thanks.
This version of the tagDiv Mobile Theme plugin is not supported by the current activated theme!
Please make sure you’ve updated the theme properly!
I have the latest version of theme 9.7.1 installed
Hi,
If this changes can be made only in theme files, then you need to do it for the moment manually on each update, sorry!
Thank you for your understanding!
Hi,
Please make sure that you made the update like in our documentation -> https://tagdiv.com/update-newspaper-theme/ if you chose to make it via FTP make sure that you delete the old version of theme before you set the new one.
If there are still a problem, please remove/delete the theme and reinstall it via FTP.
Thank you!
Hi all,
In that case, you should not make an overwrite to your old files sorry! You need to completely remove your old folder and add it the new one. You need to make a clean install from scratch to achieve good theme results. Please check the B section from here -> https://forum.tagdiv.com/how-to-update-the-theme-2/ and strictly follow the steps from there if you want to achieve better theme results.
Thank you!
Hi,
Please make sure that you made the update like in our documentation -> https://tagdiv.com/update-newspaper-theme/ if you chose to make it via FTP make sure that you delete the old version of theme before you set the new one.
If there are still a problem, please remove/delete the theme and reinstall it via FTP.
Let me know how it works!
Thank you!
Update: The plugin is active now, but the warning stays in place…
Hi there,
I get this warning:
“This version of the tagDiv Mobile Theme plugin is not supported by the current activated theme!
Please update your theme!”
Everything is up-to-date, but I still cannot activate the Mobile Theme Plugin.
Hi
I have modified a Module 8 child to pull through custom fields. The code is –
<?php
class td_module_8 extends td_module {
function __construct($post, $module_atts = array()) {
//run the parrent constructor
parent::__construct($post, $module_atts);
}
function render() {
ob_start();
$title_length = $this->get_shortcode_att(‘m8_tl’);
$modified_date = $this->get_shortcode_att(‘show_modified_date’);
///print_r($this->post->ID);
$choosen_post_functionality = get_field( “choose_post_functionality”, $this->post->ID );
// For Element One
$title_lo = get_field( “title_lo”, $this->post->ID );
$title_link_lo = get_field( “title_link_lo”, $this->post->ID );
$media_name_lo = get_field( “media_name_lo”, $this->post->ID );
$media_link_lo = get_field( “media_link_lo”, $this->post->ID );
$publish_date_lo = get_field( “publish_date_lo”, $this->post->ID );
//$abstract_excerpt_lo = get_field( “abstract_excerpt_lo”, $this->post->ID );
$abstract_excerpt = get_post_field(‘post_content’, $this->post->ID);
// For Element Two
$title_lt = get_field( “title_lt”, $this->post->ID );
$title_link_lt = get_field( “title_link_lt”, $this->post->ID );
$author_name_lt = get_field( “author_name_lt”, $this->post->ID );
$media_name_lt = get_field( “media_name_lt”, $this->post->ID );
$publish_date_lt = get_field( “publish_date_lt”, $this->post->ID );
$citations_title_lt = get_field( “citations_title_lt”, $this->post->ID );
$citations_link_lt = get_field( “citations_link_lt”, $this->post->ID );
//$abstract_excerpt_lt = get_field( “abstract_excerpt_lt”, $this->post->ID );
?>
<div class=”<?php echo $this->get_module_classes();?>”>
<?php if($choosen_post_functionality == “ext_lo_one”) { ?>
<div class=”item-details”>
<?php //echo $this->get_title($title_length);?>
<h3 class=”entry-title td-module-title”>” rel=”bookmark” title=”<?php echo get_the_title( $this->post->ID );//$title_lo; ?>”><?php echo get_the_title( $this->post->ID ); //$title_lo; ?></h3>
<div class=”td-module-meta-info”>
<?php //if (td_util::get_option(‘tds_category_module_8’) == ‘yes’) { echo $this->get_category(); }?>
<?php //echo $this->get_author();?>
<span class=”td-post-author-name”>“><?php echo $media_name_lo; ?> <span>-</span> </span>
<?php //echo $this->get_date($modified_date);?>
<span class=”td-post-date”><time class=”entry-date updated td-module-date”><?php echo $publish_date_lo; ?></time></span>
<div class=”td-post-content” style=” margin-top: 5px; “><?php echo $abstract_excerpt; //$abstract_excerpt_lo; ?> </div>
<?php //echo $this->get_comments();?>
</div>
</div>
<?php } elseif($choosen_post_functionality == “ext_lo_two”) { ?>
<div class=”item-details”>
<?php //echo $this->get_title($title_length);?>
<h3 class=”entry-title td-module-title”>” rel=”bookmark” title=”<?php echo get_the_title( $this->post->ID ); ?>”><?php echo get_the_title( $this->post->ID ); ?></h3>
<div class=”td-module-meta-info”>
<?php //if (td_util::get_option(‘tds_category_module_8’) == ‘yes’) { echo $this->get_category(); }?>
<?php //echo $this->get_author();?>
<span class=”td-post-author-name”><?php echo $author_name_lt; ?> <span>-</span> </span><br /><br />
<span class=”td-post-author-name”><?php echo $media_name_lt; ?> <span>-</span> </span>
<?php //echo $this->get_date($modified_date);?>
<span class=”td-post-date”><time class=”entry-date updated td-module-date”><?php echo $publish_date_lt; ?></time></span>
<span style=” display: block;margin-top: 5px; margin-bottom: 5px;” class=”td-post-author-name”>“><?php echo $citations_title_lt; ?> <span>-</span> </span>
<div class=”td-post-content” style=” margin-top:5px; “><?php echo $abstract_excerpt; ?> </div>
<?php //echo $this->get_comments();?>
</div>
</div>
<?php }else { ?>
<div class=”item-details”>
<?php echo $this->get_title($title_length);?>
<div class=”td-module-meta-info”>
<?php if (td_util::get_option(‘tds_category_module_8’) == ‘yes’) { echo $this->get_category(); }?>
<?php echo $this->get_author();?>
<?php echo $this->get_date($modified_date);?>
<?php echo $this->get_comments();?>
</div>
</div>
<?php } ?>
<?php echo $this->get_quotes_on_blocks();?>
</div>
<?php return ob_get_clean();
}
}
However, the gap between the repeating modules is too large as is the columns, see https://www.infowebpublishing.com/home-2/. Also I would like the dividing line to be solid and black.
Any guidance/help appreciated.
Thanks
Gary
Hi,
Please make sure that you made the update like in our documentation -> https://tagdiv.com/update-newspaper-theme/ if you chose to make it via FTP make sure that you delete the old version of theme before you set the new one.
If there are still a problem, please remove/delete the theme and reinstall it via FTP.
Let me know how it works!
Thank you!
Hi,
Sorry for that but please notice that in the latest updated the theme core files were changed a bit and probably that’s why did not work, sorry! I have added to our list of improvements and probably we will include in our future updates.
Thank you!
Hi there,
Prior to the recent theme update, I had changed the thumbnail crop in td_config.php from ‘center top’, to ‘center center.’ With the update, the theme has reverted back to a ‘center, top’ cropping of thumbnails and the code in the td_config file is no longer the same as it was before the update.
I’ve searched through all the newly updated theme files (as best I can as someone with very little php knowledge) and the closest option I can find to set it back to a ‘center, center’ crop seems to be via td_api.php which is located inside the wp_booster folder. Unfortunately, after a lot of testing, it doesn’t seem to do anything, and my images (I added new media to my site to check this, also regenerated the thumbnails numerous times) continue to be cropped ‘center top’.
The formatting of my thumbnails is crucial to the setup of my category pages. If you could please point me in the right direction as to how I can change that particular setting with the new updated files, I would be so grateful.
Thank you.
Hello,
The new update moved the theme files and folder structure so you must delete the old version of your theme before updating the new version Overwriting the old theme with the latest version will cause the theme to break as you will have duplicates in the theme files.
Please delete the entire Newspaper theme folder from your install and install it again.
Thank you!
Hi,
I updated to the latest Newspaper theme, I followed all the steps and works fine apart from the fact that https://holbyonline.com/characters/holby-city/ & https://holbyonline.com/characters/casualty/ do not appear on mobiles they just appear as blank pages – you can see from the PC/iPad that there is content on the page. Please help!
Hi. I’ve made an update and got empty white pages in admin panel for all users with roles Editor and Author. For Admin everything is fine. In the code of admin panel pages (when logged in as an Editor or Author) I can see this:
****removed****
Hello,
In such cases you need to make sure you clean your install of any at all version of the newspaper theme. Access your site using the file manager on your host or via ftp and delete any at all newspaper theme that is present in your wp-content/themes folder
Then upload the new theme version via WordPress. Make sure you update the plugins as well after you install the new theme version.
Thank you!
Hello,
Please update to version 9.7.1 and test without any third party plugins. I have just tested this on our installs and there is no issue with the mega menu on safari.
Thank you!
Hi,
@RWSyk, please notice that when you are using the AMP+Mobile theme, your mobile layout will be displayed like on Mobile Theme. Please check the plugin’s documentation from here -> https://forum.tagdiv.com/the-mobile-theme/
Also, we have released a new theme update where was fixed some of the issues like Sharing buttons and we recommend to update it. Please give more details about the issues you have so we can investigate them.
Thank you!
Hi,
Please check our documentation for How to Update the Newspaper Theme for WordPress ->
https://tagdiv.com/update-newspaper-theme/
We recommend to make the update via FTP.
Or if you do not want to download every time the theme you can use the envate plugin for update.
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
Let me know the results.
Thank you!
Hi,
I have replied here -> https://forum.tagdiv.com/topic/updated-to-9-7-and-site-broken-where-is-support/#post-290664
Thank you!
Hi Antoon,
I’m sorry about that but please notice that our new latest update works as expected and sohuld not break your website, sorry! The Newspaper theme update brings a change for the theme implementation. When you’ll be updating to the Newspaper 9.7.1 version, you’ll need to activate the tagDiv Composer to keep the Newspaper theme functionality you’ve previously used. Otherwise, you will have basic WordPress functionality, complying with Envato WordPress Requirements – https://help.author.envato.com/hc/en-us/articles/360000472383-WordPress-Theme-Requirements
Please read this article we wrote on the new update https://tagdiv.com/updating-the-core-of-tagdiv-themes/ to learn what it changes and what you must do in order to keep the functionality intact.
Also, please provide more details about your problems encountered so we can identify them and also, so we can provide a more accurate response/code.
Thank you for understanding!
Hello,
Sorry for the inconvenience but at the moment there is no rollback option. I will add this to our list for future updates and hopefully in the future we can provide such an option.
As for a roll back, please read this sticky article as we have added the previous version there just for such cases: https://forum.tagdiv.com/topic/important-new-update-newspaper-9-7/
Thank you!
Hello,
I see you already updated to the latest version and I do not see any “messed up” content. I think you forgot initially to update the theme plugins as well. This is a very important step after each update.
Let us know if you still face issues with the new update.
Thank you!
Hi
I have updated to 9.7.1 on a staging site and have turned on mobile theme and AMP.
However, I only see the AMP option in the WordPress menu if I disable my Child Theme. Reading through other comments here, it seems that this is common / required in order to use AMP menu settings. I have disabled all non Newspaper plugins and still the same.
Am I right in thinking that I cannot use a Child Theme and AMP together?
Thanks
Mike
Hi,
Please check this topic -> https://forum.tagdiv.com/topic/important-new-update-newspaper-9-7/
Thank you!