- NewsmagtagDiv Composer Tutorial
- TutorialsFrom WPBakery to tagDiv Composer
- NewspapertagDiv Composer Tutorial
- NewsmagHow to use the Visual Composer plugin
- Apitd_api_block::update_key
- Apitd_api_block::update
- Apitd_api_block::add
- NewspaperCredit System
- NewspaperCreate a frontend submission form
- NewspaperHow to Use the Tabbed Content shortcode
- NewspaperCreate a form contact page
- NewspaperFilters and sorting for taxonomies
- NewspaperUser review system
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperSocial Sharing
- NewspaperSingle Post Shortcodes
- NewspaperInfinite Loading for Single Posts
- NewspaperThe Newspaper Mobile Theme: Introduction
- NewspaperHow to Add a Logo in Newspaper
Hi,
Now in Newspaper v9.7 the path to the td_module_11.php for block12 is wp-content/plugins/td-composer/legacy/Newspaper/includes/modules/td_module_11.php
-> https://www.screencast.com/t/MIvdG0zu
Theme modules and blocks -> https://forum.tagdiv.com/theme-blocks-modules/
Also you can check some a similar topic -> https://forum.tagdiv.com/topic/custom-fields-in-block4-td_module_2-php/
Thank you!
Hi @TheWrestlePost,
Please reply on this topic -> https://forum.tagdiv.com/topic/problem-with-td-composer-plugin/
Thank you!
Hi Simion C.,
First of all, thank you very much for having responded to my problem, I thank you very much. I have two doubts about it that I would like to know if you can help me with them:
1.- How can I find out which template I am using in the posts I am doing? I can not know which is the template that is being viewed …
2.- If I modify the templates files inside the td-composer plugin, in the future when there is an update of the plugin, will I lose the changes that I have made? Is there a solution in this regard?
Once again, thank you very much for attending to my request for support.
Greetings,
Alex
Sorry for asking, but I couldn’t find anything through search.
Is there any way to display a single YouTube video embed in homepage TD composer? I have found video playlist (which is not what I want), row video background, but nothing concrete for embedding a single video.
Hi,
That demo use single post templates from tagDiv Cloud Library, you need to click on edit template -> https://www.screencast.com/t/rAaKuTD09 click on content on row and stretch the row -> https://www.screencast.com/t/RIp6nzQ2 on “Stretch row and content”. this will make the content on post to be full width, please do not use the visual composer on templates or pages tat gas build with tagDiv Composer.
Thank you!
Hi,
If you want to add some code in More article box you need to set the code in td_more_article_box.php in Newspaper v9.7 this is in wp-content/plugins/td-composer/legacy/common/wp_booster/td_more_article_box.php in previews version was in wp-content/themes/Newspaper/wp_booster/td_more_article_box.php
Thank you!
Hi,
Please tell me, you are using a Header Cloud Template for your header section? If yes, please notice that you can edit the logo element with TD Composer and add every logo you want.
Thank you!
Hi,
If that sidebar is made with widgets you can check our documentation for custom css -> https://tagdiv.com/how-to-create-custom-code-in-newspaper-theme/
Here is an example of code
.td-pb-span4 .td_block_1 {
margin-bottom: 10px;
}
If that sidebar is in one page and is make with tagDiv Composer you can edit it and change with tagDiv Composer.
Thank you!
Hi there
I keep getting 521 error on cloud flare on http://danielfooddiary.com, the host say
“Based on our findings, we could see that you have recently updated/installed the following plugin which caused the issue and the Apache service was being killed by the operating system’s self-protection mechanism to keep its critical services running when the server is running low on memory.
td-social-counter
td-cloud-library
td-composer
td-newsletter
In order to resolve this issue and keep the http://danielfooddiary.com/ site online, we have renamed the following plugin folders as follows;
/home/danielfo/public_html/wp-content/plugins/td-composer_bak
/home/danielfo/public_html/wp-content/plugins/td-newsletter_bak
We suggest you uninstall/deactivate the plugin from the WordPress dashboard to keep your site stable. Also, we highly advise you to seek advice from your web developers for a timely and accurate resolution to the issue.”
IS there anyway to remedy the solution?
Similar – update to latest version throws an error:
Error thrown
Call to undefined method td_config::get_map_filter_array()
The td-composer plugin also needs to be updated and delete the td-api-plugin.
I wish tagDiv would streamline the theme update process…
-
This reply was modified 7 years by
omarfilip.
Hi,
If you want to customize your post pages, you need to use the Cloud Template Library and create a custom post template. Check the useful guide from here -> https://forum.tagdiv.com/tagdiv-cloud-library-plugin/
Regarding your latest request, notice that you can do this with TD Composer which allows you to add your sidebar everywhere you want on your post page. As a hint, you can use the Widgetised Sidebar.
Thank you!
Hi,
1)You will bring that warning when you simply Edit the page without the TD Composer. You can ignore this because does not matter.
2)If you want to create a new page template, you need to do it yourself and register it near the others from the root of the theme. You can take a look from here -> https://www.cloudways.com/blog/creating-custom-page-template-in-wordpress/
Thank you!
Hi,
If you want to make these changes in mobile theme, you’ll need to go in wp-content/plugins/td-composer/mobile/single.php
-> https://www.screencast.com/t/bVtwlGsA5XvV
Thank you!
For anyone else looking for the same function, and I have seen quite a few people ask for this, here is how I solved it.
It is a workaround, and if someone can offer an improvement on this solution, please paste your code below.
Copy td_data_source.php from the parent theme and paste to:
/wp-content/themes/Newspaper-child/includes/wp_booster/td_data_source.php
I decided I am probably never going to use the Sort Alphabetically option for my td composer widgets. So, I updated the args array for Sort Alphabetical to suit my purposes.
Comment out the normal alphabetical order and use the new code below.
// case ‘alphabetical_order’:
// $wp_query_args[‘orderby’] = ‘title’;
// $wp_query_args[‘order’] = ‘ASC’;
// break;
case ‘alphabetical_order’: //Limit to last 10 days
$wp_query_args[‘date_query’] = array(
‘after’ => date(‘Y-m-d’, strtotime(‘-10 days’))
);
break;
@ the theme developers: Please can this can go on the wishlist and be included in a future version.
The amount of days should be a selectable field in the widget option.
Thanks for reply and information. Now I found the crash maker Plugin. It is the td-api-plugin. I updated theme from 4.7 to 4.8 after deactivating and deleting td-plugins. Td-composer and td-counter is automatically included and active. Amp and mobile theme plugins I installed by newsmag. The last step was activating the td-api plugin. This pugin I didn’t remove. It was inactive, but by one click to activate follows the fatal error. By renaming td-api-plugin on the FTP-Server this plugin was deactivated and the website runs without problems. Top!!!
Hi,
There could be issues like the ones you mention with the single image elements, they may happen when both our composer and Visual composer are active. These will be fixed in the next update.
In the mean time the fix is to download this file – http://cdn.tagdiv.com/wp-content/uploads/2019/04/tdc_map.zip and replace it in the tagDiv composer
– http://prntscr.com/nikwre
The single images will look and function correctly after doing this.
Sorry for this inconvenience, the fix will be included in the next theme update.
Thanks
We are talking about the header logo, right? When I open the front page in the TD Composer, it warns me that the page has not been made with TDC, but it is not true. The logo does not move.
Hi Bogdan B,
Thanks for the info.
I was able to update without problems, but I don’t think it was quite the mobile theme have been moved to the td-composer, because whenever I want to update my modifications, I have to be aware of plugins and updates them as a whole without knowing if it is necessary.
Best regards,
Hi,
Most of the theme files were moved into the tagDiv Composer plugin as per the requirements of Envato: https://help.author.envato.com/hc/en-us/articles/360000472383-WordPress-Theme-Requirements. We wrote an article on the subject here: https://tagdiv.com/updating-the-core-of-tagdiv-themes/ Moving forward with such requirements, a child theme will only work with functions.php, and style.css, as there are very few files left in the main theme as Envato, requires all functionality to be added through plugins. I that case, all of your additional customizations will be lost, sorry! Before making any update, we recommend to make a full backup to your database and then, all of your additional customizations should have to be re-added.
Regarding on TD Composer, please notice this the main required plugin of our theme and it has to be enabled if you want to have the all theme functionality. If you do not like it, you can also install the WP Backey and keep both to be enabled.
Sorry for the inconvenience and thank you for understanding.
Thank you!
Two of my threads have been left without a reply. I understand there are many requests but I would appreciate if my problem is solved because I’m stuck with it for a long time now.
Thread 1: https://forum.tagdiv.com/topic/newsletter-not-working-in-the-footer/
Thread 2: https://forum.tagdiv.com/topic/problem-with-td-composer-plugin/
Hi,
If you want to set the ad above the feature image you need to set the code in -> wp-content/plugins/td-composer/legacy/Newspaper/parts/single/loop-single-2.php
-> https://www.screencast.com/t/GAvLOeDsw
Thanks.
yesterday i updated my newspaper theme and now all my Tag Div pludins say they are outdated and when i update them they fail to update..
tagDiv Composer
Outdated /
tagDiv Cloud Library
Outdated /
tagDiv Social Counter
Outdated /
tagDiv Newsletter
Outdated /
tagDiv Mobile Theme
Outdated /
How do i fix this ?
– marlene
Hi,
If you want to change this in single.php file you can file this theme file in wp-content/plugins/td-composer/mobile/single.php
Thank you!
Hi,
Please notice that our new theme update comes with some core changes and that’s why this file was disappeared. Please check the official announcement from here -> https://tagdiv.com/updating-the-core-of-tagdiv-themes/ All of the theme core files were moved in the plugin’s folder and now, if you want to have the same customization you need to do it again through editing that folder which is placed in TD Composer folder.
Thank you!
Hi,
Most of the theme files were moved into the tagdiv composer plugin as per the requirements of envato: https://help.author.envato.com/hc/en-us/articles/360000472383-WordPress-Theme-Requirements.
We wrote an article on the subject here: https://tagdiv.com/updating-the-core-of-tagdiv-themes/
Now you can find the mobile files in wp-content/plugins/td-composer/mobile -> https://www.screencast.com/t/ub6MLXUZu9AM
Thank you for your understanding!