- NewsmagtagDiv Composer Tutorial
- NewsmagHow to use the Visual Composer plugin
- NewsmagHow to update a plugin
- NewsmagWhat’s included in Newsmag theme package
- NewsmagRequirements for Newsmag
- NewsmagInstall via WordPress
- NewsmagInstall via FTP
- NewsmagBlock settings tutorial
- NewsmagtagDiv Social Counter tutorial
- NewsmagHow to update the WPBakery plugin
- NewsmagPage Menu
- NewsmagCustom ad spots
- NewsmagSmart sidebar
- NewsmagVideo playlist
- NewsmagPage templates
- NewsmagHomepage – How to build and set it
Hey there,
Is there an option to create a load more button for a specific text element.
Imagine we have a very long paragraph but we want to keep it short unless the user wants to read more – can this be done with the composer?
Best regards!
Hello,
You need to use the plugin’s shortcode to add the gallery on the page or where you want. A shortcode can be inserted also by using the element called “Column text” or “Text with title”. “Column text” and “text with title” elements have a button called “edit content” and if you click on that button, the WP Editor will open, and you can add some text/code/shortcode there. Close the WP Editor from X, save the changes from Composer and view the page to see the changes.
Thank you!
Hello,
If you want to add online the icons and the links, you can use the element social icons, where you can add the custom icons -> https://i.imgur.com/nOBMDFe.png
You can add the svg in the manager -> https://forum.tagdiv.com/tagdiv-composer-website-manager/
Please make sure that you added the entire link to the social icons and the links contain the https://www.
Thank you!
Hello,
Please edit the search page with the tagdiv Composer, click on the results(Posts Loop element) and delete the value of the offset posts. Let it empty with no space no value: https://app.screencast.com/Gh9jDf6t0XtLS
If you use a flex block there, then please set the special filter there Search – Current search.
Save the changes and view the results.
I hope that helps you!
Thank you!
Hi everyone,
We are experiencing Slow Queries with TD Composer, do you have any kind of solution for this?
This is interesting and really help screenshot , I had disabled the toolbar – LOL
Anyway thanks, now with that toolbar help , I think I can easily go to the edit page of TagDivComposer.
Thank you!
But how to go into TagDivComposer for this page?
Hi,
You can make the changes with tagdiv Composer.
– https://forum.tagdiv.com/cloud-library-templates/
– https://forum.tagdiv.com/design-post-pages-using-cloud-library-templates/
– https://forum.tagdiv.com/cloud-library-category-templates/
Thank you!
Hello,
Those are just blocks -> https://i.imgur.com/q30qPHt.png and elements from the Composer. Are you referring to editing the template? You can edit it like all the other templates.
Thank you!
When I click on any case and try to edit its not show tigdivcomposer button and also no data to modify which is showing on the case page
Sure
I’m also providing a link to a screeenshot of the TagDiv Composer Editor: https://ibb.co/xXh9m5n
The gray area is the main zone (tdc_zone) of the site. That has a fixed width, which never changes, irrespective of what content and strech settings we put on the individual rows.
This is not something that happens on other sites on which we use the same theme. e.g. https://ibb.co/b6Kn3g4
If you look at the 2nd screenshot, the zone (tdc_zone) covers the entire available screen. In the first screenshot, there seems to be white areas on the right and left of the zone which prevent it from stretching.
Thanks!
Hello,
Please let me know where you want to upload the SVG code. You can set here with tagdiv Composer -> https://i.imgur.com/SwT4xWp.png
Thank you!
Hi,
Please edit the page normally in editor and change the setting for the page into Template: Default template because I think you have there the setting: Pagebuilder + Latest articles + Pagination and these are not editable by the tagDiv Composer plugin.
You can set the posts loop from the composer, but now you have managed to solve the issue, right?
Thank you!
Hello,
If you want that form, then please set the shortocode of the element https://www.mc4wp.com/kb/arguments-in-form-shortcode/ in the column text.
A shortcode can be inserted also by using the element called “Column text” or “Text with title”. “Column text” and “text with title” elements have a button called “edit content” and if you click on that button, the WP Editor will open, and you can add some text/code/shortcode there. Close the WP Editor from X, save the changes from Composer and view the page to see the changes.
Thank you!
Hello,
I am having several issues with my home page configuration; I am trying to set it up like this example: https://demo.tagdiv.com/newspaper_pro/
The home page layout I built using the TD Composer looks great except the “Posts Loop” pagination does not work unless I select the “Pagebuilder + pagination + latest articles” selection.
But when I select the “Pagebuilder + pagination + latest articles” setting for the home page, pagination works but I have a new set of issues:
1. The entire post content is showing for all 10 posts instead of the layout I would prefer to show using the “Posts Loop” element
2. On the paginated pages (page 2 for example) the entire post content is showing instead of an image and article title like on this example: https://demo.tagdiv.com/newspaper_pro/page/2/
3. A second sidebar section appears in the “Posts Loop” section which I don’t want.
Can you please tell me how to fix this? I would prefer to use the “Posts Loop” element in TD Composer, but pagination does not work unless I select the “Pagebuilder + pagination + latest articles” option which causes the other issues I already mentioned.
Thanks in advance for your help!
Hello,
Thank you for the suggestion. I’ve checked, and I don’t have any security plugins disabling the REST API or XML-RPC. Additionally, I can access the /wp-json/td-composer endpoint without any issues, but the problem arises when trying to access internal endpoints like /wp-json/td-composer/save_post, which still returns a 404 error.
It seems the namespace is registered correctly, but the specific endpoints within it are not accessible.
I appreciate any further suggestions that might help resolve the issue.
Best regards,
Hello,
I am encountering an issue when trying to access the REST API endpoint /wp-json/td-composer/save_post. The route returns a 404 error (“No route was found that matches the URL and request method”). However, I am able to access the namespace /wp-json/td-composer/, which suggests the namespace is registered, but the specific endpoint is not.
Here’s what I’ve already tried to resolve the issue:
1. Code Review
I checked the tdc_ajax.php file where the /save_post/ route is registered with the following code:
php
register_rest_route($namespace, '/save_post/', array(
'methods' => 'POST',
'callback' => array('tdc_ajax', 'on_ajax_save_post'),
'permission_callback' => '__return_true',
));
I tested replacing the callback with an anonymous function that returns a simple response, but the 404 error persists:
php
register_rest_route($namespace, '/save_post/', array(
'methods' => 'POST',
'callback' => function() {
return new WP_REST_Response('Route is working', 200);
},
'permission_callback' => '__return_true',
));
2. Server Permissions
I adjusted the server permissions to ensure:
Directories are set to 755.
Files are set to 644.
The wp-config.php file is secured with 600 permissions.
Ownership of files and directories is set correctly for the web server user (apache).
3. Permalink Rewriting
I resaved the permalink settings in Settings > Permalinks in WordPress, but it didn’t resolve the issue.
4. Cache and ModSecurity
Cleared all caching services (Cloudflare and any caching plugins).
Temporarily disabled ModSecurity to ensure it wasn’t blocking the REST requests.
5. PHP Extensions and Configuration
Verified that the necessary PHP extensions are active, including:
json
curl
mbstring
openssl
The PHP version is 7.4, which meets the requirements.
Increased the PHP limits in the php.ini configuration:
memory_limit = 256M
max_execution_time = 300
post_max_size = 64M
6. Plugin and Theme Conflicts
Tested with all other plugins disabled, leaving only the one registering the REST route.
Switched to the default Twenty Twenty-One theme to ensure there was no theme conflict, but the 404 error persists.
7. Error Logs
Checked the PHP and server (Apache) error logs but found no relevant messages related to the failure in registering the REST route.
8. Namespace Adjustments
The namespace is currently set to ‘td-composer’. I also tried adding a version (‘td-composer/v1’), but the issue remains the same.
9. Debugging Attempts
I added debug statements to ensure that the rest_api_init hook is being called. The debug message appears, confirming that the code is executing, but the /save_post/ endpoint is still not accessible.
After trying all these solutions, I am reaching out for assistance. Is there any specific issue with the Newspaper theme or the td-composer plugin that could be causing this failure to register the route?
Thank you in advance for your help. I look forward to your guidance.
Good Afternoon,
I’m having an issue with pagination not working on my site. I’m using a Cloud Template that was built with the TD Composer.
After adding a “Posts Loop” element to my home page, the posts loop and pagination buttons display correctly on the home page, but when I click the pagination button for page 2 it takes me to a page with no content (only the header and footer show).
The URL of the pagination page is example.com/page/2/
Do I need update the permalink settings to make the pagination work correctly?
My Reading settings are:
“A static page” and the page in question is selected as the “Homepage” and a different page is selected as the “Posts page”.
Thanks in advance for your help!
Hello!
We have 3 options available for mobile versions that you can use:
1. Responsive version: A responsive version of your website looks similar to the desktop version. TagDiv Composer is used to edit the page. Click on the mobile viewport: https://www.screencast.com/t/XDQJedlggSB. There, you can see your mobile version and edit or adjust the elements to look better.
2. Mobile pages: https://tagdiv.com/newspaper-10-3-7-update-brings-customizable-and-fast-mobile-pages
3. Mobile theme plugin: The Mobile Theme is a performance-optimized theme included in the main Newspaper theme that only loads on mobile devices. It comes with its own templates and designs for pages, posts, categories, etc., so your current templates from the desktop theme will get converted to the mobile theme layout. Please see https://forum.tagdiv.com/the-mobile-theme/ and https://forum.tagdiv.com/mobile-theme-introduction/ for more information.
A full explanation is here: https://www.youtube.com/watch?v=SpGkOnJeNZY
If you need to use mobile version 1 or 2, then you need to uninstall the Mobile Theme plugin and AMP.
Thank you!
Hello,
1. Please let me know when you need the block replacements. You can choose what block you want from composer https://i.imgur.com/hV0E9kP.png -> https://i.imgur.com/yP29dQ9.png -> https://forum.tagdiv.com/flex-block-settings-guide/
2. To increase page speed, I recommend checking which thumbnails you are using on your blocks. You might want to avoid having all of them enabled and optimize and regenerate images. You can use the EWWW Image Optimizer for image optimisation, and the OMGF plugin for fonts. Additionally, you can use the WP Rocket plugin.
here are many optimization guides provided by our users here in the forum, some made by us; you could check some of them
– https://www.infophilic.com/get-almost-100-pagespeed-newspaper-theme/
– https://forum.tagdiv.com/cache-plugin-install-and-configure/
– https://forum.tagdiv.com/how-to-make-the-site-faster/
– https://forum.tagdiv.com/topic/high-number-of-ajax-request/
– https://forum.tagdiv.com/topic/score-100100-pagespeed-with-newspaper-wordpress-theme/
– https://www.andraware.com/wp-rocket-for-newspaper-theme/
– https://forum.tagdiv.com/topic/page-speed-guide-for-2023-beginners-and-advanced/
– https://forum.tagdiv.com/topic/newspaper-theme-speedify-your-website/
– https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/
– https://forum.tagdiv.com/cloudflare-cdn/
– https://forum.tagdiv.com/topic/theme-causing-high-cpu-usage-2/
– https://forum.tagdiv.com/topic/sql-querys-high-cpu/
– https://forum.tagdiv.com/topic/newspaper-theme-slow-to-respond/
– https://premium.wpmudev.org/blog/optimizing-your-wordpress-database-a-complete-guide/
– https://underconstructionpage.com/optimize-wordpress-database/
– https://crunchify.com/better-optimize-wordpress-database-all-in-one-guide/
Thank you!
Hello!
You need to use cloud templates to be able to edit it with the tagDiv Composer.
Check the documentation here: https://forum.tagdiv.com/tagdiv-shop/
Thank you!
my all pages TD Composer running properly. but i am unable add or edit shop page. Shop — Posts Page, Shop Page
Edit | Quick Edit | Trash | View | Clear this cache | TD Composer is disabled on Posts Page.
see https://mantravidya.com/shop/
my all pages TD Composer running properly. but i am unable add or edit shop page. Shop — Posts Page, Shop Page
Edit | Quick Edit | Trash | View | Clear this cache | TD Composer is disabled on Posts Page
Hello!
You can install how many footer templates you want from here without affecting anything on your website: https://app.screencast.com/vcVvS8VVkOovk
One can be global, and the others can be used on other pages. To assign a footer template without being global on other pages, you need to edit the page with the tagdiv Composer, go to the Website Manager, and assign the footer: https://app.screencast.com/NULpUh331LgXO
Thank you!
this is the error
b64DecodeUnicode wp-content/plugins/td-composer/assets/js/js_files_for_wrapper.min.js?ver=def8edc4e13d95bdf49953a9dce2f608:14
<anonymous> wp-content/plugins/td-composer/assets/js/js_files_for_wrapper.min.js?ver=def8edc4e13d95bdf49953a9dce2f608:44
<anonymous> wp-content/plugins/td-composer/assets/js/js_files_for_wrapper.min.js?ver=def8edc4e13d95bdf49953a9dce2f608:45