• Resolved Alex

    (@alexmastermind)


    Hi, how are you?

    I have a custom taxonomy called “clients” and there is a image field inside it called “logo”. I’ve been trying to display this logo on the archive page for each client, but it’s not showing.

    I’m using Elementor Pro and I tried selecting it dynamically (nothing is shown), using a shortcode (it displays the image URL) and even tried a HTML image code usign the shortcode as the URL (it shows an error icon).

    Is there some way to display it? I appreciate your atention.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Paul Clark

    (@pdclark)

    See https://docs.pods.io/code/pods/field/field-notation-options/

    If the context is a term in the clients taxonomy (a client):

    Output the image, large size

    [pods]{@logo._img.large}[/pods]

    Or:

    [pods]<img src="{@logo._src.medium}" />[/pods]

    If the context is another post type associated with the clients taxonomy, perhaps in a loop displaying on an archive page, or anything which might be associated with multiple clients:

    Output the image, large size

    [pods][each clients]{@logo._img.large}[/each][/pods]

    Or:

    [pods][each clients]<img src="{@logo._src.medium}" />[/each][/pods]

    The Pods Team does not write the integration sold by Elementor. There is a Pods Pro Page Builder Toolkit which adds visual tools to most page builders, including Elementor. It is discounted along with other services for Friends of Pods

    Thread Starter Alex

    (@alexmastermind)

    Thanks, it worked flawlessly. 😉

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.