Hi Phil,
Just for the sake of my curiosity, can you share what happened with WordPress? I’m wondering if or why version 1.13 didn’t satisfy them, or if it was some other sort of bureaucratic problem. Such a shame!
]]>Jetpack Scan now finds a security issue with this plugin:
Vulnerable Plugin: cpt-bootstrap-carousel (version 1.12)
Any chance of an update to fix this? -OR- Does anyone know more about this and if so, suggest a fix which I could add into the plugin code?
]]>Hello, I did an update to the theme I’m using and now my carousel is listed instead of a slideshow. Is there a setting that can easily move it back to a slider?
]]>Hello,
I have the problem that the next icons (arrows) in the slides are very small. I would like to enlarge the arrows. How can I do that for this slider?
That is the code I have found out with the inspector from Firefox.
.carousel .carousel-control-prev-icon {
background-image: url(../img/svg/arrow_left.svg);
.carousel .carousel-control-prev-icon, .carousel .carousel-control-next-icon {
width: 20px;
height: 20px;
}
the path to which is accessed is: Webpack:///csr/sccs/mbd-free.scss:19
Mann thanks
]]>How can I install the slider in the header of the header.php? The following code is currently available for the background image. But I would like to replace that with the slider.
<?php
if(is_front_page() && !get_theme_mod( ‘header_banner_visibility’ )): ?>
<div id=”page-sub-header” <?php if(has_header_image()) { ?>style=”background-image: url(‘<?php header_image(); ?>’);” <?php } ?>>
<div class=”container”>
<h1>
<?php
if(get_theme_mod( ‘header_banner_title_setting’ )){
echo esc_attr( get_theme_mod( ‘header_banner_title_setting’ ) );
}else{
echo ‘WordPress + Bootstrap’;
}
?>
</h1>
<p>
<?php
if(get_theme_mod( ‘header_banner_tagline_setting’ )){
echo esc_attr( get_theme_mod( ‘header_banner_tagline_setting’ ) );
}else{
echo esc_html__(‘To customize the contents of this header banner and other elements of your site, go to Dashboard > Appearance > Customize’,’wp-bootstrap-starter’);
}
?>
</p>
<i class=”fa fa-fw fa-angle-down”></i>
</div>
</div>
<?php endif; ?>
<div id=”content” class=”site-content”>
<div class=”container”>
<div class=”row”>
<?php endif; ?>
Does this plugin support multiple carousel items on each individual slide? For example, I want to show five items on one slide and then the slider will show another five items etc.
Is this possible?
Thanks for the help!
]]>Hello,
I noticed that it is possible to embed local videos when adding my own site’s path as video URL. It gets embedded via iframe, however the video plays without problems. I would suggest making this a feature of the slider as well.
Another problem I noticed is that when the video URL is directly copied from Vimeo or YouTube, most of the times the playback doesn’t work because of the link being fetched is a wrong one. YouTube links that shall be embedded externally require the “/watch?v” to be replaced by “/embed/” in order for the video to play. Otherwise, the iframe cannot be loaded because it is restricted to be shown externally. This makes adding video slides to the carousel difficult for editors without coding experience.
Also, it would be useful to display video captions as well! The .carousel-caption div could still be shown, despite the video being added via an external (or local) link.
Thank you!
]]>Another suggestion:
Your nomenclature should align with the Bootstrap nomenclature. I think that would make more sense, and be more user-friendly.
A “carousel”, as bootstrap describes it, is a slider, or slideshow (or whatever you commonly to call it) containing a set of slides (which Bootstrap calls “Carousel Items”). It would be an improvement if you used the Bootstrap naming conventions; that would make your plugin more logical and understandable.
A single CPT item should be called “Carousel Item”. “Add new” should be “Add New Carousel Item”. The plural name of CPT items should be “Carousel Items” and, in the menu, “All Carousel Items”. If anything, it should be the categories that are called “Carousels” or, if that’s too confusing, “Carousel Groups”.
What you call a “Carousel” is not a carousel at all; it is a single carousel item. Your naming is confusing to users. Why say Add New Carousel, when they are just adding a new single slide?
You can change the Single and Plural names, and what CPT items are referred to in the admin menu and admin screens, in the CPT set-up without changing the slug, so I think you could make the change without screwing up everyone’s existing content.
Just my suggestion! Might be more user-friendly over all. Great plugin – keep up the good work and thanks again!
]]>Hi,
I’ve been using your plugin for a few weeks now – thanks for making it available. Here’s a suggestion…
On the list of Carousel items admin page, it would be very helpful if you could filter by category.
I’ve been able to add that feature with the code found here:
https://thestizmedia.com/custom-post-type-filter-admin-custom-taxonomy/
I made it work for your plugin by using these settings:
$post_type = 'cptbc'; // change to your post type
$taxonomy = 'carousel_category'; // change to your taxonomy
It would be a great addition to your plugin if you could build that feature in with a future update!
]]>Took a while to figure out that the “caption” feature uses the Excerpt field, and not the Caption field of the featured image; wish that was specified in an FAQ ?? Right now you need to squint at the screenshot to figure that out.
When I enable the Caption (“Show Slide Captions” = Show) the plugin is showing the last text from the page’s .entry-content for slides with blank excerpt field. This happens if I have captions enabled but do not fill in the excerpt field for one of the slides. It would be great if this could be corrected so that a blank excerpt field results in nothing being displayed as an excerpt, rather than the wrong text.
I should mention that the text it is picking up erroneously comes from another plugin which inserts sharing icons at the bottom of the page content. (Sassy Social Share plugin.)
]]>I’m using the background-image method. On the first run-through, there is a lag in displaying each image as it begins to slide. I believe this is because the background images are not loaded by the browser until the slide gets display: block.
Is there an easy way to preload the background images? Maybe even lazy-load them one or two slides ahead?
]]>Only the oldest item created for the carousel is showing in the carousel.
It is set to have no category requirement, and has the same issue on either load in order, or load in date order.
In the HTML i can only see the current active slide.
]]>1. Setting the video link doesn’t display any video at all.
2. I have been using https://www.ads-software.com/plugins/wp-youtube-lyte/
along with functions.php code to allow for posting shortcodes in excerpts,
add_filter( 'get_the_excerpt', 'my_shortcode_parser' );
function my_shortcode_parser( $excerpt ) {
return do_shortcode($excerpt);
}
But just now when I switched over to your plugin I noticed this
https://drive.google.com/file/d/1tmZmt0qOkdSOsEUGRfdZ29MC6YOHoptU/view?usp=sharing
which wasn’t present/did not happen with the other bootstrap based carousel plugin (https://www.ads-software.com/plugins/advanced-bootstrap-carousel/)
I’m trying to stop the slider from autoplay/slide when a youtube video inside a slide is playing. But first to do that I need to control/pause autoplay and then apply youtube api I suppose.
Tried with this
$('.carousel').carousel({
pause: true,
interval: false
});
]]>
Is it possible to change the carousel-control-prev-icon and carousel-control-next-icon buttons to icons such as Font Awesome or similar?
]]>When the page is displayed on an iPad (and probably other tablets) it uses a different aspect ratio for the images in the carousel than the original images and then crops them…arbitrarily.
Is there a way to force the carousel to always maintain the same aspect ratio regardless of the device…in other words reduce/expand the image size to fit if necessary, but never need to crop?
Thanks.
ssander
I want add some class for img in carusel. How i can do it?
i want add class “d-block” and “w-100” to img for responsive.
Delete width and height from img
I would like to make the carousel responsive. How can i proceed
]]>Since this plugin is based in ACF plugin could be possible that any custom field could be linked to the current post type of the carousel? It would allow for a more flexible slider setup and without code to control stuff like alignment of text, colors, font sizes, I think it would require though a way to specify a template instead of excerpt to fine-tune the position of the custom fields.
]]>After I updated the plugin, all my captions went away. I eventually figured out that whatever I place in the Excerpt field in the edit window appears as the caption. But how do I change the style to an italic or oblique and how do I replace the default font with a serif font?
Also, how to I change the image order. Going into QuickEdit, I saw an Order numeric field and I assumed that I specified the order sequence by what number I put in the field. Either that’s a wrong assumption on my part or it’s broken. How do I reorder the images in the carousel?
Thanks,
Rob Tanner
I have had the CPT Bootstrap Carousel working on this site for at least a year or more, and it all looked good.
However recently I noticed that the Caption now displays ‘caption text’ (taken from the actual page content) under the ‘caption title’.
In the carousel settings, I don’t use any custom css, but I do have the following settings for the carousel which might be important for you to know:
Show Slide Titles / Captions? YES
HTML before title: <h4>
HTML after caption text: </h4>
HTML before caption text: <p>
HTML after caption text: </p>
So the caption title which is defined for each individual carousel image page is coded as a <h4>, which is OK.
But it is followed by a <p> tag which now appears to be pulling the page content from the page the carousel is being displayed. (Where previously it used to be blank.. ie: only the title displayed, nothing else).
This is a new development, and I haven’t changed the carousel settings or images, since the site went live. Nor have I changed anything else on the site – except to keep updating all plugins and WordPress versions to be current.
So I think something has changed in one of the updates for the CPT Bootstrap Carousel plugin which makes the caption work differently.
How can I remove the <p> ‘caption text’ that is appearing after the <h4>’ caption title’? In other words, I only want the title to display as a caption.
Thanks,
SunnyOz
i would like to display 3 images on the carousel instead of one on the carousel
]]>How can I get the carousel to display on the home page when it’s set to show the blog roll of post pages?
]]>I searched this forum and read the docs, but I don’t see anything about using srcset to set a different image for mobile. Is that possible?
Thanks
]]>Is this plugin working with WordPress 4.7.5?
]]>I put [image-carousel] on home 1 for the front page of my website but the carousel isnt appearing?
https://5ce.596.myftpupload.com/
thanks
]]>Hi,
i have created a carrusel with a category and subcategory (Places->Madrid). When i stay on a page i show the carrusel with the shortcode [image-carousel category=”places,madrid”], the problem is that i don′t want to show inside the carrusel the image where the page that i am.
For example, if i am in Madrid-Chueca, i don′t want that in the carrusel show me Madrid-Chueca again, just the rest of them that are in the same category. How can i exclude a specific image of the carrusel on a page?
Thanks!
]]>Hello, this slide work properly in deskstop version, but the text is not appear in mobile version.
my site saffronfx.com. my mobile browser is chrome
thanks
Love this plugin but I don’t think it is touch enabled for mobile devices. I just tried it out on a smartphone with swipe gestures and it does not change the slide – have to resort to using small directional arrows on either side of the slider. This is quite a large drawback for users viewing the carousel on mobile devices as they assume swipe gestures will work. Would it be possible to enable swipe gestures on the slider like the Flickity slider has done? https://flickity.metafizzy.co/
Would be an awesome improvement.
]]>Hello,
Is it possible to remove button for the link and make the whole image to be button and redirect to added link.
Thanks
]]>