CSS classes not updating when using Beaver Builder to create a template
Started by: adamR-11
in: Toolset Professional Support
Quick solution available
3
9
6 years, 2 months ago
adamR-11
WooCommerce Not Automatically Showing The Default Strings' Secondary Language
Started by: Susan Siow
in: Toolset Professional Support
2
3
6 years, 2 months ago
Susan Siow
can make thing work
Started by: eitanh
in: Toolset Professional Support
3
13
6 years, 2 months ago
Christian Cox
New Divi Builder does not work in Content Templates
Started by: toolset-dave
in: Toolset Professional Support
Quick solution available
Problem:
After the latest update of Toolset, Divi was loading their templates anymore.
Solution:
This issue has been resolved by the Divi team, so I would recommend updated to the latest version.
2
3
6 years, 2 months ago
toolset-dave
Maps are working on 2 custom post types but not the other two
Started by: michaelW-27
in: Toolset Professional Support
2
8
6 years, 2 months ago
michaelW-27
Collapse button for Repeatable Field Group
Started by: toolset-dave
in: Toolset Professional Support
Quick solution available
Problem: I would like to use jQuery Collapse for showing and hiding repeatable field groups (RFG) in a View, but the code isn't working when I have more than one RFG.
Solution: Use CSS classes instead of IDs as your jQuery targets.
<div>
<fieldset class="majorpoints" >
<legend class="majorpointslegend">Expand</legend>
<div class="mylist" style="display:none" >
<ul>
<li>2</li>
<li>3</li>
</ul>
</div>
</fieldset>
</div>
<div>
<fieldset class="majorpoints" >
<legend class="majorpointslegend">Expand</legend>
<div class="mylist" style="display:none" >
<ul>
<li>2</li>
<li>3</li>
</ul>
</div>
</fieldset>
</div>
<div>
<fieldset class="majorpoints" >
<legend class="majorpointslegend">Expand</legend>
<div class="mylist" style="display:none" >
<ul>
<li>2</li>
<li>3</li>
</ul>
</div>
</fieldset>
</div>
jQuery(document).ready(function($){
$('.majorpointslegend').click(function(){
if($(this).text()=='Expand'){
$(this).next('.mylist').show();
$(this).text('Collapse');
}else{
$(this).next('.mylist').hide();
$(this).text('Expand');
}
});
});
Relevant Documentation:
https://jquery.com/
http://jsfiddle.net/w9kSU/981/
2
3
6 years, 2 months ago
toolset-dave
Creating a print page with specific attributes
Started by: jelle-jacobd
in: Toolset Professional Support
Quick solution available
2
3
6 years, 2 months ago
jelle-jacobd
Image in a content Templates
Started by: nuriaR-2
in: Toolset Professional Support
Quick solution available
Problem:
The issue here is that the user wanted their images to open in a lightbox.
Solution:
What you will need to do is to install a lightbox gallery plugin. https://wordpress.org/plugins/fancybox-for-wordpress/
The fancybox plugin should turn all your image clicks into a lightbox.
2
3
6 years, 2 months ago
nuriaR-2
How to use conditions when creating Single Templates in Elementor
Started by: peterS-14
in: Toolset Professional Support
Quick solution available
Problem: Conditionals created for the Divi builder do not work in Elementor.
Solution: Replace the curly bracket syntax around shortcodes with the standard square bracket syntax.
2
6
6 years, 2 months ago
peterS-14
Need help foe below
Started by: aamirK
in: Toolset Professional Support
3
13
6 years, 2 months ago
Minesh
how filter view using event date field to display today event
Started by: umbertoZ
in: Toolset Professional Support
Quick solution available
2
11
6 years, 2 months ago
umbertoZ
How to display Bootstrap media object
Started by: Ben
in: Toolset Professional Support
Quick solution available
2
11
6 years, 2 months ago
Ben
Field & Views Buttons now in Divi Builder front end
Started by: Stephen Vaughan
in: Toolset Professional Support
2
3
6 years, 2 months ago
Stephen Vaughan
Displaying multiple CPT's in a spreedsheet-like format
Started by: gavinJ-2
in: Toolset Professional Support
2
3
6 years, 2 months ago
gavinJ-2
How to force code in Edit Content Template screen to be color-formatted?
Started by: jeffS-2
in: Toolset Professional Support
2
3
6 years, 2 months ago
jeffS-2