• Resolved andytlaird

    (@andytlaird)


    I’m trying to add an icon box (Elementor) which as with text only, displays only when the title and description is filled below. Can this be done? There are 4 set into a block at the bottom of the post.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the feedback. I’m not quite sure to understand what you mean. Can you please describe a little more your problem, with an example and screenshots?

    You can use https://imgur.com to post screenshots.

    Regards.

    Thread Starter andytlaird

    (@andytlaird)

    My apologies for the late reply. I’m trying to add 4 icon boxes at the base of each post providing more informations for our events such as: Group Size, Event Duration etc However I cannot find a way to use icons. The icon headers, description text etc works fine but icons always stay on the posts even when there is no title, text etc

    Each of the 4 blocks would have an icon and under a small title with description. Is there a way to set the complete icon box, and not each title, description separately.

    I hope it’s not too confusing

    Example as under the hero section of our site

    https://www.funeventsasia.com/about-our-event-organisation/

    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    ACF & ACF Extended are developer oriented, so you can easily manage those conditions with simple PHP conditions during the render. For example:

    
    $my_title = get_field('my_title');
    
    if(!empty($my_title)){
        echo get_field('my_icon');
    }
    

    In your case, you’re using Elementor, so you should probably post on Elementor support to ask how to set conditional display. Or maybe look for tutorials?

    Unfortunately I’m not a Elementor user, so I cannot really help on that one sorry :\

    Have a nice day.

    Regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Elementor Icon Boxes’ is closed to new replies.