- 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
- NewspaperThumbnails – Fix strange looking images on blocks
- NewspaperBlock settings tutorial
- NewspaperCategory Tag on Modules/blocks
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperSearch setup for custom post type
- NewspapertagDiv Opt-In Builder – Emails
- NewspaperBookmark – Save For Later
- NewspaperModules Builder in Newspaper Theme
- NewspaperFilters and sorting for taxonomies
- NewspaperUser review system
- NewspaperWooCommerce: Happy “Add to Favorites!”
- NewspaperLockers
- NewspaperLeads
Hi, I’m using Big Grid 6 to display featured articles on the site. it is very important for us to have control which articled goes after another.
Changing the date kinda des the trick, but it is no a solution since, it goes to latest posts, please see the screenshot.
Please let us know how can we control the order of the articles in this block wihtout posts getting into latest posts section.
Thanks a lot.
Hi Guys, what is the best way to include a custom inline block to display some related post content? Is it possible to hook onto ‘content_inline’ which renders the inline ad?
Our articles are tagged with a relational post using ACF to tell the user who wrote/provided them, we want elements of this related post content to appear part way through the article like the ads currently do.
Thanks
Matt
Hello there, I’ve updated the theme from 4.6 to 7.8.
I updated theme, wordpress (4.7.3), visual composer and all plugins.
But the home page is full of errors:
[td_slide_big limit=”12″ category_id=”4″ category_ids=”247, 128, 127, 8, 96, 9″ autoplay=”7″]
[td_block2 limit=”8″ ajax_pagination=”next_prev” category_id=”1″ header_color=”#1e73be” show_child_cat=”all”][td_ad_box spot_id=”custom_ad_1″]
[td_ad_box spot_id=”custom_ad_2″][td_social custom_title=”BE SOCIAL” icon_style=”2″ icon_size=”32″ facebook=”http://www.facebook.com/pages/*********″ googleplus=”https://plus.google.com/********″ instagram=”http://instagram.com/*********” twitter=”http://twitter.com/#!/***********” youtube=”http://www.youtube.com/user/************” header_color=”#0087a3″ open_in_new_window=”y” linkedin=”https://www.linkedin.com/company/********-com”][td_text_with_title custom_title=”APPUNTAMENTI” header_color=”#0087a3″]
Etc.etc…
You can see the home page here:
http://i64.tinypic.com/2pq1dlw.png
Please, can you help me to solve this issue?
Thanks.
but affected by the post sort order – https://www.screencast.com/t/d88YyiXo which by default is set to Latest, so you will always have the latest posts from those categories
Thakns but it still doesn’t explain which category gets the first pick.
What you saying is that: if you specify in the filter: 23, 24, 25, 26 then the latest posts will be displayed from those categories, but I till don’t understand how can I make sure that latest post from speific category will be diplayed first.
I this case, whether I specify 23 in the fits place or 25 doesn’t change a thing.
thank you very much.
Hi Bogdan & Catalin:
We’ve checked again and our website URL is accurate and accessible by our Audience and our Server Admin. As requested earlier, We need your IP Address please to make sure that you are not being blocked.
Thank you for the first block.
How I manage to reduce the heigh of the second one on my image?
Regards
Hi,
Depends on what elements you have in the structure of the page, in Visual composer. For example you can stretch a row containing a block like this – https://www.screencast.com/t/6T0CF4cl4 resulting in a full width row. In the latest update there has been added the option to have full width layout on some elements, like the header and footer – https://www.screencast.com/t/hYmPUhejTwa
Here is a tutorial about creating your homepage – https://forum.tagdiv.com/homepage-how-to-build-and-set-it/
Thanks
Hi,
The block displays posts on modules. When you enter the category ID’s the posts displayed will be from those categories, but affected by the post sort order – https://www.screencast.com/t/d88YyiXo which by default is set to Latest, so you will always have the latest posts from those categories. If you would like to have the posts from a specific category only then you must enter just one category ID, or select one from the category filter.
Thanks
Hello,
I open this post after your answer at this post : https://forum.tagdiv.com/topic/bad-update/
Like the others, my big grid are now boxed with error message. I know why because you explain well why. But I have one trouble. I try to do : “Please comment out or remove this code: https://www.screencast.com/t/SKhrNN5v47 and also remove one of these curly braces: https://www.screencast.com/t/AjjTkQM3E The check is added in each grid file in particular so you will have to edit the file corresponding to the grid you use.”
But unfortunally I can’t found this code on my PHP file.
I use only Grid 5 for this moment,but I try to found the code to remove on all Big Grid and I do not found it, that why I paste my code on this forum. Can you help me to know what I need to do for don’t have anymore this message error on my Big Grid 5 ?
My all file Big Grid 5 PHP :
<?php
/**
*
* Class td_block_big_grid_5
*/
class td_block_big_grid_5 extends td_block {
const POST_LIMIT = 3;
function render($atts, $content = null){
// for big grids, extract the td_grid_style
extract(shortcode_atts(
array(
‘td_grid_style’ => ‘td-grid-style-1’
), $atts));
$atts[‘limit’] = self::POST_LIMIT;
parent::render($atts); // sets the live atts, $this->atts, $this->block_uid, $this->td_query (it runs the query)
$buffy = ”;
$buffy .= ‘<div class=”‘ . $this->get_block_classes(array($td_grid_style, ‘td-hover-1’)) . ‘” ‘ . $this->get_block_html_atts() . ‘>’;
//get the block css
$buffy .= $this->get_block_css();
$buffy .= ‘<div id=’ . $this->block_uid . ‘ class=”td_block_inner”>’;
$buffy .= $this->inner($this->td_query->posts); //inner content of the block
$buffy .= ‘<div class=”clearfix”></div>’;
$buffy .= ‘</div>’;
$buffy .= ‘</div> <!– ./block –>’;
return $buffy;
}
function inner($posts) {
$buffy = ”;
if (!empty($posts)) {
$buffy .= ‘<div class=”td-big-grid-wrapper”>’;
$post_count = 0;
foreach ($posts as $post) {
$td_module_mx12 = new td_module_mx12($post);
$buffy .= $td_module_mx12->render($post_count);
$post_count++;
}
if ($post_count < self::POST_LIMIT) {
for ($i = $post_count; $i < self::POST_LIMIT; $i++) {
$td_module_mx_empty = new td_module_mx_empty();
$buffy .= $td_module_mx_empty->render($i);
}
}
$buffy .= ‘</div>’;
}
return $buffy;
}
}
Thanks in advance !
I make some designing changes under your theme and i feel somewhere images are still appearing the old size the which mentioned under module block sizes. I need to make it more bigger how its possible?
Hi,
Unfortunately the only available post sorting on blocks are the ones mentioned here – https://forum.tagdiv.com/block-settings-guide/ Additional sorting for the posts in blocks could be added in a future theme update, but I can not say fore sure if and when this will happen.
Maybe you can find a plugin through which you can add this functionality to the block element.
Thanks
Hi,
I am using Block 2 on my home page to show reviews in a category. How do I control the which sub-category that comes up with the post. (Refer screenshot for more detail).
Image URL: https://drive.google.com/file/d/0B2q2joxemXaTMzZCNUdjSEpFbWM/view?usp=sharing
Please help
Regards
Hi Bogdan. Link works fine from here. Please try again if it you can’t access, please confirm your IP address so we can be sure that you are not blocked.
Hey and if I just want to disable the search button from the main menu? How can I go about that?
The menu search can only be removed with css as there in so option to hide it.
Please use this code in the theme panel->custom css box
#td-top-search{
display:none!important;
}
https://forum.tagdiv.com/topic/remove-search-from-main-menu/
Hello,
Please use this guide: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
It depends on the video thumb itself as it has to be at least the size of the container in which you want to show it. If the thumb is not at least the size of the container then it will not be able to show up properly as our theme only crops images, it does not enlarge them
Thank you!
Hello kaidensharma,
Unfortunately, I do not exactly understand what you want to achieve and modify, sorry! Please provide your website URL and also, more details about what you want to achieve so I will be able to provide a more accurate response. If you want to change the block structure, please notice that is not a simple task and you can break the block/theme layout and we cannot recommend doing this, sorry!
Thanks for your understanding!
Hello,
Sorry but a category is not a post type that can be shown in our theme blocks. Our blocks show posts, not post archives. If you want to show a particular category you can make separate blocks for each category and show the top posts from each one. Our theme does not have the option to show categories in the blocks and grids.
Thank you!
Hello,
The new grids do not have font settings yet. You can change the font with a custom css cod like for example on a big grid full 2:
.td_block_big_grid_fl_2 .td-module-title, .td_block_big_grid_fl_2 .td-module-meta-info{
font-family:tahoma;
}
Thank you!
Hello roqeem,
1)If you want to increase the articles which are displayed at the Related Articles, you should check the Theme panel because from there you can change this option, like this -> https://www.screencast.com/t/GmTNYrXIDQ For more information about this feature, please check here -> https://forum.tagdiv.com/related-articles-2/
2)You should check your Block settings because from there you can increase/decrease the post limit number, like this -> https://www.screencast.com/t/w9qypvevWWp Also, you can change the general post limit from General Settings, like this -> https://www.screencast.com/t/WMQ41OMS
Thanks for your understanding!
Hello csbiswal,
Unfortunately, our theme does not have any such an option that allows you to achieve exactly the same Grid layout like as in your above example, sorry! Notice that you should use the predefined Blocks and Big Grid from our panel in order to achieve something like this. Keep in mind that our Big Grids do not be used for 2 columns but only for one column. As an example, I have created a layout which resembling yours, like this -> https://www.screencast.com/t/ttbfsvXj3 and the result you should find here -> https://www.screencast.com/t/FlBdENr2ns If you want to create your own custom Grid which involve some additional customizations through the code and if you are not aware of the steps which are needed to take in this regard, please consider hiring a freelancer/developer to help you because we cannot provide custom services at the moment, sorry!
Thanks for your understanding!
Hello iamzifei,
Please keep in mind that the theme only displays Category Tag which is set up by Primary Category. Unfortunately, our theme does not have any such an option that allows you to display more than one tag. For more information about Category Tags and Primary Category, please consult our useful guide here -> https://forum.tagdiv.com/newsmag-category-tag-on-modulesblocks/ and here -> https://forum.tagdiv.com/primary-category/ So, if you want to display more than one tag, you should implement it yourself through the code and if you are not aware of the steps which are needed to take in this regard, please consider hiring a freelancer/developer to help you because we cannot provide custom work at the moment, sorry!
Thanks for your understanding!
Found the Enable/Disable Author Name at HomePage option at:
Theme Panel – Block Settings – Meta info on Modules/Blocks.
Hi, dear support,
Is it possible to display posts in the block in the interval of a certain date, for example, posts from January 1 to March 1 or only for 2017?
As title. Like to serve only 3 ads at most in page. Just to comply with Google policy. Thanks. Edmond
Hi tagdiv community…
I have hit a slight issue within the add new element > block section in visual composer.
Basically the image that displays what each block option would look like is not displaying, which makes choosing what block I want to use a bit hit and miss. (see attached image link)
https://drive.google.com/file/d/0B0Gk1ZDZ_J2uLW5yOVNqOTNfdkE/view?usp=sharing
Have no idea how to resolve this… please help.
Thanks – Rhys