- NewsmagHow to update a plugin
- NewsmagHow to update the theme
- NewsmagHow to update the WPBakery plugin
- NewsmagCategory templates
- NewsmagWhat’s included in Newsmag theme package
- NewsmagAjax view count
- NewsmagSmart Lists
- NewsmagFeatured images
- NewsmagFeatured image or video
- NewsmagModal window
- NewsmagtagDiv slider gallery
- NewsmagVideo playlist
I’ve been having the same problem. I’ve updated to the latest update (9.2.1), and this does seem to have sorted it out, but I’m waiting to see how this goes.
Hi,
The infinite loading for posts is currently in development, as we speak our developer team is working on it. When this stage is completed we will begin testing. After this it will be available in the theme through a theme update.
Thanks
Hi,
I see that you have the latest version of WP, please make update to the theme and plugin too.
Thank you for your understanding.
We have updated to version 9.2 but we have a problem with the images, they do not load, we have to update the page up to 3 times so that they appear, they could help us please, thanks.
Good morning, last night I updated your template to version 9.2.1 and this morning I am on the main page this situation does not load the thumbnails.
Why ?
Hi,
Here is all the news and fix for the latest theme version https://www.screencast.com/t/kGcBTU3dT
you can find more here
https://themeforest.net/item/newspaper/5489609?s_rank=1
How to update the theme -> https://forum.tagdiv.com/how-to-update-the-theme-2/
Thank you for your understanding.
Hi
after las update i have still same problem https://drive.google.com/file/d/1UVuG6PP55zFB871nO7XyLNOf2gQmdWMp/view?usp=sharing
Cloud plugin activated…
BR
Hello there,
There is no schema.org support for featured videos. I had to add myself and I want to share it with you. Maybe you’ll include this in the future releases and maybe others find it useful. Thanks.
First of all I suggest using a child theme to accomplish this otherwise you have to alter theme files and these changes might get lost in the next update. Copy under from theme folder to your child theme includes/wp_booster/td_video_support.php file (with folder structure). Change the render method with the one below;
/**
* Render a video on the fornt end from URL
* @param $videoUrl - the video url that we want to render
*
* @return string - the player HTML
*/
static function render_video($videoUrl) {
$buffy = '<div class="wpb_video_wrapper">';
switch (self::detect_video_service($videoUrl)) {
case 'youtube':
$buffy .= '
<iframe id="td_youtube_player" width="600" height="560" src="' . 'https://www.youtube.com/embed/' . self::get_youtube_id($videoUrl) . '?enablejsapi=1&feature=oembed&wmode=opaque&vq=hd720' . self::get_youtube_time_param($videoUrl) . '" frameborder="0" allowfullscreen=""></iframe>
<script type="text/javascript">
var tag = document.createElement("script");
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName("script")[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player("td_youtube_player", {
height: "720",
width: "960",
events: {
"onReady": onPlayerReady
}
});
}
function onPlayerReady(event) {
player.setPlaybackQuality("hd720");
}
</script>
';
break;
case 'dailymotion':
$buffy .= '
<iframe frameborder="0" width="600" height="560" src="' . td_global::$http_or_https . '://www.dailymotion.com/embed/video/' . self::get_dailymotion_id($videoUrl) . '"></iframe>
';
break;
case 'vimeo':
$buffy = '
<iframe src="' . td_global::$http_or_https . '://player.vimeo.com/video/' . self::get_vimeo_id($videoUrl) . '" width="500" height="212" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
';
break;
case 'facebook':
/**
* cache & oembed implementation
*/
$cache_key = self::get_facebook_id($videoUrl);
$group = 'td_facebook_video';
if (td_remote_cache::is_expired($group, $cache_key) === true) {
// cache is expired - do a request
$facebook_api_json = td_remote_http::get_page('https://www.facebook.com/plugins/video/oembed.json/?url=' . urlencode($videoUrl) , __CLASS__);
if ($facebook_api_json !== false) {
$facebook_api = @json_decode($facebook_api_json);
//json data decode
if ($facebook_api === null and json_last_error() !== JSON_ERROR_NONE) {
td_log::log(__FILE__, __FUNCTION__, 'json decode failed for facebook video embed api', $videoUrl);
}
if (is_object($facebook_api) and !empty($facebook_api->html)) {
//add the html to the buffer
$buffy = $facebook_api->html;
//set the cache
td_remote_cache::set($group, $cache_key, $facebook_api->html, self::$caching_time);
}
} else {
td_log::log(__FILE__, __FUNCTION__, 'facebook api html data cannot be retrieved/json request failed', $videoUrl);
}
} else {
// cache is valid
$api_html_embed_data = td_remote_cache::get($group, $cache_key);
$buffy = $api_html_embed_data;
}
break;
case 'twitter':
/**
* cache & oembed implementation
*/
$cache_key = self::get_twitter_id($videoUrl);
$group = 'td_twitter_video';
if (td_remote_cache::is_expired($group, $cache_key) === true) {
// cache is expired - do a request
$twitter_json = td_remote_http::get_page('https://publish.twitter.com/oembed?url=' . urlencode($videoUrl) . '&widget_type=video&align=center' , __CLASS__);
if ($twitter_json !== false) {
$twitter_api = @json_decode($twitter_json);
//json data decode
if ($twitter_api === null and json_last_error() !== JSON_ERROR_NONE) {
td_log::log(__FILE__, __FUNCTION__, 'json decode failed for twitter video embed api', $videoUrl);
}
if (is_object($twitter_api) and !empty($twitter_api->html)) {
//add the html to the buffer
$buffy = $twitter_api->html;
//set the cache
td_remote_cache::set($group, $cache_key, $twitter_api->html, self::$caching_time);
}
} else {
td_log::log(__FILE__, __FUNCTION__, 'twitter api html data cannot be retrieved/json request failed', $videoUrl);
}
} else {
// cache is valid
$api_html_embed_data = td_remote_cache::get($group, $cache_key);
$buffy = $api_html_embed_data;
}
break;
}
$buffy .= sprintf( '
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "VideoObject",
"name": "%1$s",
"description": "%2$s",
"thumbnailUrl": "%3$s",
"contentUrl": "%4$s"
}
</script>',
esc_attr( get_the_title() ),
esc_attr( get_the_excerpt() ),
get_the_post_thumbnail_url( get_the_ID(), 'featured' ),
$videoUrl
);
$buffy .= '</div>';
return $buffy;
}
For better indentation and readability see: https://pastecode.xyz/view/399f6207
please help
http://www.wirtschaftsanwealte.at
now in maintainance mode
I can’t download new version of update for Newspaper. I have Newspaper 8. I put WordPress on maintenance mode, I deleted the old version, logged on to envato market account, downloaded the zip folder to my computer but every time I am trying to upload it to my WordPress theme panel, it doesn’t work. Every time the connection is broken up. The internet works good. Any suggestions? Thanks.
Hy Ml,
Unfortunately, all of these core files cannot be overwritten in Child Theme. You should add them to each theme’s updated because the theme will overwrite all of these files to a new update.
Thanks.
Hi @Curious_George,
If you want the theme version 9.1 please send us and email and ask to provide to you that theme version.
@Curious_George
Unfortunately this are the only option for theme update
https://forum.tagdiv.com/how-to-update-the-theme-2/
https://www.screencast.com/t/5mMe5vZK1Pg
Thank you.
Hi,
Please make update to the theme, clear all cache and try again.
Also please deactivate all non them plugins, clear all cache and try again, is possible to be a plugin conflict.
Thank you for your understanding.
I only knew because I went looking for it after the last update. 🙂
Sorry … forgot to add the url: https://www.vpncompass.com/express-vpn-review/
Can you please advise on the Button Shortcode issue … they were previously working fine, but now (with the latest Theme update) they just present as simple Links ?
What happened to Button Shortcodes ?
thanks !
So your theme update deactivated TagDiv Composer on my website.
Maybe a little warning next time?
I was able to re-activate it but seriously,
please don’t send out updates that haven’t been thoroughly vetted…
Now I have to go see what else was “improved” by this update >:(
Since I updated the newspaper theme with the Envato market plug-in certain things no longer work.
The article preview images no longer appear and are just empty blocks even though the features image is there once you go into the article.
Also, the active menu item disappears when active. I’m guessing it goes the same colour as the background but no matter how much I mess around with main menu theme colours, nothing changes.
I also have this custom css code which has been working fine to change the active and hover colours:
.td-gadgets .td-header-style-5 .sf-menu > li > a:hover{
color:orange;
}
Can anybody help?
I got an email from Envato of an update but I can’t find any info on what has changed in the new theme update. Where can I find that?
Simon
After a lot of work, I got the issue partially fixed.
Well, let´s say completely fixed.
I made sure to get my images down to the size that will be displayed correctly on Instagram and that fixed it.
Regarding IG posts not appearing, I did notice a couple of things.
First, it seems like either the theme or IG delays to refresh with the correct images. So maybe after an hour of posting the images on IG they will appear on the website. Not sure why, but I can live with a little delay if there is no immediate option.
Second, I followed another forum post / tread here that teaches what the settings on the WP SUPER CACHE plugin should be. I had fixed the settings before I wrote the last time.
But there is an option that says that cache will be cleared every time a post or page is updated. So I have been updating posts every minute to get cache cleared and see changes on things I do. Not sure if there is a workaround to be updating posts every minute, but if that is the only thing to be done, I can also live with that.
So now, my question focusses on this: Is this theme now able to host IG feed in the footer on MOBILE devices?
On this post I found out that there were no option, but that was last year August. Are there any changes?
In other words, just like how I have IG on desktop / laptop mode, I would like to have it displayed on MOBILE devices. Can I?
On this other post, I see that some CSS can be entered to remove IG footer, but can it be included to add IG in the footer?
If the theme cannot support IG on the footer for MOBILE, do you know about a workaround, or other plugin that can be used?
Thank you
HI Friends,
I see that you have a new upgrade dated from december 12.
Is this version already compatible with the new version of wordpress 5.0??
what are the changes in this new version?
There is another way to perform the update other than FTP?
Thanks a lot
Damador
Started happening after WP 5 update, and I deleted cache deactivated mobile plugin etc but still not doing anything good for me.
can anyone share precise instruction how to make it work??
I updated my theme. It s look OK for now. All the products aligned. And website is faster than before thank you 🙂
Hi, i want to edit my home page with tagdiv composer but i get an error…
Error at rows: 3(models) : 1(dom). The model does not match the content.
after update wordpress and gutenber editor, i cant acceso to normal editor…
why there is not update in wordpress panel?
-
This reply was modified 7 years by
simpson.
The main question is : what solution do you propose to avoid an update after every update ?
> use a plugin ?
> change the functions.php and add the new custom format directly there ?
> any other suggestion because as it is right now it’s not sustainable and limit the experience.
Thanks for your help and advices