- 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
Theme updates, you mean?
This wave is the Icon of the Visual Composer..
I just bought the theme and installed the patch that comes with it. (v1.7.1)
Seems like the ajax doesn’t work properly and WP is not recording my changes… 🙁
Hi,
I think I found the reason for your problems.
I see you have many updates you still have to make
And it looks you like you have some editor plugin that is not working.
Also your editor looks different than mine, where does this blue green red wave come from?
Hi,
Can you please explain what you mean by
and check if we update the files modified by you
Thank you
PS: I am still waiting for help, its been days.
https://forum.tagdiv.com/topic/featured-video-and-dailymotion/
Yes that is happening.. I’ve send you an e-mail.
Hello,
We will make it for the following updates.
Thanks
Hello,
The child theme work at this moment only with CSS.
On all updates we want to publish a patch with changed files and check if we update the files modified by you.
Thanks
Hello,
What version do you have? We want to release the next update in 1-2 days that have the search function in images fixed.
Do you mean when you make the update(using the patch) you site become blank.
Please give us you site URL or access to your wordpress to take a look. Send via email at contact@tagdiv.com
Thanks
Sometimes I need to update the php files under includes directory. When I put these updated files into the child theme’s folder, they don’t work. But changing the original files in Newspaper directory makes the changes to be lost after updating the theme.
Thanks for the help. I changed the font, and found the spirit and changed the icons to white. What the client wants the client gets. (My struggle was understanding that they had cloud flare running against their sites. This delays one from seeing the updates unless you can “purge” the cloud flare.)
Thanks Jon
I have some problems with updating the theme. when I update the following files:
– header.php
and files in includes/app/shortcodes/
td_block1.php
td_block2.php
td_block3.php
td_block4.php
td_block5.php
td_slide_big.php
td_slide.php
When I update one of more of these files the whole site will be blank, and also the admin area. Even when i putt all plugins off. What is the cause?
Another problem is that when I want to add a featured image, the search function for images doesn’t work anymore.
Can you give me a fix for both problems? Thanks
You have a nice feature for the video post types formats. In the thumbnail it ads something like this http://www.frostburg.edu/fsu/assets/Image/Blackboard/Video_Icon_Big.jpg
Think of adding similar for the audio post types in the next update. Something like this http://www.joemcclane.com/early-church-fathers/images/audio1.jpg
Hello,
we are still working on that. With each update we release a list of changed files.
Hello @Radu
How is it going?
Why I need you to put this alternative to the dashboard is because; every time I update the theme, all the manual edits in the files are being reseted. Is it any way to prevent this?
Last update is ok ? version: 1.7.1 Check in theme options
Hello,
include > content_builder > td_page_generator.php (line 547)
pending update !
Hello,
Because the menu is on top. You can use the arrow to go to top. We will improve this in the following updates.
Thanks
replied via email. Sorry for the delay.
Hello,
upload the whole theme over the existing one. that should work fine. But please backup your files first.
Hello,
unfortunately it cannot be easily done. We may add this in a future update if more users request it.
Sorry for the inconvenience,
Radu from tagDiv
Hello,
we are working to improve the social counter. in the following days we will release a theme update.
Hello,
We have this feature on our todo list for the following updates.
Thanks
Hello,
We will make it for the following updates.
Thanks
Hi this is rizzy81
You were going to send me the updated file with Pagination capable. I have emailed to your support, still haven’t received a response.
Hi,
Here is what I have been able todo so far:
http://staging1.wp.gem-diamonds.com/news/one-of-a-kind-10-carat-royal-blue-diamond-for-sale-in-new-orleans
1) re-sized the image in functions.php
//featured image
$td_crop_features_image = td_util::get_customizer_option('crop_features_image');
if ($td_crop_features_image == '') {
//add_image_size('featured-image', 700, 0, true);
add_image_size('featured-image', 320, 0, true);
} else {
//add_image_size('featured-image', 700, 357, true);
add_image_size('featured-image', 320, 180, true);
}
2) added some custom css in wp-admin/themes.php?page=editcss
To make the image float on the right (not a good way does not play nice responsive, please tell me a better way)
.post .thumb-wrap {
text-align: center;
margin-bottom: 5px;
background-color: #f2f2f2;
float: right;
margin-left: 10px;
}
3) edited /wp-content/themes/Newspaper/includes/app/modules/module_modifier/td_module_blog.php
so that video pages show featured image
function get_image($thumbType, $image_link = '', $image_excerpt = '') {
global $page;
if (!empty($page) and $page > 1) {
return;
}
//echo 'raxxx' . $page;
if (td_util::get_option('tds_show_featured_image') == 'hide') {
return;
}
if (get_post_format($this->post->ID) == 'gallery') {
return;
// }
// if (get_post_format($this->post->ID) == 'video') {
//if it's a video post...
// $td_post_video = get_post_meta($this->post->ID, 'td_post_video', true);
// $td_video_support = new td_video_support();
// if (!empty($td_post_video['td_video'])) {
// return $td_video_support->renderVideo($td_post_video['td_video']);
// }
} else {
//if it's a normal post, show the default thumb
//get the full url
$attachment_id = get_post_thumbnail_id($this->post->ID);
$td_temp_image_url = wp_get_attachment_image_src($attachment_id, 'full');
$image_excerpt = get_post_field('post_excerpt', $attachment_id);
if (!empty($image_excerpt)) {
$image_excerpt = '<p class="wp-caption-text td-featured-image-caption">' . $image_excerpt . '</p>';
}
$post_image = '';
if (!empty($td_temp_image_url[0])) { //if we have a full url, link the image to that
$post_image = parent::get_image($thumbType, $td_temp_image_url[0], $image_excerpt);
} else {
$post_image = parent::get_image($thumbType, '', $image_excerpt);
}
return $post_image;
}
}
4) edited /wp-content/themes/Newspaper/includes/content_builder/td_module.php
so that only on single video pages a click on image would scroll to video
$buffy .= '<div class="thumb-wrap">';
if (current_user_can('edit_posts')) {
$buffy .= '<a class="td-admin-edit" href="' . get_edit_post_link($this->post->ID) . '">edit</a>';
}
if ((get_post_format($this->post->ID) == 'video') and (is_single($post))){
$buffy .='<a href="#video" rel="bookmark" title="' . $this->title_attribute . '">';
} else {
$buffy .='<a ' . td_util::if_show($show_colorbox_class, 'class="td-featured-img"') . ' href="' .
$image_link . '" rel="bookmark" title="' . $this->title_attribute . '">';
}
Can you please help me with the following and tell me if I could have done it better
- to make these things template features/options so that when I update it will not break, its just a few on and off switches
- option to make featured image float left or right, while being nicely responsive
- option to show featured image on video pages instead of replacing it with featured video
- option to have featured image of single video pages to scroll to video when clicked
- how to make the scroll to video nicer, also your scroll to comments (so that it scrolls and doesn’t jump)
- a feature to have the video icon as a image watermark so that we will have to call one less image in template, will be faster and also for facebook thumnail the video icon will be in the image
- why have you added this
.format-video p { padding-top: 11px !important; }
Thank you
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.