NathanG920
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Critical Error with php update
Started by: NathanG920 in: Toolset Professional Support |
2 | 3 | 1 year, 7 months ago | ||
Toolset Types causing blank page error
Started by: NathanG920 in: Toolset Professional Support |
3 | 8 | 1 year, 8 months ago | ||
Multiple issues with post form
Started by: NathanG920 in: Toolset Professional Support |
2 | 11 | 1 year, 9 months ago | ||
Manual memberships and linking to authors/registering users
Started by: NathanG920 in: Toolset Professional Support |
2 | 4 | 2 years, 4 months ago | ||
Creating Post in CPT from Gravity Form
Started by: NathanG920 in: Toolset Professional Support |
2 | 2 | 4 years, 3 months ago | ||
Profile Editing with custom post
Started by: NathanG920
in: Toolset Professional Support
Problem: The post form contains all the data from the custom post type, however it doesn't "correspond" to a user and therefore can't be edited/doesn't work. Solution: I suggest you try these: https://toolset.com/forums/topic/profile-editing-with-custom-post/#post-1790055 Relevant Documentation: |
2 | 12 | 4 years, 3 months ago | ||
Changing custom post details in database
Started by: NathanG920 in: Toolset Professional Support |
2 | 5 | 4 years, 6 months ago | ||
Linking Dropdown in Custom Post Field to User ID
Started by: NathanG920
in: Toolset Professional Support
Problem: Solution: add_filter('option_wpcf-fields', 'fill_my_users'); function fill_my_users($fields) { foreach ($fields as &$field) { if ($field['id'] == 'your-field-slug') { $field["data"]["options"] = array(); $users = get_users(); foreach ($users as $user) { $key = $field["id"] . $user->user_login; $field["data"]["options"][$key] = array( "title" => $user->user_login, "value" => $user->ID ); } } } return $fields; } |
2 | 7 | 4 years, 6 months ago | ||
Converting existing fields issue
Started by: NathanG920 in: Toolset Professional Support |
2 | 15 | 4 years, 9 months ago |