Paul Clark
@pdclark on WordPress.org , @Paul Clark on Slack
- Member Since: May 31st, 2009
- Location: California
- Website: pd.cm
- Job Title: Director of Engineering
- Employer: rtCamp
Contributions Sponsored
Contribution History
Paul Clark’s badges:- Core Contributor
- Hosting Contributor
- Plugin Developer
- Training Contributor
- WordCamp Speaker
-
Posted a reply to Front end Pods form not showing to public users, on the site WordPress.org Forums:
To enable anonymous form submissions, go to WP Admin > Pods Admin > Settings, then… -
Posted a reply to Is it possible to have more than one input field on a row, on the site WordPress.org Forums:
This can be done by adding custom CSS to WP admin by using the admin_head… -
Posted a reply to Problem with Updating Comment Meta, on the site WordPress.org Forums:
Hi @mburtis, This variation of your code worked for me: <?php add_filter ( 'comment_post', 'comment_add_module',… -
Posted a reply to Change ‘next post’ and ‘previous post’ link label, on the site WordPress.org Forums:
This is typically set in the theme, but can usually be filtered with the gettext… -
Posted a reply to Pods being Scheduled, on the site WordPress.org Forums:
Does the behavior still occur if you disable all plugins except Pods and use a… -
Posted a reply to Filter a Pods Custom post type USER relationship by current site, on the site WordPress.org Forums:
Hi @steuss, When editing the Users relationship field, under Relationship Options, scroll to Limit list… -
Posted a reply to Pod Submissions Duplicating, on the site WordPress.org Forums:
If you're using Gravity Forms for the submission, it may be this bug: https://github.com/pods-framework/pods-gravity-forms/issues/154 If… -
Posted a reply to Relationship Multiple Select: how to link each separately, on the site WordPress.org Forums:
As far as I know, it has to be done in PHP. Pods templates support… -
Posted a reply to Extend User record or PMPro Record, on the site WordPress.org Forums:
In testing, adding fields to PMPro Member didn't seem to have any effect on the… -
Posted a reply to Update post via Pods Query?, on the site WordPress.org Forums:
@refuelcreativeadam see https://docs.pods.io/code/pods/save/ -
Posted a reply to a href Pod Reference broken, on the site WordPress.org Forums:
This worked for me in testing, but if I had another required field that wasn't… -
Posted a reply to validating extended post type relationship fields, on the site WordPress.org Forums:
Hi @annettepixie, These new helper functions are available in the release/2.8.11 on GitHub and will… -
Posted a reply to Display chosen and unchosen users, on the site WordPress.org Forums:
Formatted as a plugin which adds a shortcode, [editors-and-not-editors]: <?php /* * Plugin Name: Editors… -
Posted a reply to Displaying Selected Taxonomy in Single Pages, on the site WordPress.org Forums:
<?php $authors = wp_get_post_terms( get_the_ID(), 'book_author' ); if ( ! empty( $authors ) ) {… -
Posted a reply to Add Address Field, on the site WordPress.org Forums:
Thanks for your feedback. I'd love to see this field included in Pods core as… -
Posted a reply to Exclude specific category names from listing, on the site WordPress.org Forums:
In testing, "NOT LIKE" was not working as expected for me as well. Here's a… -
Posted a reply to Bidirectional relationship data in Pods template, on the site WordPress.org Forums:
It's difficult to give an exact specification without a Pods package export, but based on… -
Posted a reply to Add User Meta Field in URL Query, on the site WordPress.org Forums:
See documentation and examples of add_query_arg() here: https://developer.wordpress.org/reference/functions/add_query_arg/ And possibly https://developer.wordpress.org/reference/functions/get_user_meta/ -
Posted a reply to shortcodes in text fields, on the site WordPress.org Forums:
In testing, I was able to use shortcodes in Elementor text fields and shortcode fields.… -
Posted a reply to “Where” parameter equal only content created by user, on the site WordPress.org Forums:
> the issue is with relationships as you can see all content that other user… -
Posted a reply to Custom post is not in the post archive, on the site WordPress.org Forums:
Hi @marcelolz, Here is a video of how I set up what I understood you… -
Posted a reply to is there a readonly field option?, on the site WordPress.org Forums:
There is not an option for readonly fields as far as I know. See https://developer.wordpress.org/plugins/metadata/custom-meta-boxes/ -
Posted a reply to shortcodes in text fields, on the site WordPress.org Forums:
You can use shortcodes in the elementor shortcode block. Adding shortcodes to other elementor blocks… -
Posted a reply to Quiz or Survey, on the site WordPress.org Forums:
Possible using Pods form block. But probably easier with https://wordpress.org/plugins/polldaddy/ https://docs.pods.io/faqs/what-can-you-build-with-pods/ -
Posted a reply to Filtering a multi selct list, on the site WordPress.org Forums:
Here's version 3 with a function instead of a class: <?php /** * Plugin Name:… -
Posted a reply to Filtering a multi selct list, on the site WordPress.org Forums:
The advantage is separating configuration from code. Either works. -
Posted a reply to Filtering a multi selct list, on the site WordPress.org Forums:
(If it doesn't load with Pluginception, try changing plugins_loaded to init.) -
Posted a reply to Filtering a multi selct list, on the site WordPress.org Forums:
Here's rewritten version of the plugin that generates the appropriate function with a class: <?php… -
Posted a reply to Filtering a multi selct list, on the site WordPress.org Forums:
Great! Should be enough to rename the field and pod names; variable names are scoped… -
Posted a reply to Filtering a multi selct list, on the site WordPress.org Forums:
I tried this a couple different ways and checked with Scott. The WHERE clause can't… -
Posted a reply to I CANNOT EDIT A CUSTOM POST TYPE AREA ON DOCUMENT CREATED ON THE WEBSITE, on the site WordPress.org Forums:
@marymwangi Please provide further details via https://support.pods.io/chat/ In testing, it looks like your fields on… -
Posted a reply to front end form will not display properly with a large number of $fields, on the site WordPress.org Forums:
@daddiodickerson https://wordpress.org/plugins/wp-user-frontend/ might be a fit. -
Posted a reply to Shortcode filtering search Pods by custom field, on the site WordPress.org Forums:
I've also not had luck with filtering on custom fields with default functionality, but can… -
Posted a reply to orderby gives a comma separated list, on the site WordPress.org Forums:
@blindtexth Yes, correct. This is the simple way. ;) <?php /** * Plugin Name: Shortcode… -
Posted a reply to Where Parameter not working, on the site WordPress.org Forums:
WHERE: CAST(t.post_date as DATE) = '2022/02/27' -
Posted a reply to orderby gives a comma separated list, on the site WordPress.org Forums:
Using "Connections" tab to connect a Region taxonomy with Organization post type; outputting organizations by… -
Posted a reply to Issue (bug) with File/Image/Video Field, on the site WordPress.org Forums:
I've verified this issue in testing and created an issue on GitHub for tracking it's… -
Posted a reply to One taxonomy for multiple post types?, on the site WordPress.org Forums:
Yes; just check the connected post types in the Connections tab when editing the Taxonomy.… -
Posted a reply to Error: Invalid AJAX request, on the site WordPress.org Forums:
Thanks for the bug report. Sharing your package export at https://pods.io/submit/ will help us duplicate… -
Posted a reply to Pods Items Lists paginated post VS. WordPress own archives page, on the site WordPress.org Forums:
You would need to query the MCQ's with WP_Query or get_posts(), then output the shortcode… -
Posted a reply to Pod for only that specific post, on the site WordPress.org Forums:
Use the Pods Single Item block with default options and your template instead of the… -
Posted a reply to Pods – Rest API Endpoint, on the site WordPress.org Forums:
Sounds like you may need to authenticate your /wp-json/ query. See https://developer.wordpress.org/rest-api/using-the-rest-api/authentication/ -
Posted a reply to Pods Custom Settings – Rest API, on the site WordPress.org Forums:
See https://developer.wordpress.org/rest-api/extending-the-rest-api/adding-custom-endpoints/ -
Posted a reply to Pods with Co-Authors Plus, on the site WordPress.org Forums:
This is the code from Co-Authors plus that enables the plugin for various post types:… -
Posted a reply to Create a URL that links to the latest post in a category, on the site WordPress.org Forums:
https://pods.pd.cm/wp-content/mu-plugins/sarahrbcom/latest-agenda-document.mp4 <?php add_shortcode( 'latest-agenda-document', function(){ ob_start(); $posts = get_posts([ 'post_type' => 'document', 'posts_per_page' => 1,… -
Posted a reply to Pods Items Lists paginated post VS. WordPress own archives page, on the site WordPress.org Forums:
Style of pagination shouldn't effect search results, because search results are based on your site's… -
Posted a reply to Hiding File Field Contents from Media Library, on the site WordPress.org Forums:
P.S. You may also like https://wordpress.org/plugins/filebird/ for Media Library organization. -
Posted a reply to Hiding File Field Contents from Media Library, on the site WordPress.org Forums:
This isn't related to Pods, but here we go: Media Library items are a post… -
Posted a reply to Customizing pages with Pods Item list, on the site WordPress.org Forums:
@wpusr007 see wp_count_posts(): https://developer.wordpress.org/reference/functions/wp_count_posts/ -
Committed [2553009] to Plugins SVN:
Update readme.
Developer
-
Styles
Active Installs: 10,000+
Contributor
-
AJAX Post Meta
Active Installs: 100+
-
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
-
WP Core Contributions Widget
-
WP Debug Robot
-
WP Install Profiles
-
WP OAuth Server (OAuth Authentication)