simonpedge
Forum Replies Created
-
I am seeing the following slides:
https://i.imgur.com/gn7SoyJ.pngAnd when I click on the images, it does open a separate Amazon page.
Ok good to hear ??
Forum: Plugins
In reply to: [Slide Anything - Responsive Content / HTML Slider and Carousel] Rotate ImageA suggestion is that you use a CSS Class instead of inline-style. And then create a rulle for the CSS Class in your stylesheet containing the ‘transform’.
This will be possible, but:
1) you will have to manually create the content for each slide / team member (it will not grab team member details from a custom post type), and
2) you will require to do custom CSS coding to style the layout of the slidesI’m assuming you are using ‘Min-Height” within your SA settings.
If so you could use some responsive CSS to change the ‘Min-Height’ and font sizes on mobile devices only, e.g.
@media only screen and (max-width:767px) { #SLIDER_ID .owl-item .sa_hover_container { min-height:80% !important; } .first_line_blue{ ... } .second_line_yellow{ ... } }
(NOTE: replace ‘#SLIDER_ID’ with the CSS ID for your slider)
You are getting a JavaScript error on that page (when logged out):
jQuery is not definedSA requires JavaScript in order to run and I would guess that you have an optimization/caching plugin installed that is loading jQuery at the end of the page to optimize page load times, but the jQuery is loading after SA requires it.
So:
1) Try ticking the “DOMContentLoaded event” checkbox, under ‘Other Settings’ within your SA slider settings, and if this does not solve it,
2) Deactivate any optimization plugins installed or have a look at the plugin settings with regards to deferring loading of JavaScript or Combining JavaScript (these optimization settings could also be in some premier theme settings)I’m sorry, but Owl Carousel does not support this feature for its thumbnail pagination (I built my plugin (Slide Anything) using the Owl Carousel jQuery library).
Good to hear ??
Please update Slide Anything to the latest version, version 2.4.5.
This should fix the bugs you identified.
Please update Slide Anything to the latest version, version 2.4.5.
This should fix the bug you identified.
Your theme is overwriting the style for those pagination buttons:
(blackdogsitting.com/wp-content/themes/rara-business-pro/style.css)button, input[type="button"], input[type="reset"], input[type="submit"] { font-size: 0.8em; font-weight: 900; color: #0aa3f3; border: 1px solid #0aa3f3; background: none; padding: 18px 60px; border-radius: 5px; -webkit-transition: ease 0.2s; -moz-transition: ease 0.2s; transition: ease 0.2s; }
(see the padding above)
You can fix this by adding the following CSS:
.sa_owl_theme .owl-dots .owl-dot { padding:0px !important; }
I’ve fixed this, and this fix will be a part of the next release coming out shortly.
Yes, its a bug. I have fixed this and this fix will be in the next release of Slide Anything, which should be coming out pretty soon.
Thank you for your kind words and your support. I will do my best to try keep the plugin going forever ??
Off the top of my head I don’t know of any other plugin, and thank you for your support.
It may be many years before there is an issue with Owl Carousel and the jQuery version bundled within WordPress, but I will endeavor to keep the plugin going even if it means making changes to the Owl Carousel core JavaScript code e.g. if there is a depreciated jQuery function calls that can be replaced with another function call, or JavaScript code syntax changes required, these I can do if this crops up.