Phil Ewels
Forum Replies Created
-
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Prev/Next arrows not workingHi there,
I’ve had this reported once or twice before I think, it’s usually because of some clashing class names or overlapping elements. But could be any number of other things too. Do you have a link to your site?
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] How to remove title from page?Hi Kostyra,
Do you mean the titles on top of the images? Just leave the titles and descriptions empty when you create the slider image posts. Then the title won’t be shown.
Phil
Hi David,
Possible, but it’s more likely that it’s just because those screenshots were generated a little while ago and the core WordPress distribution has changed the user interface since then. The plugin doesn’t do anything special with those buttons.
In what way are you having trouble? Do you have a link to the site that you’re working on?
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Extra target="_blank"Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Extra target="_blank"Hi thendigital,
Great spot – thanks! Will update on the development version now so that it goes out with the next release.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Footer banner slides together with the carouselps. A good start would be to start doing some tests around it. For example, what happens if you add other content before / after the carousel? Does that vanish or stay there? If it stays there but the footer still disappears then that would be really interesting…
After that, if it were me, I’d try to manually implement a bootstrap carousel by hand using a wordpress template file. Start with it as simple as possible and strip it back until it works normally, then add things back in one step at a time until you can identify what’s causing the problem.
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Footer banner slides together with the carouselCongratulations Audee, this is hands down the weirdest bug that anyone has reported for this plugin. I have absolutely no idea what’s going on with your page! It seems totally inconsistent too, with different amounts of your footer vanishing at different times.
I’m afraid that this is beyond me, so you’ll need to crowd source an explanation. I’d recommend posting about it on stack overflow: http://stackoverflow.com/questions/tagged/twitter-bootstrap
Please let me know if you figure out what’s going on!
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Somehow removed image title background colorHi VTDev054,
Please see the bootstrap docs for the typical markup. You can change the title background colour using some custom CSS. Something like this should work:
.carousel-caption { background-color: red; }I hope that helps!
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Image Featured Woocommerce ErrorHi Oscar,
Thanks for the tip – the plugin already has this code (you can see it here).
Note that the plugin checks whether thumbnails are already enabled.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Giant White tag.Aha, I bet it’s because you pasted the shortcode from this website or something. The example code will be wrapped in
<pre><code>on this website and could get carried over to the page editor.Glad you got it sorted!
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Giant White tag.Hi MuninMunin,
Any reason why you have the carousel inside
<pre>and<code>tags? They have very specific formatting rules, so I’m pretty sure if you move the carousel out of those it will work normally.. They aren’t part of the plugin, so they will be coming from your theme or post / page.Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Change on font sizeHi italosayan,
Please see the FAQ:
The carousel makes the content jump each time it changes
You need to make sure that each image is the same height. You can do this by setting an
Aspect ratioin theEdit Imagesection of the WordPress Media Library and cropping your images.Hope that helps, let me know if you’re still running into problems after that.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Clickable imagesHi novakedward,
I haven’t used the plugin myself for ages, so I’m not 100% about this – but off the top of my head I think that if you leave the “link button” setting switched off then you get exactly this behaviour.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Add text to CarouselHi Michele,
Captions and excerpts can be whatever you want – unique / identical / filled / empty. It shouldn’t matter.
You can change the appearance of the caption using some custom CSS:
carousel-caption h4 { color: <your text colour>; background-color: <your background colour>; }Hope this helps – several people have asked this recently, so I’ll add it to the FAQ in a future release.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel broken with httpsHi knoxi,
You hit the nail on the head – when loading an encoded page over https, most browsers won’t include embedded content which isn’t encoded, to ensure security.
Your particular problem is that you set up the carousel images when browsing the site at the http address, so all of the links to the embedded images use http. If you replace these with https versions it should work on both sites (https content will work inside http pages). This isn’t really an issue with the plugin, more a general issue.
To be honest, unless you have a good reason not to, I’d recommend always serving the entire website only over https. You can do this with a redirection or a number of other methods. This will make your life much easier in the long run 🙂
Phil