bqworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Accordion Slider Lite] Full-screen capabilities?You’re welcome!
Forum: Plugins
In reply to: [Accordion Slider Lite] Full-screen capabilities?Yes, that’s correct. The Width option accepts percentage values, and also other CSS units like vw: 100vw.
Forum: Plugins
In reply to: [Accordion Slider Lite] Full-screen capabilities?It’s possible to set the accordion’s width to 100%, but for this you need to have the accordion’s container element set to full width as well.
Forum: Plugins
In reply to: [Accordion Slider Lite] The last pictures is over the others.Hi,
Most likely there is a JavaScript error on your page, and that breaks the accordion. Please make sure you have all the other plugins and the theme up to date.
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] Problem with non reponsive modeThe problem with tabs is that the accordion can’t calculate its size correctly when it’s inside a hidden element. What you need to do is track the tab clicks and then, programatically, resize the accordion. Something like this:
jQuery( ‘.tab-link a’ ).click(function(){
var index = $( this ).parent().index();
setTimeout(function(){
jQuery( ‘.tabs .tab-content’ ).eq( index ).find( ‘.accordion-slider’ ).accordionSlider( ‘resize’ );
}, 1000);
});The code above won’t work for you, because you probably have a different HTML structure; it’s just a simple, to give you an idea.
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] Empty space between imagesHi,
That space is due to the images being too narrow for the size of the panel, considering that each panel will have the same size. I don’t have a solution other than making the accordion smaller or using wider images.
Cheers!
Forum: Plugins
In reply to: [Accordion Slider Lite] Does paid version allow making images clickable?Yes, but the lite version also allows this: https://www.ads-software.com/plugins/accordion-slider-lite/faq/
Cheers
Forum: Plugins
In reply to: [Accordion Slider Lite] Text on sliderText is available only in the full version of the plugin.
You could achieve a similar look and functionality (with the lite version).
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] APIHi,
You can solve this with the API. You can call jQuery(‘.accordion-slider’).accordionSlider(‘resize’) to resize the accordion to the correct size.
If you’ve set the ‘Open Panel On’ option to ‘Click’, then the you can’t chose not to close it back on click. If you set it to ‘Hover’, then it won’t close on click. You can also programatically open panels with this call jQuery(‘.accordion-slider’).accordionSlider(‘openPanel’, index);
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] Slider on loadedYes, please send the link.
Forum: Plugins
In reply to: [Accordion Slider Lite] How is the image size selectedIn the right column of the Media Library there is a combo box from where you can select the size.
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] Linking slides to other websitesIn the full version it’s done differently. You need to specify the link in the Background Image editor (first button from the panel) and specify the link in the ‘Link’ field.
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] SafariHi. Thank you! I refreshed the page several times and the captions/layers were always in the same position. Please submit a support request on https://support.bqworks.com and provide a screenshot that shows the problem.
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] target = "array"…Hi. If you’re using the full version, please submit a support request on https://support.bqworks.com and provide a link to the page.
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] full-size image in sliderNormally, the full image should be visible when the panel is opened. Lightbox mode is available for the full version of the plugin.
Cheers.