mikeF-8
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 |
---|---|---|---|---|---|
Import terms to custom taxonomy
Started by: mikeF-8
in: Toolset Professional Support
Problem: I would like to import terms into a flat custom taxonomy. Solution: Toolset doesn't import terms, nor does it import posts, but I can show you a simple workaround that requires no extra import software: |
2 | 4 | 5 years, 3 months ago | ||
Missing Fields, Template detaches from post
Started by: mikeF-8 in: Toolset Professional Support |
2 | 3 | 5 years, 7 months ago | ||
Same page search results display
Started by: mikeF-8
in: Toolset Professional Support
Problem: I'm trying to display search filters and search results in different areas of the same page, but the results never appear. Solution: In this case it looks like there is an unclosed tag somewhere in the search and pagination panel. Make sure all divs are closed correctly. |
2 | 3 | 5 years, 8 months ago | ||
No output
Started by: mikeF-8 in: Toolset Professional Support |
2 | 4 | 5 years, 9 months ago | ||
Cred Hooks Issues
Started by: mikeF-8
in: Toolset Professional Support
Problem: I would like to use a cred_save_data hook to update a User's role when a Form is submitted. Solution: Use the following custom code to set a User's role to be "seller": add_action('cred_save_data', 'cred_update_user_role_action',10,2); function cred_change_user_role_action($post_id, $form_data) { if ($form_data['id'] == 205164) { // get the author ID and corresponding WP_User from the post ID $p = get_post( $post_id ); $author_id = $p->post_author; $u = new WP_User( $author_id ); // modify the user role to match the selected option $u->remove_role( 'pending' ); /// adjust role name here if needed $u->add_role( 'seller' ); } } Relevant Documentation: |
3 | 10 | 5 years, 9 months ago | ||
View Taking over entire page
Started by: mikeF-8
in: Toolset Professional Support
Problem: I have a View on my page followed by some other content. It seems that the other content is moved inside the View's form tag, and included in the View. Solution: Check the HTML syntax of the View's Search and Pagination editor. In this case, some unclosed tags were responsible for the rendering issue. |
3 | 7 | 5 years, 9 months ago | ||
Cred Forms Inline
Started by: mikeF-8 in: Toolset Professional Support |
1 | 3 | 5 years, 9 months ago | ||
Favorite Posts Feature
Started by: mikeF-8 in: Toolset Professional Support |
2 | 5 | 5 years, 9 months ago | ||
Horizontal Search Fields
Started by: mikeF-8 in: Toolset Professional Support |
2 | 3 | 5 years, 9 months ago | ||
Simple 1 filter search with results designed in Divi Builder
Started by: mikeF-8
in: Toolset Professional Support
Problem: I would like to create a custom search View, filtered by a custom field. I would like to design the results of the View using Divi Builder. Solution: Create a new View of the correct post type, and add a custom field Filter in the Search and Pagination panel. Use the "Screen Options" tab to expose the Search and Pagination panel if it is not active. In the Loop Output editor, use the Loop Wizard to create a basic loop using a Content Template. Then edit the Content Template using Divi Builder to add more content to each result. Relevant Documentation: |
2 | 9 | 6 years, 6 months ago | ||
Post relationship migration fail
Started by: mikeF-8 in: Toolset Professional Support |
2 | 6 | 6 years, 6 months ago |