larryB-3
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 |
---|---|---|---|---|---|
Can you set the order of Custom Field Groups for back-end entry?
Started by: larryB-3
in: Toolset Professional Support
Problem: For one custom post type - I have 3 sets of custom fields, how do I select which order the CF Groups show up in? Solution: It is possible when you edit/create a new post, in each custom field group, there are two buttons: up and down, you can use them to resort the field groups order, and it will take effect when you edit/create new post again. Relevant Documentation: |
2 | 3 | 4 years, 3 months ago | ||
Custom Post Type – need to expand width of screen on display
Started by: larryB-3
in: Toolset Professional Support
Problem: I can't figure out the CSS needed to make it go to 100% of the container. Solution: It is a CSS issue, you can try CSS codes, for example: Relevant Documentation: |
2 | 3 | 4 years, 3 months ago | ||
Can next and previous short code links include a class?
Started by: larryB-3
in: Toolset Professional Support
Problem: I'd like to add a class to wpv-post-previous-link and wpv-post-next-link but can's seem to do it. I've tried adding a class on the outside of the shortcode to create a button but then I have a button that has no content when it reaches the start or the end. Solution: As a workaround, you can wrap those shortcode in a HTML element, for example: Relevant Documentation: https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#wpv-post-next-link |
2 | 9 | 4 years, 3 months ago | ||
Outputting a list of IDs for repeating gallery image custom field in custom post
Started by: larryB-3 in: Toolset Professional Support |
2 | 11 | 4 years, 4 months ago | ||
Need to display thumbnails in one row with slide over instead of in multiple row
Started by: larryB-3 in: Toolset Professional Support |
2 | 2 | 4 years, 5 months ago | ||
Product tabs created in Layouts/Views not working on non-desktop devices.
Started by: larryB-3 in: Toolset Professional Support |
2 | 3 | 4 years, 7 months ago | ||
Create a view for Woocommerce Linked Products field.
Started by: larryB-3
in: Toolset Professional Support
Problem: I would like to create a View of linked products to display on the single product template. Solution: There's no built-in way to do this because of how WooCommerce stores linked products in a serialized data structure. A custom code solution is required. |
2 | 5 | 4 years, 7 months ago | ||
Locating the proper meta data reference to include in Essential Grid
Started by: larryB-3 in: Toolset Professional Support |
1 | 2 | 4 years, 7 months ago | ||
View isn’t returning all entries
Started by: larryB-3
in: Toolset Professional Support
Problem: I have a View that isn't showing all the results I expect to see. Solution: In this case, a filter in the View is filtering based on an outdated relationship field. A custom shortcode can produce a list of related post IDs, which can be used in a shortcode attribute to display all the related posts. |
2 | 7 | 5 years, 2 months ago | ||
Changing responsiveness from 3 column to 1 column; to 3 to 2 to 1.
Started by: larryB-3
in: Toolset Professional Support
Problem: How is it possible to go from 3 columns down to 2 columns down to 1 column as the screen width reduces? Solution: The reason is because of how the Bootstrap grid uses divs with a class of row for each row, combined with automatically generating the markup by iterating over the posts in a loop. If you include too many col divs in a row div they will spill over visually into the next row. This makes it possible to include four col divs that display as four columns on wider screens but break into two then two columns on medium-sized screens. For a 4-column grid where the Loop Wizard creates divs with a class of col-md-3, for example, you should manually edit this to also add a class of col-sm-6, like so: <div class="col-md-3 col-sm-6"> Relevant Documentation: |
2 | 4 | 5 years, 3 months ago | ||
Showing data from a related post that is tied via other relationships
Started by: larryB-3
in: Toolset Professional Support
Problem: I want to create a layout for a CPT for Suspensions. In the layout I want to show some data from related CPTs and their related CPTs. Suspensions have a relationship to Access Cards. From here I have figured out how to get the Access Card # which is the title of the Access Card CPT. Access cards have a relationship to Homeowners. From here I have figured out how to the Homeowners name which is the title if the Homeowner CPT. Solution: It needs nested view, see below document. Relevant Documentation: |
2 | 8 | 5 years, 5 months ago | ||
Calculate a column total from a view
Started by: larryB-3 in: Toolset Professional Support |
2 | 3 | 5 years, 6 months ago | ||
How do I color code numeric values within a View?
Started by: larryB-3
in: Toolset Professional Support
Problem: I have a custom field that holds numeric data. When I display that custom field on the front-end of the site, I would like to use different colors to represent different ranges - values less than 1,000 show green font, values between 1,001 to 1,499 show in yellow, and values over 1,500 show red. Solution: Use conditional HTML to display the field with different CSS classes based on the field value. For example: [wpv-conditional if="( $(pond-1-tds-mg-l) lt '1001')"] <td class="your-green-class">[types field="pond-1-tds-mg-l" output="raw"][/types]</td> [/wpv-conditional] [wpv-conditional if="( $(pond-1-tds-mg-l) gte '1001' AND $(pond-1-tds-mg-l) lte '1500' )"] <td class="your-yellow-class">[types field="pond-1-tds-mg-l" output="raw"][/types]</td> [/wpv-conditional] [wpv-conditional if="( $(pond-1-tds-mg-l) gt '1500' )"] <td class="your-red-class">[types field="pond-1-tds-mg-l" output="raw"][/types]</td> [/wpv-conditional] ... and so on ... Relevant Documentation: |
2 | 3 | 5 years, 9 months ago | ||
Can you exclude a CPT from the default wordpress search?
Started by: larryB-3
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 5 years, 9 months ago | ||
Can you hide Content Template and Layout Template Metaboxes for non-admins?
Started by: larryB-3
in: Toolset Professional Support
Problem: I would like to hide the Content Template and Template Layout metaboxes from certain role Users. Solution: It's not possible through wp-admin, but you could use a custom code snippet to hide these boxes. add_action( 'admin_head', 'wpv_custom_admin_head', 20); function wpv_custom_admin_head() { if ( ! current_user_can( 'delete_others_pages' ) ) { // Only run if the user is an Author or lower. $slugs = array( 'post', 'page', 'custom-cpt-slug', ); remove_meta_box( 'wpddl_template', $slugs, 'side' ); remove_meta_box( 'views_template', $slugs, 'side' ); } } Modify the $slugs array to include a comma-separated list of each post type slug where you want to hide the metaboxes. Relevant Documentation: |
2 | 3 | 5 years, 10 months ago |