Post widget
-
Post Title Color
How add Title Color hover in your plugin? Why title not use theme style?
Can you add to Images Bottom Spacing or split up Content Padding? I need padding 0 10px.
Can you add to post transparent bg
-
This topic was modified 5 years, 11 months ago by
dswebnew.
-
This topic was modified 5 years, 11 months ago by
-
Hello @dswebnew,
Yes, you can add the Title color. Please refer to this video.
Unfortunately, we don’t have an option to add Image Bottom Spacing and transparent background. But I would love to take this as a suggestion.
I’ll put forward your thought about this to our team and if feasible we will try to improve the scenario in our future updates.
Meanwhile, you can use the following CSS in the Customizer under Additional CSS Tab to have those customizations:
.uagb-post-grid .uagb-post__text { padding-top:70px; } .uagb-post-grid .uagb-post__inner-wrap{ background: rgba(196, 214, 64, 0.37); }I hope that helps.
Regards,
Swetai need title color :hover
Show Taxonomy – Category can you do as link?
Hey @dswebnew,
Just FYI – We have just released the Ultimate Addons for Gutenberg plugin v1.16.0 and in which we have provided support to inherit styling from the Theme for the Posts Blocks.
Also, can you please explain more about your requirement about Taxonomy Category?
Looking forward to hearing from you.
Best Regards,
Rajkiran-
This reply was modified 5 years, 11 months ago by
Team Brainstorm Force.
Businessmen this is category, i need this taxonomy as link to current category.
Hey @dswebnew,
I understood your requirement about adding a Link to the Taxonomy displayed in Post Grid.
As of now, we do not have an option for that.
I am taking this as a suggestion and added a task for it to the concerned developer.
It will be added to our future upcoming updates.
Your patience and co-operation are highly appreciated.
Regards,
RajkiranOk, and add to future upcoming updates links taxonomy in comments.
Hey @dswebnew,
Okay! I will let you know once we release the update for this.
Please let us know if you face any issues in the future.
We are always there for you, Have a Great Day ahead!
Regards,
RajkiranI have many ideas on how to improve your widget plugin for gutenberg
If interested, write me privat-
This reply was modified 5 years, 11 months ago by
dswebnew.
Hello @dswebnew ,
We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
Thank you!
i write here issue, why need write on the other sites? not resolved ((((
Hello @dswebnew ,
We’re so sorry for the inconvenience caused to you.
To display taxonomy (category) on the Post Grid block. For that, you need to use the following filter in your fucntions.php file of the child theme.
function single_post_title_before( $post_id, $attributes ) { if( 'my-post-grid-class' == $attributes['className'] ){ $term_obj_list = get_the_terms( $post_id, 'category' ); // Get the id of category $category_id = get_cat_ID( 'cat-1' ); // Get the URL of this category $category_link = get_category_link( $category_id ); $link = '<a href="' .$category_link .'">' .$term_obj_list[0]->name.'</a>'; echo $link; } } add_action( 'uagb_single_post_before_title_grid', 'single_post_title_before', 10, 2 );To apply different filters for a specific block you need to add a unique class to the block from the Advanced Tab of Post Grid Block.
Please refer to this screenshot.
I hope this helps. Let me know.
Regards,
Sweta -
This reply was modified 5 years, 11 months ago by
The topic ‘Post widget’ is closed to new replies.