Override Field Description with pods_form_ui_comment_text Filter

add_filter( 'pods_form_ui_comment_text', 'gnt_pod_field_comment', 10, 3); function gnt_pod_field_comment($message, $name, $options) { $key = $options['pod'] .'.'. $options['name'] .'.description'; //TODO: lookup in file or db or stg if ('accel_feedback.aggregate_wellbeing.description' == $key) { $message = "<b>Normal = 0.00</b>. A zero value indicates that the student is generally positive<br/>". "<b><font color='red'>Distress = -2.00</font></b>. Negative values indicate that the student is …

Read more

Display Filters with Magic Tags

Used to modify the output of your fields using built-in or custom functions, especially helpful for conditional formatting or for complicated display rules.

Using Magic Tags

Explains the common usage for Magic Tags, where they can be used and how to access the standard post fields, custom fields and media fields in a Custom Post Type or Taxonomy.

Displaying Custom Settings with get_option

/* In this example my_custom_settings is the Custom Settings Page my_option is the field within that pod. You combine the two with an underscore to display them with get_option */ $my_option = get_option( 'my_custom_settings_my_option' );

I have a Bug or Feature Request. Where do I submit those?

You can submit a bug or feature request over at our GitHub Repository at the following url: https://github.com/pods-framework/pods/issues/new Please be as detailed as you possibly can, include screenshots of the issue and include the steps you did that caused the issue. We also need to know the version of WordPress and the version of Pods …

Read more

Pods Shortcode

Using our Shortcode to get content on your website is often the easiest method since you can drop these into a page, HTML block or HTML Widget.