• Resolved mareve78

    (@mareve78)


    Hello, I have a website on Elementor pro. I am using pods and I have created a custom date type field. This field is repeatable. i want the user to select multiple dates for the custom post type when the event will take place. But I am unable to display it on the frontend. I have a “text field” widget in elementor with a dynamic value with a reference to the pods – date. It always pops up a “fatal error”. How can I display the list of dates? The shortcode doesn’t work either.

    Translated with DeepL.com (free version)

    • This topic was modified 9 months, 3 weeks ago by mareve78.
Viewing 1 replies (of 1 total)
  • Plugin Author Jory Hogeveen

    (@keraweb)

    Hi @mareve78

    I doubt Elementor is compatible with repeatable fields for dates. I believe Elementor handles dates as single values.

    You could use a shortcode from Pods to display a list, for example:

    [pods field="your_field_name"]

    Or each use a custom Pods template to display your field:

    [pods]
        [if your_field_name]
        <ul>
        [each your_field_name]
            <li>{@_value}</li>
        [/each]
        </ul>
        [/if]
    [/pods]

    Cheers, Jory

Viewing 1 replies (of 1 total)
  • The topic ‘multipla dates display’ is closed to new replies.