- NewsmagBlock settings tutorial
- NewsmagCategory tag on modules/blocks
- NewsmagtagDiv Composer Tutorial
- NewsmagWeather Widget
- NewsmagExchange widget
- NewsmagInstagram widget
- NewsmagHow to use the Visual Composer plugin
- NewsmagIntroduction
- NewsmagFooter templates
- NewsmagCustom ad spots
- NewsmagLoading image effects
- NewsmagSmart sidebar
- NewsmagFeatured images
- NewsmagGeneral settings
- Newsmag7 days post sorting
- NewsmagTheme thumbs
- NewsmagExcerpts introduction
- NewsmagTheme colors introduction
- NewsmagtagDiv slider gallery
- NewsmagVideo playlist
Hi,
The Subtitles can be display only inside the post, but if you want to display a different text in excerpts, you can do it adding a text for each post in this section -> https://i.imgur.com/pqRBBig.png
If you do not want to have excepts, then you can remove it using tagdiv Compeer, select the flex block select that element and search for excerpt -> https://i.imgur.com/lgtBR9n.png
Hope this will help you!
Thank you!
Hi Calin,
Mate, we both are on different track…So i did was added footer nomad
https://ibb.co/WBrZ3cx …Then I added blog block 9 (I just want is list simple list with seperator in middle..) Something like this https://ibb.co/sJhhY88
https://ibb.co/Fgw3nBJ What is best way to change footer like how to remove admin(1) how to remove dates(2) how to remove comments.
Because based on how you said earlier I will remove many other things like for all blocks on my homepage or side bar will be in effect…It has to be specific like out of two same block on side by side how to remove date/author/comments on left and right has all.(hope so i am good in communicating what i need)
(All links Image Deletes after 1 week)
Hi,
Yes, these options for layout are available only for flex elements, those can not be set on simple blocks or grids.
For the moment the background color from category it will not inherit on entire website, for this you need to use a custom css. Here is a similar topic for this -> https://forum.tagdiv.com/topic/want-to-change-background-colour-for-big-grid-flex-2-category-name/
Also the background color for categories can be set from theme panel per each category -> https://i.imgur.com/1G9TKpO.png -> https://i.imgur.com/rcMr3Aq.png -> https://i.imgur.com/o9phbCq.png
Thank you!
Hi,
Unfortunately in tagDiv Composer there is no element as elated posts – more from the author, these elements are separate set -> https://i.imgur.com/Uw4TQvx.png also now the option for related posts or author posts can be set on flex blocks -> https://i.imgur.com/lbUXjD4.png.
Thank you for your understanding!
Hi Vlad,
Thanks for your reply. Website is http://www.reisverhalen.info
It’ son the homepage. For example this block: https://imgur.com/D63Ulfm
With these css settings: https://imgur.com/TjPFDvD
Hello,
In this page https://visionthai.net/zh-hans/topic/thailand-news-cn/
We use the “Prev/Next” ajax in the category post list block.
Our site has two languages, one is zh-hant (default), another is zh-hans. (We use WPML)
However, on the zh-hans page, if I click “Next” or “Prev”, the returned post will be in zh-hans instead of zh-hant. (wrong language!)
Could you help me solve this problem?
Thank you!
Hi,
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv Composer, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
If the problem persist, please set this code in functions.php -> wp-content/plugins/td-composer/legacy/Newspaper/functions.php
add_action('admin_head',function() {
echo '<style>.td-gutenberg-editor .editor-styles-wrapper .wp-block {max-width:726px;}</style>';
});
Or you can send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Thank you!
Hi Yogesh1,
If you want to remove the date 1,2, 3 date from website you can use the general options from theme panel -> https://i.imgur.com/s7hCDue.png
Also if you are using a pro demo, these are using cloud templates and can be edited using tagDiv Composer, also the elements use are flex blocks and flex grids these can be edited using tagDiv Composer and apply these options individual -> https://i.imgur.com/36B31xz.jpg -> https://i.imgur.com/WFuLZkK.jpg
If there is something that is not clear or you have other questions, please let me know!
Hope this will help you!
Need to have homepage display subtitles, not excerpts if possible. If no subtitle is entered it shouldn’t display anything but the post title. Currently using Flex Block 1. I think this likely is a custom code issue, but I have no idea where to even start with that. Thanks in advance!
Hello,
I have the following issue.
In Posts loop 2, Big Grid flex and more I can change the Category’s tag backround color via the style menu in tagdiv composer.
In the other hand, I can’t do that in Block 15, 11, 9.
How can I do that?
Moreover, ideally I would want each category to have a global category’s tag backround.
For Example Category Greece Blue, Category Army Green ect. Hence, the category tag colour would not be specified by the block type but by the category. I don’t know if this is possible. If it is not, take it as a suggestion. My previous theme was able to do that.
Thank you in advance,
Fotis
Ok,
but we are playing game: cat and mouse
today nothing, I send you a mail, yesterday and nothing today so far.
You have my permission to remove your IP address from the blocked ip adress in DataBase, and change a password for your proifle.
thx
Hello.
There is a function of the Newspaper 9 theme (I must keep this version for now) causing severe performance problems in my website.
I would like to know what this function does and what could happen if I simply disable it.
Thank you in advance.
– – – – – – – – – – – –
File:
Newspaper/js/tagdiv_theme.js
Function:
/**
* makes a ajax block request
* @param current_block_obj
* @param td_user_action - load more or infinite loader (used by the animation)
* @returns {string}
*/
tdAjaxDoBlockRequest: function(current_block_obj, td_user_action) {
//search the cache
var currentBlockObjSignature = JSON.stringify(current_block_obj);
if ( tdLocalCache.exist(currentBlockObjSignature) ) {
//do the animation with cache hit = true
tdBlocks.tdBlockAjaxLoadingStart(current_block_obj, true, td_user_action);
tdBlocks.tdAjaxBlockProcessResponse(tdLocalCache.get(currentBlockObjSignature), td_user_action);
return 'cache_hit'; //cache HIT
}
//cache miss - we make a full request! - cache hit - false
tdBlocks.tdBlockAjaxLoadingStart(current_block_obj, false, td_user_action);
//return;
var requestData = {
action: 'td_ajax_block',
td_atts: current_block_obj.atts,
td_block_id:current_block_obj.id,
td_column_number:current_block_obj.td_column_number,
td_current_page:current_block_obj.td_current_page,
block_type:current_block_obj.block_type,
td_filter_value:current_block_obj.td_filter_value,
td_user_action:current_block_obj.td_user_action
};
console.log('tdAjaxDoBlockRequest:');
console.log(requestData);
jQuery.ajax({
type: 'POST',
url: td_ajax_url,
cache:true,
data: requestData,
success: function(data, textStatus, XMLHttpRequest) {
tdLocalCache.set(currentBlockObjSignature, data);
tdBlocks.tdAjaxBlockProcessResponse(data, td_user_action);
},
error: function(MLHttpRequest, textStatus, errorThrown) {
console.log(errorThrown);
}
});
},
I have two blocks for social media, one at the top and one at the bottom. The one at the bottom doesn’t work, so I deleted it. The one at the top finally took the facebook link. Thank you for your time and help.
Hello !
Please provide a link to your website and we will take a look. Also provide a screenshot of your setting on the block here: https://www.screencast.com/t/aiHeP4lNlQ
Thank you !
Hi, I just bought theme yesterday or day before. Now I a playing with footer, What is best way to change footer like how to remove admin(1) how to remove dates(2) how to remove comments.
Also what is the way to customize it? Like lets say you want date but in different fonts or color?
Check link : https://ibb.co/qdYmnVN ( Image Deletes after 1 week)
Hi there,
I’m using Flex Block 1 on my homepage (Travel pro template). All of a sudden the border around the text does not fit. It’s about a pixel to high. I can’t remember changing anything. I can’t find the settings to fix it. It ‘s on all the different flex blocks I use. Can you help me out?
https://imgur.com/a/deqcUmQ
Hi TagDiv Team,
I want to replicate the latest news from https://demo.tagdiv.com/newspaper_covid19_news_pro/
I couldnt find any module to do it. We search in blocks and big grid flex, but we couldnt find it. Do I have to use cloud to import it?
PD: Cloud Manager is showing this error: Invalid reply from server endpoint
Hi,
This problem can be if your image size is to low (for this you can use our guide from here) or if you have set a thumb instead the full image in your posts -> https://i.imgur.com/X6kCYAP.png also it can be a plugin that is compressing the images.
Please let me know the results and if the problem persists, please provide me a link where I can see it!
Thank you!
Hi,
You can fix this problem using our guide from here -> https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
Hope this will help you!
Thank you!
Hi chellofr,
If you are using a flex block then you can filter it using our guide from here -> https://forum.tagdiv.com/flex-block-settings-guide/ you can use tagDiv Composer and check the filter tab -> https://i.imgur.com/2zOU80z.png
Hope this will help you!
Thank you!
Dear Sir/Madam,
Is it possible to filter for specific categories in the header live search block that you can place on a page with the TagDiv Composer?
For blocks, such as Block 14, the filter tab provides the opportunity to apply a category filter. So in other words, is that function also available for the Header Live Search block?
Warm regards,
Siebren
Dear,
I have some difficult to delete some bloc singe the last update
When I click on delete, the system repeate but the bloc didn’t delete
https://www.infoh24.info/wp-content/uploads/2020/10/TagDIV-Delete.png
Hi,
This is create when you install a demo, but, you can do it, there will be no problems.
Also this is working as in this documentation https://forum.tagdiv.com/featured-posts-2/ only for standard demos, for pro demos, you need to use a custom css like this one:
.tdb-category a[href$="/featured/"] , .tdc-content-wrap .td-module-meta-info a[href$="/featured/"], .td_block_wrap .td-module-container a[href$="/featured/"]{
display: none;
}
This code need to be set in theme panel> custom code> custom css.
Hope it will help you!
Thank you!
Hello,
I wish I had known how to make the filter by tag in Flex Block 1 display alphabetically and ideally only display the tags included in the articles displayed ?
Thank you
Hello my friend.
I would like to know how can I deactivate the last block of the site, last articles?