Peter J. Herrel
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Bootstrap Carousel] Image hyperlinkAs of version 0.3.0, false is the thickbox default when using the DPS addon, and the carousel is responsive.
Forum: Plugins
In reply to: [WP Bootstrap Carousel] How do I use images already uploaded to the library?@neilthespacechimp, as of version 0.3.0 you can use the DPS addon to query sets of unrelated image attachments, e.g.:
[display-posts post_type="attachment" id="4,7,10" bootstrap="1"]Forum: Plugins
In reply to: [WP Bootstrap Carousel] ResponsiveAs of version 0.3.0 the carousel is fully responsive
Forum: Reviews
In reply to: [WP Bootstrap Carousel] Doesn't work with Display posts shortcodeIt’s kinda hard to diagnose without access to the source code of your theme and plugins. You could disable your plugins one by one to try and isolate the culprit. As for a quickfix, the following jQuery could do the trick:
jQuery(document).ready(function($){$('p:empty').remove();});Forum: Reviews
In reply to: [WP Bootstrap Carousel] Doesn't work with Display posts shortcodeOK. Still, I have strong suspicions the wpautop filter is messing things up. You might want to run a search on your theme files to see if the theme author has fiddled with
wpautop. Maybe take a look at the solutions provided here: http://ipanelthemes.com/kb/misc/wordpress/fixing-themes-custom-wpautop-priority/ . It could be as simple as adding the following to yourfunctions.phpfile (or a custom plugin):remove_filter( 'the_content', 'wpautop' ); add_filter( 'the_content', 'wpautop', 999 );Forum: Reviews
In reply to: [WP Bootstrap Carousel] Doesn't work with Display posts shortcodeLooks like the carousel items are wrapped in p tags, to which the active class is applied. Did you put the shortcode in a text widget? If so, maybe take a look at the solution provided here: http://wordpress.stackexchange.com/q/49077. You could also use the
do_shortcodetemplate tag to embed the slider directly in your sidebar e.g.:echo do_shortcode( '[display-posts posts_per_page="10"]' );Forum: Reviews
In reply to: [WP Bootstrap Carousel] Doesn't work with Display posts shortcodeThat topic was marked as resolved because it DOES work with the DPS plugin (see the title of the topic). The 0px is another issue which strictly speaking should be investigated and dealt with in another support topic.
In your (and Jon’s) case, as it works fine with the wp defaults, some plugin or theme element must be interfering, I guess. I’m happy to help you sort it out. Are you using a theme that is freely available? Is your theme or one of your plugins maybe enqueueing bootstrap scripts?
Forum: Reviews
In reply to: [WP Bootstrap Carousel] Doesn't work with Display posts shortcodeI tested with WP 4.0, Twenty Fourteen, and the latest versions of the plugins, and it works just fine.
Example code:
[display-posts posts_per_page="10" include_excerpt="true" image_size="large" bootstrap="1"]Make sure the posts you’re querying actually have thumbnails attached to them.
If you’re having trouble with the software, you could consider posting in the support forums first, instead of giving bad reviews. Just saying π
Hello @jkinsting, usage instructions in the Github wiki: https://github.com/diggy/wp-bootstrap-carousel/wiki#displaying-posts
Forum: Plugins
In reply to: [WP Bootstrap Carousel] More and more slidesHi @agkatanalondon,
By default the carousel shows all images attached to a post, whether they are embedded in your post content or not. You could use the ‘exclude’ parameter on a per post basis (wiki), or unattach media files using one of these plugins: http://wordpress.org/plugins/tags/unattach
Forum: Plugins
In reply to: [WP Bootstrap Carousel] Image hyperlinkAdding a
thickbox="0"param should resolve that. The default width is an issue still to be addressed, relevant ticket here.Forum: Plugins
In reply to: [WP Bootstrap Carousel] Image hyperlinkSeems like you are using the display posts addon. Nice implementation by the way. As you can see in the source the images are linked to the corresponding post by default, and as there’s no option to turn that off, it’s quite a mystery why they appear unwrapped. Maybe PHP or jQuery is stripping the a tags, but that’s just a wild guess. Did you download the plugin from the wp repository, or are you using a customized version, perhaps included with your theme?
Forum: Plugins
In reply to: [WP Bootstrap Carousel] Image hyperlinkHi @thekingjunior, could you provide some more details? Are you referring to the default carousel, or to the display posts addon? In the default carousel the images are hyperlinked (thickbox or file), I assume you wish to link to the attachment page?
Forum: Reviews
In reply to: [WP Bootstrap Carousel] Can you help me configure it