pierreV-2
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 |
---|---|---|---|---|---|
CRED Forms have stopped appearing on my website – nor do new ones
Started by: pierreV-2 in: Toolset Professional Support |
2 | 4 | 7 years, 4 months ago | ||
Reviews on CPT – stuck with linking the CRED form
Started by: pierreV-2
in: Toolset Professional Support
Problem: Solution: Step 1. Create a CRED form Relevant Documentation: |
2 | 7 | 7 years, 4 months ago | ||
Child layout appears under parent in archive on responsive only
Started by: pierreV-2 in: Toolset Professional Support |
2 | 5 | 7 years, 4 months ago | ||
Fatal error: not able to add or edit CPT
Started by: pierreV-2 in: Toolset Professional Support |
2 | 21 | 7 years, 4 months ago | ||
Tabs are not appearing when in mobile version
Started by: pierreV-2
in: Types Community Support
Problem: Tabs are not appearing on my mobile site. The tabs work fine on desktop resolutions. Solution: It appears that Fusion Builder is adding some conflicting CSS. Please add the following CSS in Layouts CSS & JS: .show-mobile-nav .fusion-tabs .nav { display: block; } Relevant Documentation: https://toolset.com/documentation/user-guides/layouts-css-and-js-editor/ |
2 | 3 | 7 years, 4 months ago | ||
Many-to-Many relationship want to call field from other CPT
Started by: pierreV-2 in: Toolset Professional Support |
2 | 6 | 7 years, 4 months ago | ||
Where do I design the taxonomy term archive?
Started by: pierreV-2
in: Toolset Professional Support
Problem: How can I change the way a custom taxonomy term archive is displayed? Solution: Relevant Documentation: |
2 | 4 | 7 years, 5 months ago | ||
Selecting fields & views doesn't work
Started by: pierreV-2 in: Toolset Professional Support |
2 | 5 | 7 years, 5 months ago | ||
Is conditional output in accordion possible?
Started by: pierreV-2
in: Toolset Professional Support
Problem: I would like to show and hide certain accordion panels and their corresponding headers depending on conditional logic Solution: It's not currently possible to surround entire accordion panels in conditional code, but you can use custom JavaScript and CSS to show and hide as necessary. Use conditional HTML output to place an element with a known CSS class in the panel. Target parent elements' classes and use .remove() as needed. // example jQuery('.hide-panel').closest('.panel').remove(); |
2 | 9 | 7 years, 5 months ago | ||
Only display child taxonomy (where no lower level) in Visual Editor
Started by: pierreV-2 in: Toolset Professional Support |
2 | 4 | 7 years, 6 months ago | ||
With a Custom Earch Filter (for Taxonomy), I want the multi-select box larger
Started by: pierreV-2 in: Toolset Professional Support |
2 | 3 | 7 years, 6 months ago | ||
Maintain the taxonomy hierarchy in a
Started by: pierreV-2
in: Types Community Support
Problem: Solution: Please add the following code in your theme’s functions.php file: /** * Display taxonomy terms in hierarchical order. * * Advised by WP Types - Toolset */ function list_hierarchical_terms($atts) { global $post; $taxonomy = $atts['taxonomy_name']; $separator = $atts['separator']; $terms = wp_get_object_terms( $post->ID, $taxonomy, array( "fields" => "ids" , "orderby" => "term_id") ); if( $terms ) { $terms = trim( implode( ',', (array) $terms ), ' ,' ); $output = wp_list_categories( 'title_li=&taxonomy=' . $taxonomy . '&include=' . $terms."&hierarchical=1"."&separator=".$separator."&echo=0&style=none&order=DESC"); $output = substr(trim($output), 0, -1); $str_array = explode($separator, $output); if(isset($str_array) && count($str_array)) { $str_array_rev = array_reverse( $str_array ); $output = implode($separator,$str_array_rev); } return $output; } } add_shortcode( 'display_post_tax_terms_hierarchical', 'list_hierarchical_terms' ); 2. Then, add the below shortcode in Visual Editor cell or in a View or Content template: [display_post_tax_terms_hierarchical taxonomy_name="location" separator=","] Another solution: https://toolset.com/forums/topic/display-wpv-post-taxonomy-and-hierarchical-taxonomies/#post-410285 |
2 | 13 | 7 years, 6 months ago | ||
CPT Template with Avada – background 2 different colors
Started by: pierreV-2
in: Toolset Professional Support
Problem: I would like to set a consistent background color for my Custom Posts. I currently use Avada and have a Content Template for my CPTs. I have set a background color in Theme Options, but some of my CPTs show with a different background color, defined in the post. I would like to override that setting without needing to update all of my posts manually. Solution: Use CSS and specificity to create a single style. In this case, the following code can be added to Appearance > Customize > Additional CSS or Avada > Theme Options: body.single-sports-club #wrapper { background: #fff; } Relevant Documentation: https://en.wikipedia.org/wiki/Cascading_Style_Sheets |
2 | 3 | 7 years, 6 months ago | ||
Visual Editor Cell – h1 not appearing as should
Started by: pierreV-2 in: Toolset Professional Support |
2 | 7 | 7 years, 6 months ago | ||
Create a link to a selection of a custom field type
Started by: pierreV-2 in: Toolset Professional Support |
2 | 7 | 7 years, 6 months ago |