SOLVED: Dynamic conditions don't work with custom functions?

I’m almost certain I’ve done this before, so perhaps a bug was introduced in v.1.9.6.1.

I have a custom function that simply counts the number of posts in the ACF relationship field for the current post. For example, I call this function in my Practice Areas template, and the function will return the number of lawyers related to that practice area. The function works well—I can echo the result of the function as a text element’s dynamic data (while troubleshooting I am outputting the count in a red box).

The problem is that when I echo the result of the function as a dynamic data comparison in a condition (show if result > 0) it always returns true, even when the function evaluates to 0.

Here’s how the condition is set up to show or hide a block:

Here is the front end, working correctly to show the block when the count of related lawyers is 4:

But here, where the count of related lawyers is zero, the block is still shown even though the condition states that it should be shown only when the count is > 0.

I had a similar error on 1.9.5. The functionality simply stopped working to compare. To make it work, I deleted the widget where the conditions was and created it anew.

Thanks for the tip. I created a brand new element and applied the same condition but it still doesn’t work. I’m hoping to hear from the Bricks team about a fix for this bug.

Hi Eric,
Thanks so much for your report!

Would you be so kind as to send temporary login credentials and a link to this thread to help@bricksbuilder.io using the email address you used during the purchase?

Best regards,
timmse

I have just emailed credentials, plus a note about how I can also duplicate the issue on a different page with a different post type.

Hi @ainom

Thanks for your email.

As a summary, Bricks is not able to parse nested dynamic tags in conditions and element attributes currently and it’s already in our bug tracker.

For example:
{echo:get_related_lawyers_count({post_id})} > 0
When executing, it is just comparing {echo:get_related_lawyers_count(5267)} > 0 (Unable to parse {echo:} dynamic tag)

Workaround method to overcome this issue:

function get_related_lawyers_count() {
    // Use dynamic data inside the function
    $post_id = bricks_render_dynamic_data( '{post_id}' );
    // Fetch the related lawyers using ACF's get_field function
    $lawyers = get_field('lawyers', $post_id);

    // If related practice areas are found, return their count
    if ($lawyers) {
        return count($lawyers);
    }

    // If no related practice areas found, return 0
    return 0;
}

Since you just want to retrieve the query results count from the custom functions, you can use {query_results_count} :slight_smile:

Regards,
Jenn

1 Like

Hi,

We’ve fixed this issue in Bricks 1.9.8 beta, now available as a manual download in your account (see changelog).

Please let us know if you are still experiencing issues.

As with any beta release, please do not use it on a production or live website. It is only meant for testing in a local or staging environment.

How do we get count of related posts in archive page?

Like products and brands both are CPTs and have bidirectional relationship, now in brands archive page get the count of products.

Apple (10 products)
Sony (5 products)
Samsung (6 products)

like this.

I modified the code and it’s working