WordPress Content Slide Plugin
Thanks for downloading one of my plugins. If you like my plugins, please support me by donating a small amount through PayPal.
If you want to insert multiple sliders on same page then use my new plugin
[button link=”https://snilesh.com/blog/resources/wordpress/wordpress-gallery-plugin/” title=”Wordpress Gallery Plugin” type=”info”]Wordpress Gallery Plugin[/button]
Demo
[button link=”https://snilesh.com/blog/wordpress-content-slide-plugin/” title=”Wordpress Content Slide Plugin” type=”info”]Demo 1[/button]
Download
[button link=”https://wordpress.org/extend/plugins/content-slide/” title=”Wordpress Content Slide Plugin” type=”success”]Download[/button]
New Features
1] Custom Image support. So you can create slider without using posts.
2] Added New Effects Swirl,Rain,Fade
3] Added styles like border,background,font-family,font-size for headings and text.
Installation
1. Download the zipped plugin file to your local machine.
2. Unzip the file.
3. Upload the “content-slide” folder to the “/wp-content/plugins/” directory. (DO NOT CHANGE ANY FILE OR FOLDER NAMES)
4. Activate the plugin through the “Plugins” menu in WordPress.
5. Click on Content slide in your wordpress dashboard and configure content slide plugin options.
You can directly install wordpress content slide plugin from your websites admin plugin section.
Add PHP code
To display WordPress content slide on your website you have to add following lines of code inside your themes .php files.
<?php if(function_exists('wp_content_slider')) { wp_content_slider(); } ?>
Example if you want to display this slider in your header then you have to edit the header.php file. Just open header.php from your current theme in any editor and add
<?php if(function_exists('wp_content_slider')) { wp_content_slider(); } ?>
lines at the location where you want to display the slider.
Slider Only On Home Page
In some cases you just want to display slider only on the home page in this case you have selected a page as home page from the settings->reading section.
And if your home page is using default page template then you have to add following lines of code in your page.php at the location where you want to display the slider.
<?php if(is_front_page()) { if(function_exists('wp_content_slider')) { wp_content_slider(); } } ?>
Using above code the slider will be displayed only on home page.
Slider on a Specific page
If you want to display slider on a specific page say ‘about’ then you have to use wordpress conditional tags
<?php if(is_page('about')) { if(function_exists('wp_content_slider')) { wp_content_slider(); } } ?>
Demo
[button]Demo[/button]
Download
[button type=”success” title=”Download” link=”https://wordpress.org/extend/plugins/content-slide/”]Download[/button]
Support
You can support this plugin by giving ratings on wordpress website.
Give Rating at WordPress Content Slide.
Also You can help translating this plugin in different languages.
If you use this plugin on your website hosted on a dedicated server, just send your website url. All the links will be displayed on this Page.
If you like my plugins, please support.
Thank you
The navigation buttons don’t show up even though I have them enabled.
Snilesh hi, I left a query last night, today at some point I noticed a little 🙂 and now I,ve just been in and my slider looks really nicely formatted?
Was that you or did an angel fix it? ha ha
I only ask as really dont know if it was you as just been through your comments and I cant find mine from last night?
Can you let me know please.
PS thanks again whatevers going on looks great
no i didn’t updated any version of the plugin. the problem might be at your end.
Hi.
I have an issue with this plugin in IE7. The image appears to move so that the left hand side of the image starts in the center of the screen. Can you help sort this out?
www[dot]inkydoodle[dot]co[dot]uk
Thanks
TheWebGents
I find that when I set it to FADE only effect, the navigation butttons dissapear. Why is this?
When I set it to ALL COMBINED, they appear again. Anyone why know?
navigation’s are not available in fade effect.
I just installed this plugin on the homepage of my BuddyPress installation and everything works well except the navigation buttons underneath the slider. The boxes work perfectly, but for some reason the numbers only start to display for Image #3, 4, 5, or 6. Numbers 1, 2, and sometimes 3 don’t display. I’ve just disabled the navigation buttons for now, but it would be nice to have those working.
which effect you selected?
Can you add alt tags to the images and if so where?
Is this plug-in SEO?
if I choose fade effect, the image text does not appear. How can I fix it?
overlay text,heading and navigation are not available in fade effect.
I will use in my websites, no doubt!
Thank you for this precious wp plugin.
This plugin is great – works exactly as I’d hoped right out of the box.
However, one small problem: In the Image X Text and Image X Heading boxes, characters like apostrophes are escaped – and the \ appears in the slider. Every time I save the slider, it adds another \. I can strip them out, but there will always be at least one \ before an apostrophe.
Any suggestions?
Thanks for the help!
thanks for describing that bug. bug is removed in version 1.3.7
Just a helpful hint that these can also be removed by inserting the HTML code for the apostrophe instead the apostrophe itself. I’ve seen this happen on other plugins and this solution has worked every time.
“\” problem is already solved.