I’m having issues with maps plugins in this theme. I tried Toolset and GeoMyWP. With both plugins, the maps load, but if you try to zoom in or out, the map doesn’t update. It just goes “blank.” It looks like there is an issue with Newspaper’s JavaScript. I haven’t tried to track it down yet with the latest version of it.
Hello @narelly !
In this case, you need to find the file for your header template and replace the code for the logo with your SVG code.
But, please note that any change you make in the files after update will be overwritten and you have to make the changes again. Better save the code somewhere and then apply it again after update.
Thank you!
Hello,
Unfortunately, the version of tagDiv Composer from 10.3.9.1 will not work on version 10.4, if you want that version you need to revert to the previous version from Theme Panel -> Updates => https://www.screencast.com/t/Pa6vDDiivNp
From here you can download the version of tagDiv Composer from 10.3.9.1 => https://we.tl/t-R2ryzrZRDO
Thank you for your understanding!
Hello,
Our developers have been informed about this problem and we hope that the next update will solve this problem.
Thank you for your understanding!
Hello,
What version do you use for mobile? Mobile responsive version or mobile page?
If you have mobile page, then you need to edit the mobile page, and select the header logo and change the text.
This is a video about Responsive Newspaper Theme, AMP & Mobile Theme, Mobile Pages & Templates -> https://www.youtube.com/watch?v=SpGkOnJeNZY
Thank you!
Hi,
Thanks for the info. And if I’m using the default template, which is the template file I could update?
Thanks,
Sebastian
Hi,
I cannot seem to find a whole bunch of elements that were in the theme in version 8 of the newspaper theme as I recently updated the theme to 10.4. For example, I cannot see the footer template style any more and cannot see [td_block_16 limit=”9″ custom_title=”Latest posts” td_ajax_filter_type=”td_category_ids_filter” ajax_pagination=”load_more”]. Please can you advice what alternative i can use thank you.
Thank you, I didn’t notice the WordPress version was fixed. An update helped a lot!
Hi,
Was there any update on this? or any recommended plugin to use?
Got it. As a suggestion for an update: it would be useful if one could exclude one or more images from lazy loading by adding a specific class for instance.
jakehotchkiss.com
My header is working fine on the desktop page, but on mobile, the title of the website says “Classic”. I can’t figure out how to update it to “Jake Hotchkiss”.
Stripe checkout stopped working after the last update of newspaper 10.4. The memberpress and stripe support team investigated the problem and said that “The tagDivComposer plugin is breaking the Stripe.js library. You will need to contact the developer to fix it as it’s breaking the global javascript code.” They put a temp fix that got Stripe checkout working again and you can see what they did at https://drive.google.com/file/d/1Sjq1UyiezdsfG0GDIKKEUdaH3WHWpITX/view?usp=sharing
However, this workaround has stopped a lot of TD Composer’s functionality (like right click, color selection etc.)
Could you provide the download link for the previous version of TD Composer please?
Thanks
I have had the same problem since the last update of composer. The memberpress and stripe support team investigated the problem and said that “The tagDivComposer plugin is breaking the Stripe.js library. You will need to contact the developer to fix it as it’s breaking the global javascript code.”. They put a temp fix that got Stripe checkout working again and you can see what they did at https://drive.google.com/file/d/1Sjq1UyiezdsfG0GDIKKEUdaH3WHWpITX/view?usp=sharing
However, this fix stopped a lot of TD Composer’s functionality (like right click, color selection etc.) I have reported this information to Tagdiv two weeks ago as a bug report but haven’t heard anything back yet.
I’m really hoping that the next update fixes it.
Hello
The wordpress and theme updates are done. But the pictures in the article are not visible. And also “show more” button isn’t working. At the same time i made theme and wordpress updates like previous one not working my web site kriptohayat.com
We have had our theme panel reset automatically two different times now in the past week on one site and one time 2 weeks ago on a different site. It completely reverts all settings back to default, removes the association of cloud template headers and footers, etc. When I try to restore from one of the backups on the side of the import/export page it does not populate the import block when I click on the date, it only shows a link to view differences, which I can see the previous version had data and the new version does not.
Now this has happened on 10.3.9 as we have not updated to 10.4.1 yet as it is not compatible with WooCommerce.
When I open up the td_011_settings and I paste the results into https://www.unserialize.com/ it only gets a 1/4 of the way and then it breaks.
Why does this keep happening and what can we do to mitigate it? There is no way to “disable plugins and theme” to see if it works as it only does it sporadically
Thank you for bringing this up! I’ve been trying to figure out how to Preload the homepage featured images along with the article featured image only. Google is really focusing on these aspects, and I had assumed the theme would be updated with this in mind.
I did find this code for preloading featured images and wanted to let the Newspaper developer see if it would work with this one.
It would be great to have this figured out before May hits with Google’s changes.
Thank you.
/**
* Preload attachment image, defaults to post thumbnail
*/
function preload_post_thumbnail() {
global $post;
/** Prevent preloading for specific content types or post types */
if ( ! is_singular() ) {
return;
}
/** Adjust image size based on post type or other factor. */
$image_size = 'full';
if ( is_singular( 'product' ) ) {
$image_size = 'woocommerce_single';
} else if ( is_singular( 'post' ) ) {
$image_size = 'large';
}
$image_size = apply_filters( 'preload_post_thumbnail_image_size', $image_size, $post );
/** Get post thumbnail if an attachment ID isn't specified. */
$thumbnail_id = apply_filters( 'preload_post_thumbnail_id', get_post_thumbnail_id( $post->ID ), $post );
/** Get the image */
$image = wp_get_attachment_image_src( $thumbnail_id, $image_size );
$src = '';
$additional_attr_array = array();
$additional_attr = '';
if ( $image ) {
list( $src, $width, $height ) = $image;
/**
* The following code which generates the srcset is plucked straight
* out of wp_get_attachment_image() for consistency as it's important
* that the output matches otherwise the preloading could become ineffective.
*/
$image_meta = wp_get_attachment_metadata( $thumbnail_id );
if ( is_array( $image_meta ) ) {
$size_array = array( absint( $width ), absint( $height ) );
$srcset = wp_calculate_image_srcset( $size_array, $src, $image_meta, $thumbnail_id );
$sizes = wp_calculate_image_sizes( $size_array, $src, $image_meta, $thumbnail_id );
if ( $srcset && ( $sizes || ! empty( $attr['sizes'] ) ) ) {
$additional_attr_array['imagesrcset'] = $srcset;
if ( empty( $attr['sizes'] ) ) {
$additional_attr_array['imagesizes'] = $sizes;
}
}
}
foreach ( $additional_attr_array as $name => $value ) {
$additional_attr .= "$name=" . '"' . $value . '" ';
}
} else {
/** Early exit if no image is found. */
return;
}
/** Output the link HTML tag */
printf( '<link rel="preload" as="image" href="%s" %s/>', esc_url( $src ), $additional_attr );
}
add_action( 'wp_head', 'preload_post_thumbnail' );
Hello!
If you had an old version to your plugins, then the theme update is not updating your plugins automatically. Please try to re-upload the images and see the results.
Sometimes, the issue can be from a plugin conflict, that’s why, 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.
If this problem is not solved after that, then we need to take a look and see what happened there.
Please contact us via email at contact@tagdiv.com and provide the following:
– admin url and credentials
– a link to this topic in order to identify you
Our team will take a look!
Thank you!
Hi,
Please update the WordPress to 5.7.1 and check to see if the problem is still persisting.
Hope this will fix the problem that you have!
Let me know the results!
Thank you!
Hello,
I tried to update the Newspaper theme from 10.39.1 to 10.4 on a staging environment but WordPress responded with a critical error on the frontend. I deactivated all plugins except the composer and cloud gallery and the issue is still there. The staging is not public so I can’t post a URL.
No cache plugin active and the system status is alright. All requirements are good.
I tried only deactivating the composer and the issue was gone. Of course, the whole website wasn’t looking nice without it. According to the debugger the issue lies with the new CSS analyzer:
WordPress Debug Log (Staging)
#7 /home/wp/disk/wordpress_staging/wp-includes/script-loader.php(20 in /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/css-analyze/css-analyze.php on line 507
#6 /home/wp/disk/wordpress_staging/wp-includes/plugin.php(484): WP_Hook->do_action()
#5 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters()
#4 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(287): td_load_css_fonts()
#3 /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/legacy/common/wp_booster/td_wp_booster_functions.php(572): metadata_exists()
#2 /home/wp/disk/wordpress_staging/wp-includes/meta.php(676): apply_filters()
#1 /home/wp/disk/wordpress_staging/wp-includes/plugin.php(212): WP_Hook->apply_filters()
#0 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(287): {closure}()
Stack trace:
[20-Apr-2021 15:10:36 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure}(), 4 passed in /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php on line 287 and exactly 5 expected in /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/css-analyze/css-analyze.php:507
#7 /home/wp/disk/wordpress_staging/wp-includes/script-loader.php(20 in /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/css-analyze/css-analyze.php on line 507
#6 /home/wp/disk/wordpress_staging/wp-includes/plugin.php(484): WP_Hook->do_action()
#5 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters()
#4 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(287): td_load_css_fonts()
#3 /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/legacy/common/wp_booster/td_wp_booster_functions.php(572): metadata_exists()
#2 /home/wp/disk/wordpress_staging/wp-includes/meta.php(676): apply_filters()
#1 /home/wp/disk/wordpress_staging/wp-includes/plugin.php(212): WP_Hook->apply_filters()
#0 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(287): {closure}()
Stack trace:
[20-Apr-2021 15:10:35 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure}(), 4 passed in /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php on line 287 and exactly 5 expected in /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/css-analyze/css-analyze.php:507
#7 /home/wp/disk/wordpress_staging/wp-includes/script-loader.php(20 in /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/css-analyze/css-analyze.php on line 507
#6 /home/wp/disk/wordpress_staging/wp-includes/plugin.php(484): WP_Hook->do_action()
#5 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters()
#4 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(287): td_load_css_fonts()
#3 /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/legacy/common/wp_booster/td_wp_booster_functions.php(572): metadata_exists()
#2 /home/wp/disk/wordpress_staging/wp-includes/meta.php(676): apply_filters()
#1 /home/wp/disk/wordpress_staging/wp-includes/plugin.php(212): WP_Hook->apply_filters()
#0 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(287): {closure}()
Stack trace:
[20-Apr-2021 15:10:16 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure}(), 4 passed in /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php on line 287 and exactly 5 expected in /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/css-analyze/css-analyze.php:507
#7 /home/wp/disk/wordpress_staging/wp-includes/script-loader.php(20 in /home/wp/disk/wordpress_staging/wp-content/plugins/td-composer/css-analyze/css-analyze.php on line 507
#6 /home/wp/disk/wordpress_staging/wp-includes/plugin.php(484): WP_Hook->do_action()
#5 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters()
#4 /home/wp/disk/wordpress_staging/wp-includes/class-wp-hook.php(287): td_load_css_fonts()
Hi,
both in the desktop and in the mobile device view, the images that I have inserted into the posts with Media Grid are not loaded.
Why is that?
2. Question: Why is wpbakery not updated with the newspaper update?
Thank you
https://makanangin.de/waterberg-wilderness-das-andere-namibia/
You can see from the changing gray dots that images should be loaded there.
Hello!
For cloud templates the file is in td-cloud-library/shortcodes/header/tdb_header_logo.php
But, please note that any change you make in the files after update will be overwritten and you have to make the changes again. Better save the code somewhere and then apply it again after update.
Hope that helps you somehow!
Thank you!
Hi, I did the recommended update these days, all the pages of my site break (See attached image: http://walterd7.sg-host.com/wp-content/uploads/2021/04/2021-04-20-15-48-walterd7.sg-host.com_.png ),
this is the original page after the restore backup: http://walterd7.sg-host.com/.
Can someone help me?
Hi,
Using our theme you can choose from 3 mobile versions
-> mobile responsive => https://www.screencast.com/t/oJ2ShOp47
-> mobile theme plugin => https://forum.tagdiv.com/the-mobile-theme/
-> mobile page => https://tagdiv.com/newspaper-10-3-7-update-brings-customizable-and-fast-mobile-pages/
Seems you have installed the Mobile theme plugin => https://www.screencast.com/t/KqhPuJV43yf. If you created the mobile pages with tagDiv Composer, then when you install the Mobile Theme plugin, your pages will be overwritten by the plugin (the mobile theme comes with its own templates for page, post, category, etc so your current templates from the desktop theme will get converted to the mobile theme layout, the page content is made without builders in mobile editor => https://www.screencast.com/t/xbgZG8kH also, the options that are provided to edit the mobile theme version are limited (this keeps the things simple)).
Better deactivate the plugin and see the results.
Also, if you create a mobile page, please check if is set correctly => https://tagdiv.com/newspaper-10-3-7-update-brings-customizable-and-fast-mobile-pages/
This is a video about Responsive Newspaper Theme, AMP & Mobile Theme, Mobile Pages & Templates -> https://www.youtube.com/watch?v=SpGkOnJeNZY
So, the mobile responsive is what you see then that you select the viewport on phone => https://www.screencast.com/t/matV17hH, so some settings may apply for each viewport(where is the border blue), and others are not(where the border is black).
The mobile page has the mobile templates from Cloud Library => https://www.screencast.com/t/YCcZ8rL8
Mobile responsive version of the theme and the mobile page editor can be edit with tagDiv Composer, the mobile theme plugin not.
For example, you can have the mobile theme plugin activate and use the mobile page/mobile responsive version for the homepage/pages, but for the categories pages/404 page you can’t use the mobile page/mobile responsive version if you have the mobile theme plugin activate.
Thank you!
Same problem here – works on mobile, however doesn’t work in desktop version. I think that this is related to update to 10.4 version as it used to work before that. Could you please share the solution if found?
Hello!
Check this topic where we discussed about this issue: https://forum.tagdiv.com/topic/wp_booster-error-on-single-more-from-author-box-in-td-composer-after-update/
If this problem is not solved after that, then we need to take a look and see what happened there.
Please contact us via email at contact@tagdiv.com and provide the following:
– admin url and credentials
– a link to this topic in order to identify you
Our team will take a look!
Thank you!