You should be able to click on the folder and it expand down to view the related files.
If I view this page and activate the “Customize” button to display the customize side bar then all the folders expand as they should.
Any assistance would be greatly appreciated. Thanks in advance.
]]>Very handy plugin, love it. But only some groups of pages are expandable, even though they have subpages…
Running on v 1.6.4
WP 5.8.2
DIVI Theme
Any help would be very much appreciated.
Thanks
]]>I am coming with a suggestion rather than a question.
I had 3 requirements for the collapsing functionality:
1) work as a toggle (just as the basic [expand][/]
2) header (the button) must be separated from the content being displayed
3) no arrow next to the trigger
I couldn’t quite find any solution for my task as:
expandall/collapseall do not fulfill (1)
external trigger does not do the (3)
It may be due to my poor reading skills but I decided the fastest way would be to merge some of the existing functionalities.
As a solution to my narrow scenario, I created this piece of copypasting. It uses the expandall / collapseall logic, except it is just merged into one button ( rel attribute being used each time ).
What do you guys think about it?
I’d like to emphasize I am not 100% familiar with collapse o matic capabilities.
Anyway, I think there should be a toggleall class completing the expandall / collapseall .
Do you plan on adding anything like this to the main plugin?
Martin
jQuery(document).on(com_binding, '.toggleall', function(event) {
if (jQuery(this).hasClass('ok')) {
if(jQuery(this).attr('rel') !== undefined){
var rel = jQuery(this).attr('rel');
var loop_items = jQuery('.collapseomatic.colomat-close[rel="' + rel +'"]');
}
else if(jQuery(this).attr('data-togglegroup') !== undefined){
var toggroup = jQuery(this).attr('data-togglegroup');
var loop_items = jQuery('.collapseomatic.colomat-close[data-togglegroup="' + toggroup +'"]');
}
else {
var loop_items = jQuery('.collapseomatic.colomat-close');
}
jQuery(this).removeClass("ok")
colomat_collapseall(loop_items);
}
else {
if(jQuery(this).attr('rel') !== undefined){
var rel = jQuery(this).attr('rel');
var loop_items = jQuery('.collapseomatic:not(.colomat-close)[rel="' + rel +'"]');
}
else if(jQuery(this).attr('data-togglegroup') !== undefined){
var toggroup = jQuery(this).attr('data-togglegroup');
var loop_items = jQuery('.collapseomatic:not(.colomat-close)[data-togglegroup="' + toggroup +'"]');
}
else{
var loop_items = jQuery('.collapseomatic:not(.colomat-close)');
}
jQuery(this).addClass("ok")
colomat_expandall(loop_items);
}});
]]>I have been using this plugin for a little while now and have noticed that the accordions always expand on page load and won’t allow the user to close them.
I have gone through the plugin settings and made sure the accordions are set to open when clicked however despite this they always open and can’t be closed.
Is this a known bug in the plugin or am I missing an extra step in the plugin configuration?
Thanks!
]]>This happens in the first two sections on my page, but not in the 3rd (bottom) section. It happens regardless of whether I change the animation from ‘slide & fade’ to just ‘slide’. And it happens on Chrome, although it’s much worse on Firefox because on Firefox it makes the entire section shake/flash as it expands/collapses, whereas on Chrome it only makes the ‘Read more…’ and hidden text shake/flash.
Any help much appreciated.
Adam
]]>I was wondering if it’s possible with this plugin. I can find my way around PHP meaning that I’m planning on making this myself. But every piece of code within the plugin indicates that it’s not easy to adjust the plugin to our wishes.
Are there other people that also request this feature? Would it even be possible to create this with the current plugin?
I would really like some suggestions. A big no would also be appreciated.
]]>I have my accordion working as it should using an anchor link, when directed from a button. The problem is, if the content is not simply single-line text, the accordion does not expand in height, but rather “reveals” the text such that it overflows down the page on top of everything else.
Could use some input here if this is perhaps a design integration, or actually a bug?
]]>Everything works the way I would like it to, with one exception: If a user has already expanded one tab and clicks to open another one, the position of the tabs jumps irrationally. Please see the behavior on the live site, much easier than explaining: https://www.threeriversayurveda.com/faqs/
Is there any way this can be fixed?
Thank you very much in advance for any help.
~Dagi
Does that make sense?
Is this possible?