andrewF-6
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 |
---|---|---|---|---|---|
Front End Forms for Editing Nested Repeating Field Groups
Started by: andrewF-6 in: Toolset Professional Support |
3 | 8 | 4 years, 11 months ago | ||
Trying to Clone Custom Post with RFG and Nested RFG Records
Started by: andrewF-6 in: Toolset Professional Support |
2 | 2 | 4 years, 11 months ago | ||
Assigning Multiple Taxonomy Values to Multiple Select Boxes in Custom Post Type
Started by: andrewF-6 in: Toolset Professional Support |
1 | 2 | 4 years, 11 months ago | ||
I have 2 CPT Pages from the Same Content Template with Different Full Widths
Started by: andrewF-6 in: Toolset Professional Support |
2 | 4 | 5 years, 1 month ago | ||
Styling the Reset Button in my Search Form
Started by: andrewF-6 in: Toolset Professional Support |
2 | 3 | 5 years, 1 month ago | ||
Toolset Button Module Full Column Width and Fixed Height
Started by: andrewF-6 in: Toolset Professional Support |
2 | 4 | 5 years, 1 month ago | ||
Views Blocks Editor: Issues and Errors
Started by: andrewF-6 in: Toolset Professional Support |
2 | 6 | 5 years, 4 months ago | ||
Styling
Toolset Login, Reset, and Lost Password Forms
Started by: andrewF-6
in: Toolset Professional Support
Problem: Solution: For examples you could have a look at this user's solution: Relevant Documentation: |
2 | 5 | 5 years, 4 months ago | ||
Inserting Font Awesome Icone in Views Post Edit Link Shortcode
Started by: andrewF-6
in: Toolset Professional Support
Problem: Solution: [wpv-post-edit-link text='icon <i class="fa fa-edit"></i>'] |
2 | 6 | 5 years, 4 months ago | ||
Link to Edit RFG and Nested RFG from View Listing of All Custom Posts
Started by: andrewF-6 in: Toolset Professional Support |
2 | 13 | 5 years, 4 months ago | ||
Search Filter and Content Template Layout broken
Started by: andrewF-6
in: Toolset Professional Support
Problem: The design and layout of my search filters is broken in some cases. Solution: Make sure the HTML markup structure is identical in all cases. |
2 | 5 | 5 years, 5 months ago | ||
Get Taxonomy Filter to Display All Taxonomies with Custom Post Types in Them
Started by: andrewF-6
in: Toolset Professional Support
Problem: Solution: It is not possible to filter that main query and use a different term. For this you would need to create a View with taxonomy filter and insert it onto a static page instead. |
2 | 5 | 5 years, 5 months ago | ||
Drag and drop field order for repeating field group not saved
Started by: andrewF-6
in: Toolset Professional Support
Problem: Solution: It's important this is ordered using the field value as a number, not as a string. |
2 | 3 | 5 years, 5 months ago | ||
Dynamically Populate a Select Field with Custom Taxonomy Values
Started by: andrewF-6
in: Toolset Professional Support
Problem: The issue here is that the user wanted to dynamically populate their select field with the taxonomy values. Solution: This can be done by using the code below. // Prepopulate Select Field with Custom Taxonomy Values add_filter( 'wpt_field_options', 'add_some_options', 10, 3); function add_some_options( $options, $title, $type ) { switch( $title ) { // Select Field Name Not the Slug case 'Media Type': $terms = get_terms( array( // Custom Post Type Taxonomy Slug Not the Name 'taxonomy' => 'media-type', 'hide_empty' => false, ) ); foreach( $terms as $term ) { $options[] = array( '#value' => $term->term_id, '#title' => $term->name, ); } break; } return $options; } |
2 | 8 | 5 years, 5 months ago | ||
I have a few more questions:
Started by: andrewF-6
in: Toolset Professional Support
Problem: I added the conditional display because I only want that column to appear if it is checked. I also only want the data to appear in the view if the column is checked. In these pages, there does exist data in the three columns but only two columns are displaying. Solution: The problem is in the title field, see details here: https://toolset.com/forums/topic/i-have-a-few-more-questions/#post-1256747 Relevant Documentation: |
2 | 3 | 5 years, 5 months ago |