Phil Ewels
Forum Replies Created
-
Hmm, this is strange. Do you have any categories set up? What are your settings in the plugin settings page? Is your site live on a URL that I could see?
Phil
Hi there,
There’s no conflict that I’m aware of – I’m running 3.8.2 and it works fine for me. What does the HTML look like in the page? Is it only loading a single carousel image? Are you using the carousel shortcode with any attributes and are you doing any filtering in the settings page?
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carouse-Control taller than image (again)Great! 🙂
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Using carousel code in a template instead of a pageHmm, it sounds like these issues aren’t really down to the plugin. I’d recommend trying out some tutorials about how to get started with creating and editing wordpress themes. Something like this maybe? http://www.presscoders.com/wordpress-theme-customization-guide/
The WordPress codex is also pretty good (though large): http://codex.wordpress.org/Theme_Development
It’s probably a good idea to start with figuring out how the The Loop works: http://codex.wordpress.org/The_Loop_in_Action
For things like font colour in the carousel, you can do this by just editing the theme CSS file, you don’t need to change any PHP files.
Hope this helps! Good luck!
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel in any size and responsiveHi Julio,
Apologies, I misread your original post. The carousel should resize itself to be within whatever object you put it in. By default, it is put within a layer with the class
.carousel, so you can use the following CSS to make it 300px wide (untested):.carousel { width: 300px; }To make it responsive, you can use responsive CSS:
@media (min-width: 500px) { .carousel { width:600px; } }Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel in any size and responsiveHi Julio,
There is an example of a full-width carousel on the Bootstrap website: http://getbootstrap.com/examples/carousel/
Cheers,
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel isn't working with WPMLOk, another thing to test if you don’t mind.. Can you see what happens if you set WP_DEBUG to true in the config file? I’ve written support in for multiple languages in the latest version of the plugin, but not tested it much yet. It could be that there is a bug in there somewhere which is only happening when WPML is doing something funny with the translation functions. The plugin may throw some PHP errors or warnings which we might see with WP_DEBUG which could point us in the right direction..
Can you get the shortcodes to work from within a post or page? (not using the
do_shortcode()function, just in some content)Cheers,
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel isn't working with WPMLHmm, this is strange. Sorry to be patronising, but you’re sure that the template files that you’re editing are the ones that are displaying the output? (You can do an
echo 'test';next to the carousel code on the english template and it shows up?). I only ask because I have been caught out by stupid stuff like this before 🙂I’d be fairly surprised if WPML is messing around with the code being output from the template tags, though I guess that is possible. Can you get the shortcodes to work in a normal page content body instead of using the template?
If none of this works I’ll have a look on a WPML site myself and see if I can replicate the issue.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel isn't working with WPMLOk.. Can you make the spanish category display on the english template page?
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel isn't working with WPMLHi there,
Could you elaborate on what you mean by not working? Is there any carousel code outputted when you view the html source?
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Using carousel code in a template instead of a pageHi there,
Sorry for the slow reply, I didn’t see your post until just now. What you’ve written looks right. You should put the code wherever you want the carousel to display – if you want it right at the top of the page, put it right at the top. If you want it in the middle, put it right in the middle, and so on.
It sounds like you’ve really really put it right at the top, which will look weird as you say. You’ll want to move it down a bit, in the mix with the rest of the output for the page. If you need any more help, send a link (and maybe the code for your template) and I’ll have a look.
Cheers,
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Undefined index error on save with WP_DEBUG = trueHi kjelelokk,
I’ve just pushed a release with a change which should fix this warning.
Cheers,
Phil
Hi kjelelokk,
I’m not keen to change the navigation sorry – these bullets are themselves clickable so need to be a big enough target. Also, you can change the dimensions and position of the navigation using CSS to fix this I think (if I understand you correctly).
I’ve just done all of the coding for the new release and will push it live tonight all being well. Your change is included. If you’re feeling impatient you can get it here: https://github.com/tallphil/cpt-bootstrap-carousel/archive/master.zip
Cheers
Phil
Ah, you’re quite right. Yes – that would be a sensible change. I’ve added it as an issue on the github repo: https://github.com/tallphil/cpt-bootstrap-carousel/issues/30
I have a few issues that I’d like to fix plus a few which are in the github repo and not yet pushed to wordpress.org, I’ll try to find time to do this in the coming days if I can.
In the mean time, feel free to make any local changes yourself – the licence is GPLv2, so you’re welcome to modify the code any way you wish. Bear in mind that if you don’t change the name and update the plugin, your changes will be overwritten.
Cheers,
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] IE8 SupportGreat, glad it’s working.
Phil