bqworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Accordion Slider Lite] [as_custom.namecustom] as a _blank targetHi. Are you using the lite version or the full version? If it’s the full version, you can set the Link Target option from the Miscellaneous sidebar panel to Blank. If you’re using the lite version you need to add this JavaScript code somewhere in your theme:
jQuery( '.accordion-slider a' ).attr( 'target', '_blank' );
Cheers
Forum: Plugins
In reply to: [Accordion Slider Lite] Responsive scaling breaks on small screenHi. The accordion will take the size of the container that it is in. In this case the container is the one that changes its size and becomes wider and then the accordion simply adapts. There are some CSS media queries for the ‘#header-widget-area’ element that control this size.
Forum: Plugins
In reply to: [Accordion Slider Lite] Link to a specific Page?Hi. Try this:
echo do_shortcode( ‘[accordion_slider id=”1″]’ );
Forum: Plugins
In reply to: [Grid Accordion Lite] Problem after updating to WP 4.2.2Thank you for letting me know!
Forum: Plugins
In reply to: [Grid Accordion Lite] Problem after updating to WP 4.2.2I can see some
tags before and after the img elements. Those could be caused by some code from the theme. Please try to temporarily activate one of the default themes and see if the problem persists.Forum: Plugins
In reply to: [Accordion Slider Lite] Images in low qualityHi. When you select an image from the Media Library you can select its size from the Media Library’s right column.
Hi. You need to add this PHP code in the theme’s header.php file:
<?php
if ( is_front_page() ) {
echo do_shortcode( '[accordion_slider id="1"]' );
}
?>
Forum: Plugins
In reply to: [Accordion Slider Lite] Angled slides?Sorry for the delay! I took a look at the example you provided and concluded that it’s possible to achieve with some custom CSS:
.as-panel {
transform: skewX(-20deg);
}.as-background {
-webkit-transform: skewX(20deg);
-ms-transform: skewX(20deg);
transform: skewX(20deg);
margin-left: -80px;
}.accordion-slider {
margin-left: -80px;
}You might need to adjust the values above to make it pixel perfect. I depends on the rest of the configuration.
Forum: Plugins
In reply to: [Grid Accordion Lite] How do you add links?When you select an image from the Media Library, in the right columns, under ‘ATTACHMENT DISPLAY SETTINGS’, you can set the ‘Link To’ option to ‘Custom URL’ and then specify the URL in the field below.
Forum: Plugins
In reply to: [Accordion Slider Lite] Slider Caption MissingSorry but that’s not my plugin. Please refer to the theme author.
Cheers
Forum: Plugins
In reply to: [Accordion Slider Lite] Angled slides?Can you show me an example?
Forum: Plugins
In reply to: [Accordion Slider Lite] Slider Caption MissingI would need a link to the page. Please post it here or email it to me.
Cheers.
Forum: Plugins
In reply to: [Accordion Slider Lite] Embedded Shortcode Gives Gray Slider, No ImagesThere’s some obtrusive CSS in the theme that affects the styling in the slider. That’s why the problem doesn’t occur in the preview. You can correct the problem by adding this custom CSS:
.accordion-slider .as-background {
max-width: none !important;
}Forum: Plugins
In reply to: [Grid Accordion Lite] Responsiveness not working on mobile devicesThe accordion will behave the same way on mobile devices as it behaves on bigger screens. However, since the images are also scaled down and sometimes more of the image is shown, the accordion might not need to open as much as it does on bigger screens.
Forum: Plugins
In reply to: [Accordion Slider Lite] Link to slides to pageWell, if it works well in the preview, it means it’s a problem caused by the theme. This is always important to check.
Looking at your link I can confirm that. Your theme applies some CSS to all images from the page that have a link attached. You can prevent that in the accordion by adding some custom CSS to override the theme’s CSS:
.accordion-slider img { opacity: 1 !important; }
I can also see some elements being added in the accordion’s HTML markup. This is probably done by the theme as well. I can give you some CSS to prevent it as well, but for a real fix you should address the theme’s author.
.accordion-slider br { display: none; }