Joan
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 |
---|---|---|---|---|---|
Cannot export custom post type
Started by: Joan
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 4 years, 10 months ago | ||
I have a doubt about a create user form
Started by: Joan in: Toolset Professional Support |
2 | 3 | 4 years, 10 months ago | ||
The new item of the custom post type is created properly but not the slug
Started by: Joan in: Toolset Professional Support |
2 | 5 | 4 years, 11 months ago | ||
I have a editing form and i don't want that other users can see others titles
1
2
Started by: Joan in: Toolset Professional Support |
2 | 18 | 5 years, 1 month ago | ||
Post status not change after order purchase
Started by: Joan in: Toolset Professional Support |
2 | 5 | 5 years, 10 months ago | ||
The wordpress archive doesn't work properly
Started by: Joan in: Toolset Professional Support |
2 | 6 | 5 years, 11 months ago | ||
I want to get the id of a parent item
Started by: Joan in: Toolset Professional Support |
2 | 3 | 6 years ago | ||
I'm not able to select diferent products on user form
Started by: Joan in: Toolset Professional Support |
3 | 8 | 6 years, 5 months ago | ||
I try to delete a item of a custom post type by code
Started by: Joan in: Toolset Professional Support |
2 | 5 | 6 years, 5 months ago | ||
CRED user registration form validation
Started by: Joan in: Toolset Professional Support |
2 | 3 | 6 years, 6 months ago | ||
Post edit link stop working
Started by: Joan
in: Toolset Professional Support
Problem: The issue here is that the user's post edit link stopped working. Solution: In this user's case it was an issue with the permalinks and resetting it works. To reset your permalinks please go to Settings -> Permalinks and resave them. |
2 | 5 | 6 years, 6 months ago | ||
I want to add users to a membership plan
Started by: Joan in: Toolset Professional Support |
2 | 2 | 6 years, 7 months ago | ||
Assign parent post title to child post title using CRED
Started by: Joan
in: Toolset Professional Support
Problem: I have a CRED form that allows Users to create child posts using CRED. They can select a parent post in the CRED form. I would like to use the parent post title as the child post title. Solution: add_action('cred_save_data', 'copy_parent_title_to_child',10,2); function copy_parent_title_to_child($post_id, $form_data) { // if a specific form if ($form_data['id']=='12345') { if (isset($_POST['_wpcf_belongs_parentslug_id'])) { $my_post = array( 'ID' => $post_id, 'post_title' => get_the_title($_POST['_wpcf_belongs_parentslug_id']) ); wp_update_post( $my_post ); } } } Replace the form ID and custom post type slug, and remove the post title field from the child post CRED form. Relevant Documentation: |
2 | 3 | 6 years, 11 months ago | ||
Notifications on delete Post Type
Started by: Joan in: Types Community Support |
2 | 3 | 6 years, 11 months ago | ||
I Want to create a form to edit a post type
Started by: Joan in: Toolset Professional Support |
2 | 3 | 6 years, 11 months ago |