- 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
- TutorialsDefault Block Settings Guide
- NewsmagBlock settings tutorial
- NewsmagCategory tag on modules/blocks
- NewspaperThumbnails – Fix strange looking images on blocks
- NewspaperBlock settings tutorial
- NewspaperCategory Tag on Modules/blocks
- ApiPractical example – How to add a new Block and Module
- Apitd_api_block::delete
- Apitd_api_block::update_key
- Apitd_api_block::update
- Apitd_api_block::add
- ApiAPI – Blocks – Introduction
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
Hello,
The Big Grig Flex doesn’t have the option for pagination. You can try to use Flex Block 1 or Flex Block 2.
Thank you!
How do you import or export the saved blocks? in the TagDiv constructor.
If I want to take an already configured block to another project, is there a way?
I’m using Big Grid Flex 5 to display “Latest News” from all categories on my home page. I love the look of the stories and photos, and I would love it even more if I could “Load More” and see the next five stories, as I can in other blocks. Is there a way to add a pagination option, maybe using CSS?
FYI, CoBlocks 3.0.2 solve the problem.
Hi,
To display the related articles or more from the author, you can use Flex Block and filter it https://www.screencast.com/t/SEmxo13Fo2X -> https://i.imgur.com/YIg3nPP.png
Thank you!
How do I make indention in left margin in a text block?
Hi @bettina,
Thank you for your response.
Sorry, didn’t understand.
Actually, we don’t need a table of content on every post. Currently, we are adding the table of content using the Yoast Table of Contents(Gutenberg block).
As per your instruction, I understand that we need to add the “Single Post Table of Contents” shortcode in the global Single page template(Single Template – Pulses PRO ), right? But by using this, I think the table of content will show on every post page.
Please let us know your feedback.
Thanks
Hello!
I think you can achieve what you need without using any code.
Choose to stretch the row and content. Hide the items you do not need from the block in the layout tab of the post loop settings.
If you can’t handle it, then I can try to help you. Please 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!
The content is added like normal. Just copy and paste the content on the block editor. Thats it. We don’t use any extra fields or composers to add the content.
PFA:- https://imgur.com/a/ThCJQpP
We normally add the content to the block editor itself and it shows in the front end. But for the mentioned post the content is showing on the front end but not showing on the block editor. You can check the screenshots that I shared before.
Hi,
In the next update will be added a new option to create a module. For the moment you need to edit a plugin to add your fields -> https://forum.tagdiv.com/edit-modules-flex-block-x/
Thank you!
Hi and good day,
I am trying to include the Feature image on the left side of the content, and as i can see from the answers in this Forum that your theme doesnt support that using Blocks.
I coded the a shortcode to display the featured image and content and all working well, excpet that the content of the post are being fitered and the auto-links i have on each post are being disabled and not displayed.
which doesnt happened when using the Content Block, i tried disabling all filters using custom code but nothing works.
Is there any way i can fix this or customize the current content block to include the feature image.
Apperciate all the help,
thanks,
Hello
1. Implementation of the woocommerce category menu
Above is our correspondence, a year ago I reported that the Tagdiv Shop module does not have a module or widget that will allow you to display full Category and Subcategory navigation in a store based on your Tagdiv Shop module.
Something like: https://electro.madrasthemes.com/product-category/video-games-consoles/
I think that this is the most important element in an online store and should be shorcode and properly styled using css.
A long time ago Sep 21, 2021 at 8:15 am Calin wrote that it was a good suggestion and saved it as a task. I don’t believe you can’t do that. And this is very important in terms of a large shop and a wide range.
With large stores, and even small ones with several categories, your solution for sorting categories does not work, and we do not have a module for ordinary categories that are in the WooCommerce standard.
I started doing something once based on a standard widget and loading it in a template using the widget module.
I used code for this:
jQuery(document).ready(function($) {
$('.cat-parent > a').after('<span class="toggle">+</span>');
$('.cat-parent > ul').hide();
$('.toggle').click(function(){
$(this).text(function(i, text){
return text === "+" ? "-" : "+";
});
$(this).siblings('ul').slideToggle();
});
});
And css styles:
.toggle {
display: inline-block;
float: right;
font-size: 20px;
text-align: center;
cursor: pointer;
vertical-align: middle;
}
Example: https://moderncosmetics.pl/kategoria-produktu/kosmetyki/
However, I’m not satisfied because entering a lower level subcategory causes the navigation to collapse and you can’t see the current level.
Due to the fact that I am not a programmer, the project has been lying for a year and I cannot finish it and wait for development on your part.
Woocomerce categories are a basic element and you don’t have them.
2. Woo Attribute Filters – set the order
How to set the order of filters and move categories to the top and others to the bottom?
Just to let you know that new version of CoBlocks 3.0.1 creates a critical error in the Newspaper Editor. I already communicated to WordPress.com, because in our case they manage this plugin.
Hello!
Yes, you can filter by categories and enter the IDs: https://prnt.sc/cwRXRAp5jJ6h on the field from a flex block settings: https://forum.tagdiv.com/flex-block-settings-guide/
Thank you!
Hello I am trying to display the full post on a category page. I’ve added the following code can you tell me if it is correct? The page keeps breaking. I’m using the post loop block.
//Add Full Post to Live Blog instead of excerpt
function show_full_post( $post ) {
if ( $post->post_type === ‘live-blog’ ) {
$post->set_excerpt( ” );
}
}
add_filter( ‘the_post’, ‘show_full_post’ );
or
function show_full_post( $post ) {
if ( is_category( ‘updates’ ) ) {
$post->set_excerpt( ” );
}
}
add_filter( ‘the_post’, ‘show_full_post’ );
I checked and permalinks are set to plain.
We are using the newspaper theme. Plugins are the ones that game with it:
Genesis Blocks, tagDiv Cloud Library, tagDiv Composer, tagDiv Counter. Authors were set up in the “Users” area. Only one author per post. The commas after the names are industry designations. So it is just one author set up as a user. https://imgur.com/65Ve3GW
Other articles with no designations like this: https://floriologydm.wpengine.com/?p=1014 are also going blank. When using Chrome we get a 403 error: Access to floriologydm.wpengine.com was denied. You don’t have authorization to view this page. HTTP ERROR 403
Hi @bettina,
We usually use the block editor for adding content(most of the other posts show content in the backend also). This post was published 4 days ago. We didn’t face such an issue before. Today we found this issue while we are checking some posts. We don’t know how it shows the content in the frontend without having any content in the backend. Do you have any experience in facing such an issue? Please help us to solve this issue ASAP.
Please let us know your feedback.
Thank you
-
This reply was modified 3 years by
coinedition.
Hello!
Check this thread: https://forum.tagdiv.com/topic/how-do-special-filters-of-the-category-filter-in-the-block-filters-work/ -> https://forum.tagdiv.com/flex-block-settings-guide/
Thank you!
Hello @tektenweb !
The ad blocker detects your content as an ad. We would like to investigate this issue.
Please 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,
When the ad blocker is activated, the content of the blog page disappears. How can I fix this problem?
I got a video recording: http://somup.com/c0euQ7yRa4
Thanks.
Hello,
In the post, you can use lockers -> https://forum.tagdiv.com/lockers/
tagDiv Partial Locker -> Hides content below the block behind a locker -> https://i.imgur.com/Yv4pQ19.png
tagDiv Section Locker -> Hides content inside the block behind a locker -> https://i.imgur.com/p8Az6ub.png
The shortcodes tagDiv Section Locker and tagDiv Partial Locker are available in the Gutenberg editor -> https://i.imgur.com/F4IsGQf.jpg you can use them inside posts.
For pages, you can assign a plan on the row, to hide the content -> https://i.imgur.com/D1KiMDj.png
Thank you!
Hello
As can be seen here
https://www.loom.com/share/fdf6c891706641bbbfcd637c0247e3cb
I leave the video because with the browser and inspector of the pc version it cannot be seen, although you can see it by accessing the same entry with your mobile phone https://www.trebol-apuestas.com/tragaperras/amazing-link- riches/
The image shown through the –Bg Featured Image– module is blocked because apparently because the CSS it uses should be excluded in the box that I indicate here https://imgur.com/a/bB44m1H of WP Rocket. What would be the CSS that the module may be using to exclude it in this cache plugin?
Sincerely
Hi, I want to see the possibility of incorporating the following suggestion:
As it is a means of communication, there is a very common section. What happened on a day like today?
Could a block be created that could be called like that, and that would call those articles from the same day, but from a different year, automatically?
I think it’s something very interesting, of course it would be great for me, but I think that many people who use the templates, too.
Thank you very much, and I hope you can carry it out.
Hello,
In the post, you can use
tagDiv Partial Locker -> Hides content below the block behind a locker -> https://i.imgur.com/Yv4pQ19.png
tagDiv Section Locker -> Hides content inside the block behind a locker -> https://i.imgur.com/p8Az6ub.png
The shortcodes tagDiv Section Locker and tagDiv Partial Locker are available in the Gutenberg editor -> https://i.imgur.com/F4IsGQf.jpg you can use them inside posts.
For pages, you can assign a plan on the row, to hide the content -> https://i.imgur.com/D1KiMDj.png
Thank you!
Hello!
You need to add this element: https://prnt.sc/_rJK72W0N5xK in your post template.
In that section, there needs to be a flex block, and the colors can be changed from here: https://prnt.sc/YSXBxqCHLPOs
Thank you!