WeiS2074
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 |
---|---|---|---|---|---|
post form style issue
1
2
Started by: WeiS2074 in: Toolset Professional Support |
2 | 18 | 4 years, 3 months ago | ||
Generic field doesn't show on form
Started by: WeiS2074 in: Toolset Professional Support |
2 | 13 | 4 years, 3 months ago | ||
design overlap in archive template
Started by: WeiS2074 in: Toolset Professional Support |
2 | 9 | 4 years, 4 months ago | ||
Post edit link doesn't work
Started by: WeiS2074 in: Toolset Professional Support |
2 | 5 | 4 years, 4 months ago | ||
Issue with dropdown
Started by: WeiS2074
in: Toolset Professional Support
Problem: Solution: display:block when he should use display:grid |
2 | 3 | 4 years, 4 months ago | ||
set placeholder for price filter
Started by: WeiS2074 in: Toolset Professional Support |
2 | 2 | 4 years, 4 months ago | ||
Integrate Grid into Collapsible
Started by: WeiS2074 in: Toolset Professional Support |
2 | 3 | 4 years, 4 months ago | ||
Relevanssi doesn't work with Toolset
Started by: WeiS2074 in: Toolset Professional Support |
2 | 3 | 4 years, 4 months ago | ||
Make custom field clickable in archive page
Started by: WeiS2074 in: Toolset Professional Support |
2 | 3 | 4 years, 4 months ago | ||
custom field doesn't show in archive page
Started by: WeiS2074 in: Toolset Professional Support |
2 | 11 | 4 years, 4 months ago | ||
2 custom post type don't behave identical
Started by: WeiS2074 in: Toolset Professional Support |
2 | 3 | 4 years, 4 months ago | ||
Custom type custom permalinks doesn’t work as expected
Started by: WeiS2074
in: Toolset Professional Support
Problem: I have a Form that creates new posts. I would like to automatically set the post title and slug to be the post ID, and I would like to use the permalink format https://mysite.com/post-type-slug/{post-id} Solution: Use the API hook cred_save_data to automatically set the post title and slug to be the post ID, and choose any pretty permalink format in wp-admin > Settings > Permalinks. Here is a custom code snippet to set the title and slug: add_action('cred_save_data','tssupp_set_post_id_as_title_and_slug',10,2); function tssupp_set_post_id_as_title_and_slug($post_id,$form_data) { if ($form_data['id']==1234) { $args = array('ID' => $post_id, 'post_title' => $post_id, 'post_name' => $post_id); wp_update_post($args); } } Relevant Documentation: |
2 | 9 | 4 years, 4 months ago | ||
In Access Control ticked “edit any” in custom type, doesn’ t work
Started by: WeiS2074
in: Toolset Professional Support
Problem: The issue here is that the user is unable have access to the edit link on the frontend that links to the Frontend Edit form. The user has set the correct permissions on the Custom Post Type in our Access plugin but the link still doesn't show up. Solution: Given that our Access plugin is active you will also need to check the permissions for the Frontend Form as well. Go to Toolset -> Access Control -> Toolset Forms and ensure that you've set the correct permissions for the user role so they will have access to that form. |
2 | 7 | 4 years, 4 months ago | ||
Can't reset password
Started by: WeiS2074 in: Toolset Professional Support |
2 | 5 | 4 years, 4 months ago | ||
Allow user subscribe with specific value of custom field.
Started by: WeiS2074 in: Toolset Professional Support |
2 | 4 | 4 years, 4 months ago |