Search Results for 'update'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi,

Please update to the latest theme version 6.5 as the block 21 was added to widgets section – http://screencast.com/t/yHuMG39ClXQ3
I’m not sure what are you trying to do with tag cloud widget. Please note that this is a wordpress widget, not a part of the theme(it cannot be edited from theme files).

Thanks!

Bogdan B.
tagDiv Staff

Hello,

Please send your request via email at contact@tagdiv.com and we will send it to you. Unfortunately if you plan on updating to version 6, all of your modifications will have to be remade as version 6 is a completely different theme (child theme is different as well).
You can read more about updating here: https://forum.tagdiv.com/how-to-update-the-theme-2/

Thank you.

Alin [tagDiv]
tagDiv Staff

Hi cha_siu123,

Newspaper 6 is practically a new theme, the whole code was rewritten so you have do a clean update and make sure that no old files remain. Please follow this guide to upgrade to the version 6 of the theme – https://forum.tagdiv.com/how-to-update-the-theme-2/ Make full backup of your current installation – https://codex.wordpress.org/WordPress_Backups and then do a clean update, meaning that we recommend that you delete the old version of the theme before uploading the new one. Then update also the theme plugins: Visual Composer (also optional plugins Social Counter, Speed Booster if you use them). You will have to run the script that will import from database your settings, will change the shortcodes(see docs)…
Please note that the old custom modifications to the files or custom css will not work, you will have to adjust and re-add them. Unfortunately you have to re-add the widgets to your sidebars(the custom sidebars will be imported – you don’t have to create them again) as they will become inactive or doesn’t exist in version 6.

If you don’t wan to upgrade the theme to version 6 you can revert to the old version that you used, just install the previous version and all should work fine.

Thanks!

wisnuwijayanto
Participant
#0

when i was editing front page of poolmatik.com , there was no visual composer editor button

http://www.screencast.com/t/pov2iC8LDB

i just update the theme few days ago and delete and re install the visual composer

but still nothing just like the picture

what should i do, so the visual composer back for the front page editing

it’sjust not shows in front page, in other page it’s shows

please response

thank you

tinyyoppy23
tagDiv Member

Hi Tagdiv Support,

I have updated my theme to Newspaper 6.5 and updated the Visual Composer, cleared my cache. But the transition on the Ajax Filter is still the same, it doesn’t have the fade in effect when I switched from “All” to “Busan” or to “Seoul” etc. May I know what is the problem?

THank you.

sejpost
Participant
#0

Normally when there is an update of a theme, it appears in the WP admin area and I can just click it to install, etc. I purchased Newspaper 6 about a couple months ago and there have been 1-2 updates.

Will I be able to install it from the WP admin dashboard, or do I have to download the zip file and then upload it to the admin and then install it?

Lastly, I haven’t modified any child themes, etc, so will there be any errors created because of updating the theme? We had an issue with the featured images of posts not showing up and we had to run a ‘featured post plugin’. I would hate to have to redo that.

Thanks guys.

#0

Recently I noticed that my tags stopped working. Previously, I could view a page that compiled blog posts that use the same tag.

Now these ‘tag’ category pages are all showing ‘no results’ even though there are tons of articles tagged with the keyword.

I noticed this error yesterday while the site was operating Newspaper 4.0. I updated to 6.5 yesterday and the problem is still happening.

Example URL of blog post: http://wordpress.mauimagazine.net/lean-green/
Example tag at bottom: Lehia Apana
Example of tag URL: http://wordpress.mauimagazine.net/tag/lehia-apana/ (showing “no posts to display” despite 43 blogs including this tag, Lehia Apana)

JanuszJasinski
tagDiv Member

I found that there is a function being called when you add a post that parses the content and processes the shortcode

Managed to find it and it now works – here is my very specific solution

<h3>Videos</h3>
<?php
$videos = get_posts(array(
'post_type' => 'post',
'category' => 53,
'meta_query' => array(
array(
'key' => 'article_event', // name of custom field
'value' => '"'.get_the_ID().'"', // matches exaclty 123", not just 123. This prevents a match for "1234"
'compare' => 'LIKE'
)
)
));
//echo get_the_ID();
if( $videos ):
$vID = '';
$vArray = array();
foreach( $videos as $video ):
$vID .= get_field( "article_video_id", $video->ID ) .',';
$vArray[] = get_field( "article_video_id", $video->ID );
endforeach;
endif;
$vID = rtrim($vID, ',');

function jj_get_video_info_data ($array_param){
$list_to_parse = $array_param;
$list_to_parse = explode(',', $list_to_parse);
$buffy = array();
//echo $list_to_parse;

foreach($list_to_parse as $id_video) {

$id_video = trim($id_video);//possible to have spaces
//echo '['.$id_video.']';
$response = wp_remote_get('https://www.googleapis.com/youtube/v3/videos?id=' . $id_video . '&part=id,contentDetails,snippet&key=AIzaSyBneuqXGHEXQiJlWUOv23_FA4CzpsHaS6I', array(
'sslverify' => false
));

if (is_wp_error($response)) {
break;
}

$data = wp_remote_retrieve_body($response);

if (is_wp_error($data)) {
break;
}
$obj = json_decode($data, true);
$buffy[$id_video]['thumb'] = td_global::$http_or_https . '://img.youtube.com/vi/' . $id_video . '/default.jpg';
$duration = $obj['items'][0]['contentDetails']['duration'];

if (!empty($duration)) {
preg_match('/(\d+)H/', $duration, $match);
$h = count($match) ? filter_var($match[0], FILTER_SANITIZE_NUMBER_INT) : 0;
preg_match('/(\d+)M/', $duration, $match);
$m = count($match) ? filter_var($match[0], FILTER_SANITIZE_NUMBER_INT) : 0;
preg_match('/(\d+)S/', $duration, $match);
$s = count($match) ? filter_var($match[0], FILTER_SANITIZE_NUMBER_INT) : 0;
$buffy[$id_video]['title'] = $obj['items'][0]['snippet']['title'];
$buffy[$id_video]['time'] = gmdate("H:i:s", intval($h * 3600 + $m * 60 + $s));
}
}
if(!empty($buffy)) {
return $buffy;
} else {
return;
}
}
$td_playlist_video['youtube_ids'] = jj_get_video_info_data($vID);
$td_playlist_video['youtube_title'] = 'Whatever';

//print_r($td_playlist_video);
update_post_meta(get_the_ID(),'td_playlist_video',$td_playlist_video);
$videoSC = '[vc_row][vc_column][td_block_video_youtube playlist_title="TITLE" playlist_yt="'.$vID.'"][/vc_column][/vc_row]';
echo do_shortcode($videoSC);
?>

wikitipz
tagDiv Member

Hi,
Thanks for your reply,
Hope to see your changes in near updated versions

Thanks

scorpiock
tagDiv Member

This is so manual and will override in next theme update. Would it be possible to turn off this feature through Theme Panel?

Ankush Das
Participant
#0

I had noticed a lifetime support and update on the envato market. And, suddenly I noticed I’ve 5 months support left. So, the support service will be a premium service? If a major update comes in atfer 5 months, and I encounter a problem. Then I’ll have to spend $17 to just get a word of help.. even it’s a modification of one option or a code.

Please throw some light on the new support policy.

Bogdan B.
tagDiv Staff

Hello scorpiock,

There is a guide in our documentation that still applies to the current version of visual composer. The technique is the same: https://forum.tagdiv.com/how-to-update-visual-composer-plugin/

Thank you.

anupsinha2007
Participant
#0

hi
After reinstalling my site on a different server, my site links are not working. Only home page is visible. Server support says it has something to do with wordpress or the theme. I have updated the wordpress to its latest version but situation hasn’t improved. Any suggestions.

cha_siu123
tagDiv Member

Hi Alin,

I am not sure which version it was but It was installed in Aug 2014, this is the first time I updated since the installation.
I used the automatic update (option b) in the article. Do I need to remove the files and update it again?
The problem does seem to be with the backend visual composer, since I am not a coder myself, I rely on it. I have some other pages with only simple text content which are showing up fine.

The URL is http://www.hkanimalpost.com

Appreciated if you can take a further look for me. Thanks in advance!

Vermino
tagDiv Member

I second for this option to be displayed at specific post elements and/or percentage down the page. I have some articles that are 300 words and other that are 2,500 words. You don’t want your reader having a blaring sidebar coming from right field when they are in a middle of a read. Definitely consider it for a future update. Hope more people chime in with Siraj & me.

-Jesse M.

Bogdan B.
tagDiv Staff

Hi,

Unfortunately Newspaper has an fixed grid layout, responsive as it is fluid and styled for desktop/tables/mobile screens. Changing the grid’s width is not an easy job and would need lots of custom modifications, as you need to change the width value for all elements on pages.
Maybe in a future update we will be able to implement an option for the width but the developers will take the final decision though.

Thank you for your suggestion!

scorpiock
Participant
#0

Hello,

I have updated my theme automatically using Evanto toolkit. Wondering how do I update js_composer?

Bogdan B.
tagDiv Staff

Hello,

I have added your suggestion on our list and we hope in a future update we will be able to implement automatic CSS regeneration on theme update.

Thank you for your suggestion!

Bogdan B.
tagDiv Staff

Hello rayarasmussen,

We have a theme update tutorial in our documentation which will help guide you through your update.
https://forum.tagdiv.com/how-to-update-the-theme-2/
Make sure you backup the files and the database, in case something goes wrong with the server you could use the backup to revert to the previous state. For more information on how to backup check the official documentation: https://codex.wordpress.org/WordPress_Backups
Let us know how it goes!

Thank you!

loirexplorer
Participant
#0

Hi,

Seems yhat you might have a bug with the appaerance of some articlse in google chrome since the last update. See the following url in chrome. there’s no more design. See it in firefox and explorer, there’s OK http://loirexplorer.com/observer-brame-cerf-guide/

Can you help, please.

Alin [tagDiv]
tagDiv Staff

Hi,

Thanks Chris!


@robert4web
The Visual Composer plugin is not updated by Envato toolkit. You can deactivate and delete the old version of Visual Composer – http://screencast.com/t/oboeavsin and install it from here – http://screencast.com/t/NeIrAMKdm3
Also you can update it using this guide – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/ or via FTP.

Thanks!

Bogdan B.
tagDiv Staff

Hello,

You can update the theme directly to 6.5 by using this guide – https://forum.tagdiv.com/how-to-update-the-theme-2/ and also update the plugins that come with the theme files from the /plugins folder. If you use a child theme, you have to update it as well because the old files modifications or custom css will not work in the version 6.
If you have custom modification to the theme’s files you will need to re-add them as when you update the theme these files will be overwritten, but the styling options you’ve set in the WordPress Theme or settings should not be affected.
Please note that Newspaper 6 is practically a new theme and the old file customization and custom css will not work, you need to adjust it to this theme version.
We also recommend doing a back-up.
You can check the official documentation – https://codex.wordpress.org/WordPress_Backups

I hope this helps!
Thank you!

Alin [tagDiv]
tagDiv Staff

Hi,

Did you updated from version 4 of the theme? If you did used the old version please check this guide how to upgrade – https://forum.tagdiv.com/how-to-update-the-theme-2/
Do you have this issue only in backend? Please provide more details about this and also your site url so I can take a look. Also disable all your plugins except of Visual Composer, clear cache and purge your files if you use CDN.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

If you have custom modification to the theme’s files you will need to re-add them as when you update the theme these files will be overwritten, but the the styling options you’ve set in the WordPress Theme Customize or settings should not be affected. Always make a full backup of your installation – https://codex.wordpress.org/WordPress_Backups
The latest version of the theme is 6.5 and you can use this guide to update(A,B,C) – https://forum.tagdiv.com/how-to-update-the-theme-2/ also please update the theme’s plugins that you use.
We use the latest theme version to help our users and I have also check it on my side and did not found any issues with page transition, it is working exactly like on demo.

Thanks!

dallenharris
tagDiv Member

I updated to the 2.2 version and am still seeing the pubdate and time W3 validation errors on post pages… I would actually like to get rid of the time/date stamp for comments completely. so that like this does not show in the page code at all:


<time pubdate="1338125656">May 27, 2012 at 7:34 am</time>

Viewing 25 results - 38,651 through 38,675 (of 45,280 total)