- NewspaperFlex Block Builder and Flex Loop Builder
- NewspaperHow to use the Flex Blocks cache option
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to insert a block inside the content of a post
- NewspaperFlex Block Settings Guide
- NewspaperMeta Info on Modules and Blocks
- NewspaperTheme modules and blocks
- NewspaperThumbnails – Fix strange looking images on blocks
- NewspaperBlock settings tutorial
- NewspaperCategory Tag on Modules/blocks
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperSearch setup for custom post type
- NewspapertagDiv Opt-In Builder – Emails
- NewspaperBookmark – Save For Later
- NewspaperModules Builder in Newspaper Theme
- NewspaperFilters and sorting for taxonomies
- NewspaperUser review system
- NewspaperWooCommerce: Happy “Add to Favorites!”
- NewspaperLockers
- NewspaperLeads
Hi Bettina and Team,
As we have checked with external DB expert and he confirmed below:
——-
I have gone through your issue, and it seems that your site is running WordPress. The query itself seems to be originated from the theme and although we would be able to alter the theme’s core codes, it would make the theme be blocked from future updates. Additionally, since the nature of the site is a “News Portal”, the site would naturally consume a lot of resources due to running the queries in parallel.
——————-
It is clearly theme issue. Kindly help us to get this solved.
We are getting lots of saturation issues due to your theme issues, we are advised to do following, plese check
I have gone through your issue, and it seems that your site is running WordPress. The query itself seems to be originated from the theme and although we would be able to alter the theme’s core codes, it would make the theme be blocked from future updates. Additionally, since the nature of the site is a “News Portal”, the site would naturally consume a lot of resources due to running the queries in parallel. I would suggest implementing any remote caching tools, such as nitropack.io or asking the hosting provider to implement Redis Caching to the Database, so the load on the server would reduce.
Please help us to fix the issue.
Thanks
Hello Mark!
Try this code:
.td-post-content a, .td-post-content blockquote a {
text-decoration: underline dotted;
text-decoration-color: red;
color: black!important;}
Thank you!
Hi Bettina,
Thanks but you send me a screen shot of the image adjustment in flex blocks, which require I link to posts on our site. I need this image to link to an external website, so I cannot use flex blocks or other TagDiv blocks.
So I am trying to adjust the image in an image + text element, which does not have the same image adjustment options.
Any ideas?
Thanks,
Kaitlin
Hello Bettina, the problem is that the code is not working anymore in the plain text and block quotes.
I have used only code code and not seperate for plain text links and blockquotes.
I have only used one code previously that I sent to you that is working perfectly for each hyperlink in the post.
Plz confirm did you inspect the element in the post link that I provided to you?
I you don’t then please inspect this post in console and then tried putting the code to see the result
Hello @Maurafarah!
Make sure you use the latest update of the theme and the TagDiv Composer. You can use the posts loop element or flex block element: https://forum.tagdiv.com/posts-loop/ -> https://forum.tagdiv.com/flex-block-settings-guide/
Thank you!
Hello @great1212!
The last code seems to work well: https://prnt.sc/YM85Kni3d5Ne
Or how would you like to work? Make a video of how you add the blockquote.
Thank you!
Hello @zelda!
A more elegant method is to override the child theme. You need to take all the code of the flex block 2 from 4386 to 6268 lines, make the changes, and change the word “add” to “update”: https://prnt.sc/sbzdlfUovced
Thank you!
I have used the blockquote for adding it. But, I also use in plain text. But, neither is working.
Please check at this picture . . .
I mean to say neither any hyperlink in the post changes by the CSS code you provided earlier.
I want to use this effect on each hyperlink in the post, including body text and blockquotes.
I am also sending you the link of the article, so you can easily inspect the article elements at your end.
I was previously using this code to green color text and line on hover. This code is applying currently.
.td-post-content p span a span {
color: #2d756e !important;
font-size: 18px;
}
.td-post-content p span a {
color: #2d756e !important;
font-size: 18px;
}
.td-post-content li span a,
.td-post-content li a span,
.td-post-content a {
color: #2d756e !important;
font-size: 18px;
}
Please feel free for ask any queries.
Best Regards,
Hello @Zelda!
You need to add the new thumbnail size for the flex block too. Edit the td-composer\legacy\Newspaper\includes\td_config.php file and add your new thumbnail size after 4976 line name => variable.
Thank you!
Hello @great1212!
For me it is working great: https://prnt.sc/P0dIozLh0v0W
Let me know how you’ve added the blockquote, so I can check on my end.
Thank you!
Hello Mark!
Every element from your page has a class that you should add it for the CSS code. For example, for the post content and blockquote links you can write the CSS like this:
.td-post-content a, .td-post-content blockquote a {
text-decoration: underline;
text-decoration-color: red;
}
Hope that helps you!
Thank you!
Hi tagDiv,
There is a number of thumbnails size already available by default with the NewsPaper theme.
I also add mine with the Theme API.
Here my actual thumbs config in the theme panel.
But when I edit blocks, megamenu … with tagDiv composer, only a few part of this thumb sizes are available in the Image Size settings : here a screenshot.
Maybe I miss something ?
My WP version is 6.0.1 and my NewsPaper version is 11.5.1.
Thanks for your help.
Hello @kjogedartclub !
In order to reduce the space there, please choose to add a new element above the flex or grid called “Title”. Delete the custom title from the block. Every element has a CSS tab where you can change the margin, padding, and apply 0 or a negative margin: https://prnt.sc/njsQ7dD71kA-
Thank you!
Hello Paulinho!
1. Go through the following guide: https://forum.tagdiv.com/general-options-may-interfere-with-newspaper-theme/ to ensure that nothing is blocking this request.
I recommend you use only tested plugins with our theme.
2. Examine the settings or uninstall the Autoptimize plugin to see what happens.
3. Maybe you use the old widget style and that’s why it’s not appearing in the backend, but it should be in Appearance-> Widgets.
Thank you!
Hello @great1212!
Oh, so that is another class to complete there. So, replace the code with the new one:
.td-post-content a, .td-post-content blockquote a {
text-decoration: none;
color: #18272F;
font-weight: 700;
position: relative;
}
.td-post-content a::before, .td-post-content blockquote a::before {
content: "";
background-color: hsla(196, 61%, 58%, .75);
position: absolute;
left: 0;
bottom: 3px;
width: 100%;
height: 8px;
z-index: -1;
transition: all .3s ease-in-out;
}
.td-post-content a:hover::before , .td-post-content blockquote a:hover::before{
bottom: 0;
height: 100%;
}
Thank you!
How do I change the spacing between my Title element and my Grid block and Flex block? I think there are too much space from my title (Seneste Nyheder) and down to the Big Grid and from the title (Flere Nyheder) to the Flex Block
Take a look here: https://www.kdc-dart.dk/
TIA
nimmer
Hi, i’m looking to debug my website because when i open on the mobile and click on the top bar menu it doesn’t load.
Not sure exactly what blocks it if you can take a look, please?
Thank you
Hello Support Team
my Website is https://www.worldgirlportal.com/
Disable Pagination and get Every Module, Search Page, categories Page, Tag Page all is Infinite Loading + load More Button Active
Only Categories Module Enable this Option “Infinite Loading + load More”
I Need Desktop Version and Mobile Version Every Block Categories, Tag, Search Page is Get Infinite Loading + load More Option
How to Do this Enable?
—————For Example ——
I Create Search Templates this Done but Only Desktop
you se Desktop & Mobile this URL https://www.worldgirlportal.com/?s=bollywood+news
Desktop Version is Ok
But Mobile Version Some URL is Pagination – I have not Pagination but Get Infinite Loading + load More Option
Please Support
Update: I found that for some reason the Flex Block 1 default settings for the Review and Author settings were “undefined” and when I set them, it didn’t seem to save properly, so I deleted and adding again, and that seems to fix, so maybe when originally created it didn’t save something. Maybe this will be helpful in diagnosing the issue for others.
Hello @edanur!
Make sure your categories contain some posts/articles and you do not have some errors in the console which can block the categories from displaying: https://forum.tagdiv.com/general-options-may-interfere-newspaper-theme/
If the problem is still there, then then we need to investigate why it is not working for you.
Contact us via email at contact@tagdiv.com and provide the following:
– admin url and credentials
– a link to this topic in order to identify you
Thank you!
Hello Kaitlin!
You can adjust the picture there: https://prnt.sc/VjoVzQFySHie. Please check the guide: https://forum.tagdiv.com/flex-block-settings-guide/ Ideally, the texts should have the same length, so this issue won’t affect the other article/post to display nicely.
Thank you!
Hello,
So my organisation publishes in academic journals as well as on our site and I’m having an issue highlighting these external links in a nice way (it’s not an RSS feed issue as discussed here: https://forum.tagdiv.com/topic/grid-with-external-links-content/).
I’ve read on the forum that there’s no way to get external links into blocks, but ideally we’d like the external links to look similar to the way we display self-published research. So for example our self published list looks like this: https://snipboard.io/ponHFM.jpg, using FlexBlock 1.
I’ve tried to sort of recreate it using “image plus text” but I can’t find image alignment options so it looks like of wonky, like this: https://snipboard.io/6ixoyb.jpg.
Are there any ways to get external links to display nicely within the theme? Or any way I can wrangle the image feature to look kind of like the blocks?
Thanks,
Kaitlin
Hi,
I’m having small issues with shortcode for plugin YopPull
short code in html block isn’t working [yop_poll id=”1″]
Hello @poldino!
If you want to modify the file of the flex block 1, then you can integrate it in a child theme. If you want to change the link of the read more button: https://prnt.sc/51ACEAF76kD5, then all your posts will have the same link. If you need it differently, then this will require custom work which is not covered by the support team.
Thank you!