Search Results for 'block'

Results from the Forum
Calin
tagDiv Staff

Hi,
When a page comes out of the cloud it is similar to what you would do, but you don’t have to start from 0. As for reducing database queries, this depends a lot on what is set on that page and how big it is. For example, you can use redis and cache on flex block to reduce the number of database requests.
Thank you!

Calin
tagDiv Staff

Hello,
This code is part of Gutenberg and is a title block.
If you use classic editor and want the first element from the content to be the post title, then just copy the title an set it as first element (eventually set it with h2 not h1, h1 will already be set on post title element).
Another alternative is to edit the single post template and move the page title that is over image above the post content.
Thank you!
Thank you!

Calin
tagDiv Staff

Hi,
Use tagdiv composer on elements that are on 2 lines and check the width, I see that now this is set on 330px set the width 100%.
In case that you can not find the option you can use this custom css:
.tdm_block_inline_text_simplified_2.tdi_59 {
width: 100% !important;
}

Thank you!

Lamb
Participant
#0

Hello Team,
I have noticed there are a lot of bugs with gutenberg editor .. it’s nice in terms of features but many times it was unstable and had to remove the entire post and start from scratch again because it shows that entire blocks were removed .. or it was just completely bugging …
Do you know why ? and how to solve this ?
I particularly need guntenberg for partial lockers for example

Lamb
Participant
#0

Hello Team,

I have added a table of content in the article posts, but see there are two issues:
See example : https://www.captainforest.com/how-will-a-plastics-treaty-make-a-difference-in-solving-the-plastics-crisis/

1) the title of the article is considered H1 and it is added as H1 in the table of content.
How have I added the title -> from guntenberg … and saw in guntenberg to add a title, it’s this code :
<!– wp:post-title /–>
I removed gutenberg, and went back on classical editor (because of the many issues with gutenberg) and put this code at the begining of the article (code tab of the edit post): <!– wp:post-title /–> why is it considered H1 ?

2) At the end of the table of content it ads related as H2 .. but related are a flex block so I don’t know why it is considered H2 and if you click on related in the content table it brings nowhere..

regio-online
Participant
#0

Hi,
We are using cloudtemplate blocks for our site https://regioonline.nl, but not cloud pagetemplates yet. I tried on one page (https://regioonline.nl/delfzijl/). I opened the page in Tagdiv Composer and imported the pagetemplate Fast News. Got a view what this did for that page, but was not satisfied. So I did not save the page, but after refreshing, deleting cache and browser history, login ou and loging in, the mentioned page still show the cloudtemplate for that page. (see https://regioonline.nl/breda/ for original page setup without page cloudtemplate).

If I go to edit page in WordPress editor I don’t see revisions (option missing completely) https://prnt.sc/Zmk-qcNkL7sx, so I can not set it back to an earlier state. In menu Cloud Templates, under page templates there are no cloud pagetemplates mentioned to remove (https://prnt.sc/zbCwOceSRjaA), so that also does not help. Any suggestions on how to undo the cloud page template and get back to previous setup, or is this not possible?

In addition to this question:

My newssite has about 62 regional pages. None of the pages are cloudtemplates, only the blocks. Is it wise to replace every page with a cloud template (all 62 of them have different categories to filter on), or does this not offload the database a lot?

Thanks for taking the time again for my questions. Much appreciated!

msimard66
Participant
#0

Hello TagDiv Support,

I’m currently using the Newspaper theme and would like to display weather information in my site’s header. I noticed that the built-in Weather element in the TagDiv Composer only supports manual entry of a city name, but does not allow for automatic geolocation-based weather display for users.

Here’s what I’m trying to achieve:

Show the current weather icon + temperature + city name
Automatically detect the user’s location via geolocation (browser-based)
Display weather dynamically for each visitor (e.g. someone in Nairobi sees Nairobi weather, someone in Paris sees Paris weather)

I attempted to use a custom script via a Raw HTML block, but it appears that script tags are either stripped or not executed in certain theme areas (like headers). I also tried using the Weather element, but it requires a static city name and doesn’t support location detection.

Could you please let me know:

1. Is there a supported way to integrate geolocation-based weather with the theme?
2. Can I use the existing Weather element to achieve this with dynamic location?
3. If not, what is the recommended method for safely adding a custom weather script that supports geolocation?

I’d really appreciate any guidance or best practices to make this work cleanly within the theme structure.

Thank you in advance!

Best regards,
Martin
Website: https://africanewsreport.com

simchris
tagDiv Member

Resource optimization *does* affect server performance. Such as too many modules per sidebar, homepage, not blocking attack vectors like xmlrpc which kill processes.
But good luck.

Calin
tagDiv Staff

Hi,
This can be done if you are using a custom css like this one:
.td_block_social_counter .td_social_type .td_social_info_counter {
display: none;
}

The css should be set in the theme panel > custom code> custom css.
I hope it will help you!

Calin
tagDiv Staff

Hi,
At the moment, the tagDiv Composer do not offer a built-in way to programmatically modify the query parameters of Flex blocks via a filter or a similar method, sorry!

We understand how powerful and flexible this kind of functionality can be, especially for advanced use cases that require precise control over data output while retaining full access to design tools. While Flex blocks are designed to offer a range of filtering and sorting options within the interface, they currently don’t support external query customization through hooks or filters.

Thank you for your understanding and sorry for this inconvenience!

Calin
tagDiv Staff

Hello Antonio,

Normally the theme panel option should be apply on all image element from our theme https://i.imgur.com/aYfN2E9.png
You can also enable the webp option for block so if you have a plugin to optimize the images and provide the version in webp – this will replace the actual image with the webp one = https://i.imgur.com/NnixX9a.png

Thank you!

nearview
Participant
#0

Is there a way to hide the featured image in a Flex Loop block when no featured image is uploaded? Right now, the system displays a default placeholder image in those cases. We’re working with a publisher who has a mix of posts—some with featured images and many without—so the result is a Flex block full of placeholders, which isn’t ideal.

What we’d love to do is have the posts without a featured image just display the title and excerpt, while still showing the full layout (image, title, and excerpt) for those that do include one. Is there any way to accomplish this with the current TagDiv Composer setup?

At the moment, I’m hiding the placeholder using CSS:

.td-image-container:has(.td-thumb-css[data-img-url*=”td_696x0.png”]) {
display: none;
}

This works, but I’m hoping there’s a more integrated solution—ideally something built into the editor that would prevent the markup from being output entirely, rather than hiding it with CSS.

Thanks so much for any guidance you can provide!

nearview
Participant
#0

We often run into limitations using Flex blocks due to our need for more advanced query, filtering, and sorting capabilities. In Elementor, for example, you can assign a Query ID to an element and then programmatically modify the query using filters like this: https://developers.elementor.com/docs/hooks/custom-query-filter/. This approach is ideal because it allows users to retain full use of the page builder’s design controls while also giving complete control over the data output.

Is there any way to achieve something similar with the current TagDiv Composer? Specifically, is it possible to target a Flex block’s query and adjust its arguments programmatically through a filter or similar method?

Antonio Ungaro
Participant
#0

Hello,
I’m currently using the Newspaper theme (latest version), along with LiteSpeed Cache and Cloudflare, and I’m actively working to optimize page speed, especially improving LCP (Largest Contentful Paint) for better Core Web Vitals scores.

To do this, I need LiteSpeed Cache to handle all lazy loading, while the theme must stay completely passive. Therefore, I’ve disabled the lazy load option in the Newspaper theme settings.

However, even after disabling it, I still see the data-lazyloaded=”1″ attribute on the featured image, and it seems that the theme is still injecting some JavaScript (e.g., td-lazyload.js or inline behavior) responsible for lazy loading.

This is problematic because when the theme’s lazy load is active, Googlebot fails to detect and index images properly, causing a loss in visibility (especially in Google Discover).

My questions:

How can I completely disable any lazy loading script or HTML output from the Newspaper theme (including Composer elements)?

Is there a filter, hook, or function to prevent the theme from adding lazy load markup?

Which components (modules, blocks, featured image logic, etc.) enforce lazy loading regardless of the main theme settings?

I need full control over lazy loading via LiteSpeed Cache to ensure the images load fast and are visible to search engine bots.

Thank you very much for your support.

Best regards,
Antonio
http://www.sport24h.it

ari-s
tagDiv Member

Hi there,

Thanks but that deletes the whole element including the article.

We have not added any plugins and are using the exact template as this one here:
https://demo.tagdiv.com/newspaper_towntalk_pro/2023/06/16/td-post-community-unites-to-support-families-affected-by-recent-natural-disaster/

Can you please advise how to remove the author block at the base?

Thanks
Ari

Calin
tagDiv Staff

Hi,
Can you please provide a link to the website?
Also, can you check the website traffic, is from human or bots? If is from bots. then you should use Cloudflare and WordPress to block those bots to access the website.
Thank you!

birdway
Participant
#0

Hi there,

As mentioned earlier, I’ve created a Custom Post Type called “Services” using the CPT UI plugin, and I’ve assigned it to a custom single post template — “CALI SIGHT PRO.”

This layout includes such elements as a CPT Content block and a CPT Background Featured Image block
Screenshots for reference:
CPT BG Image: https://prnt.sc/_56T72WPeVBw
CPT Content Block: https://prnt.sc/oSrRmSCfkkOd

I’m not entirely sure how to edit or replace the content inside the CPT Content block and make the background image dynamic, so it automatically uses the post’s featured image

Thanks in advance for your help!

actionmx
Participant
#0

FOlks i need help to understand if there is something on my theme that is helping google to block my website since 3 months from google.

shaunitnishant
Participant
#0

Hello,

I’m currently facing an issue with text editing on my website using your theme (Newspaper theme).

Problem Description:

I am unable to edit any inline text or heading text in tagDiv Composer. Even after I make changes, the default placeholder text keeps showing on the front end.
• I can change colors, sizes, and other design elements successfully.
• But when I try to change or write my own text, it doesn’t reflect — only the default text appears.
• This issue occurs for both headings and inline text blocks.

What I’ve Tried:
• Cleared cache (browser and WordPress cache)
• Tried on multiple browsers

None of the above fixed the issue.

This is a serious problem as I can’t publish content with placeholder/default text. Kindly look into it urgently and let me know what steps I should follow to resolve this.

Thank you,
Shaunit Nishant

perspektive
Participant
#0

Hi TagDiv Team,

I’ve encountered a display issue with the Flex Block 1 module when enabling additional post metadata (such as author and date) alongside the title.

When these elements are shown, they sometimes overlap with the next row of post thumbnails, creating a messy layout. You can see an example of this behavior here:
https://perspektive-online.net/category/themen/kultur/

Is there a way to fix this or ensure proper spacing so that the metadata doesn’t interfere with the layout of the next row?

birdway
Participant
#0

Hello,
I’m facing an issue while working with the Custom Post Types UI plugin.

What I did:
Installed and activated Custom Post Types UI;
Created a new Custom Post Type called Services;
Added several entries (posts) to the Services CPT;
Assigned a Cali Sight template (from the Cloud Library) to display the single service posts using the Newspaper → Cloud Templates section;

The template loads correctly and displays blocks with custom fields like “Sample field data”, icons, gallery images, advantages, etc.

The problem:
When I open a single “Service” post in the admin editor, I don’t see any custom fields to control or edit this content
Only default theme fields appear (Sidebar, Subtitle, Source URL, etc.)

I don’t understand how or where to input the actual values for those template fields (like the icons, sample data text, or images shown in the front-end)
I’m also unable to upload or manage the images used inside the template

What I want to achieve:
Use a single Cloud Template (Cali Sight) for all my service posts;
Show unique content (text, icons, images, advantages) for each service post using dynamic custom fields;

Screenshots(https://prnt.sc/Xwf_va4rD9lG https://prnt.sc/BENFP4B35R4y)

Thank you in advance!

gabor
tagDiv Member

Many thanks for the answer.

I am really stuck here regarding the efficient practices, like use the Gutenberg classic or block?
– What is the normal TagDiv practice to create the content itself?
If there is any much up to date and specialized video or web material for “content creating” that also helps.

Calin
tagDiv Staff

Hi,
Yes, there is an option to exclude categories/taxonomies https://forum.tagdiv.com/flex-block-settings-guide/ – use the filter tab and in taxonomy filed set the category id with “-” in front and that one will be excluded – https://i.imgur.com/pSPh9La.png
Thank you!

fnewsmag
Participant
#0

I have Flex Block 1 elements for multiple categories on my homepage as previews for each section of our newspaper.

If I have Posts that are in both in the Multimedia and News categories, for example, I’d like to make sure that the Flex Block 1 shows all Multimedia posts but excludes any that are also tagged as News to avoid duplicates.

Is there a way to filter posts in flex blocks so that it shows all posts of the category but exclude posts of another specified category?

Thank you!

gabor
Participant
#0

How to edit a post? I mean can I edit the post content with TagDiv composer, or just with the Gutenberg?
What I’ve done so far:
– I’ve successfully installed and registered the latest (Version: 12.7.1 ) TagDiv NewsPaper, System Status is all OK.
– Then I imported the Architecture prebuilt web site with content.
– Now I try to edit an existing Post, say “MIT Named World’s Top Architecture School for Third Year in a Row”.

As far as I see, for Posts I can not see the Edit with TagDiv Composer on the WP top bar, it is just for Pages, so for example for Home (which is a page) I see Edit with TagDiv Composer on the WP top bar, but for the Post like “MIT Named World’s Top Architecture School for Third Year in a Row” I can not see.

Top Bar for the Post

– OK, so I click on Edit Post, which brings me to the Gutenberg Classic, see below:

Gutenberg Classic

I am a bit confused. I do understand the theme settings and the single page templates concept on basic level, but is this the way how I place my Post content? In Gutenberg Classic? (If I switch to block mode then I got this:

Switched to block mode...

…which I also do not want.

What am I missing?
I mean, how to edit Post _Content_

PS: I do not know why my pictures not showing, the img links are working public google drive links

Viewing 25 results - 1,076 through 1,100 (of 39,816 total)