• Resolved dswebnew

    (@dswebnew)


    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 4 years, 9 months ago by dswebnew.
Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Support Team Brainstorm Force

    (@brainstormteam)

    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,
    Sweta

    Thread Starter dswebnew

    (@dswebnew)

    i need title color :hover

    Thread Starter dswebnew

    (@dswebnew)

    Show Taxonomy – Category can you do as link?

    Plugin Support Team Brainstorm Force

    (@brainstormteam)

    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

    Thread Starter dswebnew

    (@dswebnew)

    https://prnt.sc/t46s0v

    Businessmen this is category, i need this taxonomy as link to current category.

    Plugin Support Team Brainstorm Force

    (@brainstormteam)

    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,
    Rajkiran

    Thread Starter dswebnew

    (@dswebnew)

    Ok, and add to future upcoming updates links taxonomy in comments.

    Plugin Support Team Brainstorm Force

    (@brainstormteam)

    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,
    Rajkiran

    Thread Starter dswebnew

    (@dswebnew)

    I have many ideas on how to improve your widget plugin for gutenberg
    If interested, write me privat

    • This reply was modified 4 years, 9 months ago by dswebnew.
    Plugin Support Team Brainstorm Force

    (@brainstormteam)

    Hello @dswebnew,

    Could you please open a support ticket from here, so that we can have a closer look?

    Looking forward to hearing from you.

    Regards,
    Sweta

    Plugin Support Team Brainstorm Force

    (@brainstormteam)

    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!

    Thread Starter dswebnew

    (@dswebnew)

    i write here issue, why need write on the other sites? not resolved ((((

    Plugin Support Team Brainstorm Force

    (@brainstormteam)

    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

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Post widget’ is closed to new replies.