Paul Clark
@pdclark on WordPress.org, @Paul Clark on Slack
- Member Since: May 31st, 2009
- Location: California
- Website: pd.cm
- Job Title: Web Support Engineer
- Employer: PD.CM
Contributions Sponsored
Contribution History
Paul Clark’s badges:- Core Contributor
- Hosting Contributor
- Plugin Developer
- Training Contributor
- WordCamp Organizer
- WordCamp Speaker
-
Posted a reply to Shortcode pods show post from all languages, on the site WordPress.org Forums:
Polylang identifies the language with a taxonomy "language". You should be able to add a… -
Posted a reply to Pods doesn’t work when I deactivate ACF (Advanced Custom Fields), on the site WordPress.org Forums:
At this point I'd try: Importing the fields into a fresh install. Do they work… -
Posted a reply to Pods custom posts do not save custom field values, on the site WordPress.org Forums:
Are there any errors in the PHP error logs? Are any fields set to required?… -
Posted a reply to Pods doesn’t work when I deactivate ACF (Advanced Custom Fields), on the site WordPress.org Forums:
And at any rate, if you've mixed the two plugins, you need to check which… -
Posted a reply to Pods doesn’t work when I deactivate ACF (Advanced Custom Fields), on the site WordPress.org Forums:
I'm pretty sure "Campi personalizzati" is output from WordPress core, not Pods. See https://translate.wordpress.org/projects/wp/dev/admin/it/default/?page=229 for… -
Posted a reply to Pods doesn’t work when I deactivate ACF (Advanced Custom Fields), on the site WordPress.org Forums:
The second screenshot is the normal Pods field interface. The first screenshot is likely the… -
Posted a reply to French translation Pods = Administration, on the site WordPress.org Forums:
As mentioned in the plugin readme, translation suggestions can be submitted directly through WordPress.org. For… -
Suggested 1 string on translate.wordpress.org.
-
Posted a reply to Field Groups (expanded vs Collapsed), on the site WordPress.org Forums:
@dbareis As far as I know, there is no setting for this. One would need… -
Posted a reply to Order a list of custom taxonomies by chilren / count, on the site WordPress.org Forums:
To order by count, use get_terms(). See full list of arguments, including orderby, here: https://developer.wordpress.org/reference/classes/wp_term_query/__construct/ -
Posted a reply to Pods doesn’t work when I deactivate ACF (Advanced Custom Fields), on the site WordPress.org Forums:
This one is a bit of a mystery without a little more information... Does your… -
Posted a reply to Sort posts by title, on the site WordPress.org Forums:
Okay, great. Come back with how far you get or the template you're trying to… -
Posted a reply to connect a field to a new custom taxonomy, on the site WordPress.org Forums:
One would need to write an import script to convert core Taxonomy Term associations to… -
Posted a reply to Sort posts by title, on the site WordPress.org Forums:
Relationships are stored in meta as an array of Post IDs, so there's no way… -
Posted a reply to How to best group field values by date?, on the site WordPress.org Forums:
Use (float) instead of (int) to support decimals; currency field types instead of number field… -
Posted a reply to Create a predefined lists, on the site WordPress.org Forums:
Yes, there is an action for this in classes/fields/pick.php. For example: <?php add_action( 'pods_form_ui_field_pick_related_objects_predefined', function(){… -
Posted a reply to PHP-JWT 5.0 concern, on the site WordPress.org Forums:
An update to the JWT library is scheduled for Pods 2.9.11, to be released this… -
Posted a reply to There is no feature image in admin panel, on the site WordPress.org Forums:
The featured image panel will sometimes not show up if there are errors from the… -
Posted a reply to Custom Taxonomy Template is Not Used, on the site WordPress.org Forums:
You would need to hook to the_content and then modify the behavior of your function… -
Posted a reply to Empty date field returned as ‘0000-00-00’, on the site WordPress.org Forums:
Yes this is expected. -
Posted a reply to Import Data into pods meta database), on the site WordPress.org Forums:
Also, if comfortable writing an importer with PHP, see: PHP: foreach() PHP: fgetcsv() $wpdb->insert() $pods->save() -
Posted a reply to Pods Extended (User profile) – Frontend, on the site WordPress.org Forums:
Great. That’ll be two plane tickets to Brazil. Thanks in advance. 😆 -
Posted a reply to Pods Extended (User profile) – Frontend, on the site WordPress.org Forums:
Verify your shortcode is using "dumb" quotes — " not smart quotes ” -
Posted a reply to adding alt text to a pods custom img in beaver builder, on the site WordPress.org Forums:
Great. One more method, using WP core functions in PHP: $alt_text = get_post_meta( (int) get_post_meta(… -
Posted a reply to Pods Extended (User profile) – Frontend, on the site WordPress.org Forums:
You're getting a list of all users because you're not specifying which user to look… -
Posted a reply to content not displaying, on the site WordPress.org Forums:
As the notices appear to all be from the theme, does the page work if… -
Posted a reply to adding alt text to a pods custom img in beaver builder, on the site WordPress.org Forums:
@cncup Or [pods field="image_1._wp_attachment_image_alt"][/pods] -
Posted a reply to adding alt text to a pods custom img in beaver builder, on the site WordPress.org Forums:
@cncup Or [pods]{@image_1._wp_attachment_image_alt}[/pods] -
Posted a reply to adding alt text to a pods custom img in beaver builder, on the site WordPress.org Forums:
@cncup [pods][each image_1]{@_wp_attachment_image_alt}[/each][/pods] -
Posted a reply to Create Pods template showing previews of 3 last Pods, on the site WordPress.org Forums:
Please see the documentation on Magic Tags. Here is an example to get you started,… -
Posted a reply to inherited Pods implementation no longer showing a video, on the site WordPress.org Forums:
Also check the name of the Settings page that's expected to connect to the home… -
Posted a reply to inherited Pods implementation no longer showing a video, on the site WordPress.org Forums:
Try inspecting the contents of $ytlink and wp_oembed_get( $ytlink ) using print_r() or error_log( print_r(… -
Posted a reply to Are snippets a security risk?, on the site WordPress.org Forums:
Running PHP exec() on data stored in the database adds an additional attack vector. Plugins… -
Posted a reply to Use pods template to list custom posts, on the site WordPress.org Forums:
Pods shortcode with WHERE and ORDERBY clauses: [pods name="cpt" limit="-1" where="cpt_tag.name = 'CPT_tag1'" template="cpt_template" orderby="CAST(… -
Posted a reply to Transllate field label using Pods Templates, on the site WordPress.org Forums:
I'm not positive what type of field {@_field.species_habitat} is ( I would expect {@species_habitat}), but… -
Posted a reply to Custom post type name vs. page permalink conflict (same slug), on the site WordPress.org Forums:
This version should work in any theme that follows the traditional WP Template Hierarchy. That… -
Posted a reply to user reference in relationship fields, on the site WordPress.org Forums:
Here is a PDF of how I see the post with images and comments. -
Posted a reply to How to best group field values by date?, on the site WordPress.org Forums:
And if outputting variables that are strings (rather than integers or formatted dates), one should… -
Posted a reply to How to best group field values by date?, on the site WordPress.org Forums:
For getting more field values, it's possible to save on SQL queries by calling get_post_meta(… -
Posted a reply to How to best group field values by date?, on the site WordPress.org Forums:
Just in case, the same thing, table-based, but with years first: <?php /** * Plugin… -
Posted a reply to How to best group field values by date?, on the site WordPress.org Forums:
Add another foreach after the others which iterates over $food_by_year as $year => $food. Here:… -
Posted a reply to Custom post type name vs. page permalink conflict (same slug), on the site WordPress.org Forums:
👍</img>🙏</img>🙇♂️</img> -
Posted a reply to Custom post type name vs. page permalink conflict (same slug), on the site WordPress.org Forums:
Yes, the permalink structure and URLs would all change from documentation to docs wherever it's… -
Posted a reply to Custom post type name vs. page permalink conflict (same slug), on the site WordPress.org Forums:
Here's a simpler version without extra SQL queries that still appears to work: <?php /**… -
Posted a reply to How to best group field values by date?, on the site WordPress.org Forums:
The following PHP, when installed as a plugin for example at wp-content/plugins/shortcode-food-journal/shortcode-food-journal.php, or to your… -
Posted a reply to How to best group field values by date?, on the site WordPress.org Forums:
Does food contain a number, or are you trying to calculate the total number of… -
Posted a reply to Custom post type name vs. page permalink conflict (same slug), on the site WordPress.org Forums:
The simplest solution is to name one "docs" and the other "documentation", or anything similarly… -
Posted a reply to [Pods - Custom Content Types and Fields] Matematic Functions, on the site WordPress.org Forums:
You might be interested in Gravity Forms for this. Pods integrates with Gravity Forms. See:… -
Posted a reply to [NSFW] dynamic button link, on the site WordPress.org Forums:
Assuming you have created two bi-directional relationship fields, one called downloads on the games post… -
Committed [2553009] to Plugins SVN:
Update readme.
Developer
-
Styles
Active Installs: 10,000+
Contributor
-
AJAX Post Meta
Active Installs: 90+
-
Yet Another Featured Posts Plugin (YAFPP)
Active Installs: 200+
Support Rep
-
Pods - Custom Content Types and Fields
Active Installs: 100,000+
Plugins
-
Audit Trail
-
AvatarPlus
-
Bulk Plugin Installation
-
Docs to WordPress
-
Edit Flow
-
Gust
-
Hierarchy
-
Oxford Debate
-
Post via Dropbox
-
Sliced Invoices & Gravity Forms
-
Styles
-
Watcher Social Net
-
Wordfence Security - Firewall, Malware Scan, and Login Security
-
WP Core Contributions Widget
-
WP Debug Robot
-
WP Install Profiles