- NewspaperFlex Block Builder and Flex Loop Builder
- NewspaperHow to use the Flex Blocks cache option
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to insert a block inside the content of a post
- NewspaperFlex Block Settings Guide
- NewspaperMeta Info on Modules and Blocks
- NewspaperTheme modules and blocks
- TutorialsDefault Block Settings Guide
- NewsmagBlock settings tutorial
- NewsmagCategory tag on modules/blocks
- NewspaperThumbnails – Fix strange looking images on blocks
- NewspaperBlock settings tutorial
- NewspaperCategory Tag on Modules/blocks
- ApiPractical example – How to add a new Block and Module
- Apitd_api_block::delete
- Apitd_api_block::update_key
- Apitd_api_block::update
- Apitd_api_block::add
- ApiAPI – Blocks – Introduction
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
What does this mean
1. Child themes are partially supported. You can override the css and the template files. You can’t override our code.
what can I override, what can’t I, I do not understand
can I use child theme for?
functions.php
/wp-content/themes/Newspaper/includes/app/modules/module_modifier/td_module_blog.php
/wp-content/themes/Newspaper/includes/content_builder/td_module.php
Hi,
Its easy, edited /wp-content/themes/Newspaper/includes/app/modules/module_modifier/td_module_blog.php
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;
}
}
Now the problem is how to have it not being overridden when updating.
and yes, I still have to use the plugin because you still dont have support for dailymotion like you said you would 2 months ago
http://themeforest.net/item/newspaper/discussion/5489609?page=3#comment_4713830
tagDiv
tagDiv AUTHOR 2 months ago Flag
I’ve added this to the todo list – we already have a custom field that works with youtube, vimeo, daily motion but it also pulls the thumb automatically. I will make it work with embed codes also.Radu from tagDiv
And yes, I might have told you before that instead of promising for more than 2 month to have support for dailymotion that you might be better off using native get image functiions and use the plugin insted of promising to develop your own solution.
But this has nothing todo with what I did and asked about later on, now I am asking other things, I am using the shortcode and dont need you to be compatible with the get image function anymore.
Please read again and help me
https://forum.tagdiv.com/topic/featured-video-and-dailymotion/#post-1614
Thank you
Got it to work
I followed these instructions but I had to make a new category and place all the categories which I wanted to featured under that new category for it to work.
I do not know why it didn’t work when I just placed the category ID number in the place where you told me to?
1. We use Block 2 http://screencast.com/t/ihp1OsNZB1ek with follow options http://screencast.com/t/RNQSS7c7uPgI , http://screencast.com/t/YKZ83xD5YFN ,
http://screencast.com/t/jnnQrSpKwmO and the template of page must be Homepage-with article list http://screencast.com/t/XLtMmgkKGw.
Thanks for the reponse, love this theme and how many possibilities it offers.
Sorry I meant the contact 7 plugin in I removed it and everything is alright.
The problem with block2 is that I do not get those clickable categories on top as in the demo?
Hello,
1. All the updates will be via FTP, replacing all files.
2. Edit you DON’T MISS block (block2) and add here for multiple categories: http://screencast.com/t/lA4YSXv2ay1
3. Unfortunately the theme was not made from the start to support drop down for top menu.
4. There is a small bug, still searching for that bug
5. What contact me app?
Thanks
Great @matthewvb
Many thanks.
@sunkast hope will work for you.
Hello,
Only if you create a custom block/module that work on more columns and set it with custom post type. You can remove the page views, comment count via CSS only for that block.
Thanks
Hello,
That file is located in parts/header folder.
If you want you can use Header style 3(from Theme customizer) this have a full width center logo + AD
Thanks
Hello,
Use this in style.css:
.block-title span {
background-color: #593083
}
Thanks
Hello,
Just edit your homepage and edit the Block 2 there you have a settings to hide the title. http://screencast.com/t/UcqUIKTL0Rk
Thanks
Thank you matthewvb.
Generic – I used it for a custom post type, but throw in what you’d like. Framework is all there.
<?php
/* Template Name: Media Tracker - Custom */
get_header();
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
//define $args here.
$wp_query = new WP_Query( $args );
?>
<div class="container td-page-wrap">
<div class="row">
<div class="span12">
<div class="td-grid-wrap">
<div class="container-fluid">
<h1 itemprop="name" class="entry-title td-page-title">Page Title</h1>
<?php
if (have_posts()) { ?>
<?php while ( $wp_query->have_posts() ) : $wp_query->the_post();?>
<?php // output loop contents here ?>
<?php endwhile; ?>
<?php echo td_page_generator::get_pagination(); ?>
<?php } else {
echo td_page_generator::no_posts();
} ?>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>
Is there a way to change the number of columns, image size, and remove the post meta info (page views, comment count), and in alphabetical order, without creating a custom block/module?
I’m trying to create a page that lists my company’s staff from a custom post type. But obviously it doesn’t need post views and comment counts. Nor does it need to display content from the post.
I could easily create the page using Visual Composer, but I have a lot of staff, so I would like to have the listing paginated, preferably the Load More button. I also would need to use just a normal thumbnail size due to the portrait nature of each person’s photo. The aspect ratio of the thumbnails in Block3 just doesn’t lend itself to portraits of people.
Where is this “logo_ad.php file” located?
So how can I use a bigger banner logo instead of this small one?
I do not want the ad next to the logo (at the moment)
many of the features I am asking for were already promised by you a long time ago:
http://themeforest.net/item/newspaper/discussion/5489609?page=3#comment_4713830
authorsontheair 2 months ago Flag
Ok, thank you for your reply. Current theme supports the input via custom field to video as featured image. So embed fuction takes code from custom field (where also code / link for youtube video and others can go) which is then inserted where with image posts you get featured image in post.tagDiv
tagDiv AUTHOR 2 months ago Flag
I’ve added this to the todo list – we already have a custom field that works with youtube, vimeo, daily motion but it also pulls the thumb automatically. I will make it work with embed codes also.Radu from tagDiv
Default-user
authorsontheair 2 months ago Flag
Awesome!
http://themeforest.net/item/newspaper/discussion/5489609?page=27#comment_5038037
diegonavland PURCHASED 19 days ago Flag
Hi, when do you think that the dailymotion videos would work with the site, I saw a comment like a month ago telling that you were going to implement it.Thanks
tagDiv
tagDiv AUTHOR 18 days ago Flag
Hello,We will make it for the following updates. Sorry for delay.
Marius from tagDiv
http://themeforest.net/item/newspaper/discussion/5489609?page=3#comment_4693696
tagDiv AUTHOR 2 months ago Flag
Hello, I’ve fixed the child theme – basically I forgot to update the theme name. Here is the latest version: http://import.tagdiv.com/newspaper/Newspaper-child.zipSorry for the inconvenience and btw I’m working to improve the child theme experience. If you have any sugestions let me know. I plan to add hooks and filters in the theme that can be used via child themes. Radu from tagDiv
http://themeforest.net/item/newspaper/discussion/5489609?page=26#comment_5018275
jazzclubjury 20 days ago Flag
Hi,Pre purchase question…is this theme child theme friendly?
Looking great and want to give you my coin…
tagDiv
tagDiv AUTHOR 20 days ago Flag
Hello,Yes the theme have a Child theme ready to be used.
Thanks for your message, Marius from tagDiv
Put this into your style.css
/** flags horizontal */
#flaggenmast { heigth: 12px; width: 56px; margin: 0; padding: 0; float: right; clear: right; }
ul.qtrans_language_chooser { list-style: none; margin: 0; padding: 0; }
ul.qtrans_language_chooser li { display: inline-block; float: left; position: relative; margin: 0; padding: 0; }
a.qtrans_flag { margin-left: 10px; margin-top: -10px }
I’d be interested in learning more about your solution as I am also trying to create a custom template. Would you be able to share your solution and possibly the code you used?
yes I told you this before
https://forum.tagdiv.com/topic/problem-with-visual-editor/#post-1885
PS: I believe your theme is only blue because you have the caching on, if you want the caching on you have to edit in the css file, they have answered this in one of the forum threads. They said they will fix it
But as you say, tagdiv support theme have decided to ignore this subject you asked about in this thread or to elaborate on the answer I gave you
I still do not understand you, have you read the code I edited?
Or did you outsource support now you have sold 1500 theme and you feel too confident that you start giving refunds instead of helping with theme related only the developer can help with (unlike the many same mostly stupid questions you answer over and over again because of using the comment system on theme forest where the community cannot colmment on someone elses thread or because of that same comment system not being searchable). Its ok but you should have hired a coder for support. Because your answer shows me that you do not understand or that you just did not read this thread
https://forum.tagdiv.com/topic/featured-video-and-dailymotion/#post-1614
you could at least have answered
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;
}
Hello,
Do you mean you use on a block to filter by tag and the tag have multiple words? We will make a fix for this issue ASAP.
Thanks and sorry for delay!
I am still a bit shocked by what you said
I would have gladly do the modifications for you but I am working very hard to support everyone and I’m also working to improve our products.
please see
https://forum.tagdiv.com/topic/featured-video-and-dailymotion/#post-1614
I have done the customization work, just need you to include them as options in the theme, to improve you product for everyone
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/
I’m building a page layout using Visual Composer. However, when I add a row and a block to that row, it doesn’t come out fluid.
http://tinypic.com/r/29lokdk/5
http://tinypic.com/r/2eclsok/5
Also, I’m still waiting for help with my other thread I posted a couple days ago.