- TutorialsDefault Block Settings Guide
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsOffset Feature
- TutorialsWhat is Ajax preloading?
Hi,
Im trying to add an image in a single image block but i get an error saying: “Invalid data Current state has involved an issue. You could try an UNDO operation (CTRL+Z / CTRL+SHIFT+Z)”.
How can I solve this?
Thank you and best
A new version of the Newspaper Theme is ready to be installed.
when i want to update the theme to 10.3.7 and press the update button my screen goes gray. Are there more people who have that? it’s like being blocked.
Hi!
What’s the best element to use for a block of partners?
It is necessary to display 8 icons of partners, while I did it using the Image box.
Screenshot:

At the same time, this block is displayed too cumbersome on mobile devices.
Screenshot:

For mobile, ideally also 4 logos on top and 4 on the bottom.
Is there a better solution?
Help me please đ
When NextGen Version 3.3.20 plugin is activated it’s not possible to edit Composer block – screen – https://prnt.sc/vccpei
infinity loops instead of edit page open.
When NextGen Version 3.3.20 is disabled – edit window is opening without problem
https://prnt.sc/vccrgr
watch video – https://drive.google.com/file/d/1OIHTpD-p4mc3KsbID94GvmjdgJjXFtGS/view?usp=sharing
I can reproduce this issue more time.
Any chance to fix this?
Right now I have to disable all my images on site to edit Composer block đ
-
This reply was modified 5 years by
kibiribi.
Hello !
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, I am trying to design my homepage, I did everything, it looks good on desktop, but when I am trying to switch to mobile, everything is gone, are the blocks or shortcodes responsive? Why am I getting a completely blank page on mobile, do I need to do everything for the mobile version separately?
Hi,
You can edit the mobile layout using tagDiv Composer -> https://i.imgur.com/WdjlIo1.jpg select the flex block 1 and set on mobile view -> https://i.imgur.com/M1vO4kh.png then in layout you can set the numbers of modules per row -> https://i.imgur.com/Rnxn6m2.png
Unfortunately the number of posts is global for all view ports. If you want to have only one post on mobile, what you can do is to hide the current flex block on mobile and set another one with only one post, this need to be hide on rest of view ports and display only on mobile -> https://i.imgur.com/sM3qAkk.png, unfortunately this option will increase your page size.
Another option is to try the new option for mobile page -> https://tagdiv.com/newspaper-10-3-7-update-brings-customizable-and-fast-mobile-pages/
Hope this will help you!
Thank you!
I tried to import a new section with ‘cloud library’ on an existing page with content. It didn’t work and since that time I can no longer edit the blocks on this page (but it still works on the other pages). What can I do to edit existing blocks in TD Composer?
I think that you want to remove the language from category page, if is so, then this code should work -> https://i.imgur.com/ZUGSR9B.jpg
p:first-of-type.wpml-ls-statics-post_translations,
.single .wpml-ls-statics-post_translations
{
display: none;
}
.single .tdb-block-inner .wpml-ls-statics-post_translations
{
display: block;
}
Please check your website after you replace the code.
Let me know if there is something incorrect.
Thank you!
Hello !
1. You will have to first start looking for a plugin conflict. please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again. Also try and reinstall the tagDiv Composer.
2. My personal recommendation is to change all the blocks to flex blocks. They are way more customizable.
3. You can find only the covid stats in the tagDiv Composer list as you can see here: https://www.screencast.com/t/XNMNB66J76s
Let us know the result !
Hello !
The normal blocks are older features and do not have so much customization abilities. I recommend you to switch all the blocks to flex blocks.
Thank you !
I had similar problem and the issue is a conflict between TagDiv and the new WP block editor (Gutenberg). If you enable the classic editor plugin, tagdiv loads up fine.
I had similar problem and the issue is a conflict between TagDiv and the new WP block editor (Gutenberg). If you enable the classic editor plugin, tagdiv loads up fine.
I had similar problem and the issue is a conflict between TagDiv and the new WP block editor (Gutenberg). If you enable the classic editor plugin, tagdiv loads up fine.
Hello !
There you have the ads, are you runing an ad block ? Or please try from another device.
We have tested your website from multiple devices and browsers and all look good. This is how wee see it on firefox: https://www.screencast.com/t/o6eJvFfudf3
Thank you !
Hi insert_JSH,
Normal our theme is using by default the H3 to display the post titles in modules -> https://i.imgur.com/MPb4geX.png now if you only want to add some css on these H3 you can use the classes that are set “entry-title” then set the link “a” -> https://i.imgur.com/85YbojF.png here is an example of code :
.entry-title a:after{
content: '';
position: absolute;
width: 0; height: 3px;
display: block;
margin-top: 5px;
right: 0;
background: #fff;
transition: width .2s ease;
-webkit-transition: width .2s ease;
}
.td-animation-stack:hover .entry-title a:after{
width: 100%;
left: 0;
background: red;
}
This code need to be set in theme panel> custom code> custom css.
Also if you want to apply the code only for h3 use this custom css:
h3.entry-title a:after{
content: '';
position: absolute;
width: 0; height: 3px;
display: block;
margin-top: 5px;
right: 0;
background: #fff;
transition: width .2s ease;
-webkit-transition: width .2s ease;
}
.td-animation-stack:hover h3.entry-title a:after{
width: 100%;
left: 0;
background: red;
}
Hope this will help you!
Hello !
Unfortunately that element will need to be looked after with the inspector tool ( F12 on google chrome )
For what you need it is a better practice to set a custom css tag as you can see here: https://www.screencast.com/t/j209MB740Db And use a css code like this:
https://www.screencast.com/t/AlX9fifb
Code example: .weekly {
display:none;
}
If you want to be displayed, simply set it to block: .weekly {
display:block;
}
The code must be inserted here: https://www.screencast.com/t/J1Nxw5s5
Thank you !
hellow, I am using Baby pro theme đ
‘td-baby-hero’ row, cloumn named is Flex Block 1
it is consist of 4 posting
pc view is perfect.
but mobile, Four posts are placed down.
I want to make the first posting composition screen to be 1 instead of 4 on mobile view.
I don’t want to use the mobile plugin and I want to keep this screen
Is it possible?
Is there a way to hide Author name and comment count from blocks td_block_9 and td_block_10? I am able to do so on Flex block 3 under the Layout tab. Thank you.
Hi
When I try to edit certain pages I can change them not problem and it says changed are saved but who I view the web page the changes arenât there and when I refresh the changes have gone.
Also when I try to edit the mobile page version of the above I just get a blank screen, I would show you the screen shots of issues but you can’t attach anything
Also the mobile menu doesnât update in mobile when I check on my mobile phones
I tried de-activating all plugins bar tagdiv and amp but still didn’t work
Also another bug I found when on certain pages the block title didnt update and when you look on the page instead of the title it just says black title I found taht was solved by deactivating the plugin autolinks
Hi,
I noticed several “Flex Block” has “Title tag (SEO)” option. Should I leave it as default (H3, H4) or change it to H1? Is this the title of the block or the title of the article?
Thank you.
As title, in the article meta info’s setting of the layout of the block. There only shows the “category tag”, it doesn’t show the “post tags”. I want to add “post tags” to my meta and show in the block, please hele me. Thanks a lot.
Sorry but I can not manage to edit the Top Row in my Home Page (the Flex Block 2 containing the post “Inviting Beachfront Penthouse in CoBe) move the block up so that there is no space between the block and the Header Main Menu. I want it to look like the Home Page of your Home-Black Version</ where there is no space between the Block and Header.
Hi there,
I have a Flex Block 1 in my Newspaper theme that should be temporary invisible. So I go to the tab ‘css’ and set the ‘display’ value to ‘Hidden’ instead of ‘Show’. I must do that for every viewport (desktop, tablet and mobile).
Within a week, the same element should be made visible again. So further in time, I want to click the hidden element again so I can change the CSS ‘display’ value to ‘Show’ again. The only problem is: I can’t find the block in TagDiv Composer again. It’s really invisible. Not faded to indicate that it’s not visible on the frontend anymore, no: totally invisible. In fact, it looks like it’s deleted…
My question is: how can I make that element visible again? Is there a TagDiv setting that show the hidden elements in TagDiv composer?
Thanks for helping! đ