wp-maverick
Forum Replies Created
-
Hi Petemugartegui,
have you resolved your problem? I can’t see the slider on your page anymore so I guess you’ve decided to choose another solution ??Forum: Plugins
In reply to: [WP Parallax Content Slider] Feature RequestHi ajcke,
I add this to my TODO list but unfortunately, I don’t have much time to work on the plugin for the moment so I really can’t promise anything about that ??Hi andymalik,
that’s not a feature and I haven’t planned it ??
But you can easily try to customize the plugin.Look at the the_category function in the codex to do that.
You’ll be then able to concat the category with the excerpt!
Good luck!
Forum: Plugins
In reply to: [WP Parallax Content Slider] Swapping Image and Text AroundHi controlb,
You shoud better try to change the CSS animations to do that.
See styles.css.
Y can see 2 types of animations:- ‘toLeftAnimX’ or ‘toRightAnimX’: animations for content leaving the page
- ‘fromLeftAnimX’ or ‘fromRightAnimX’: animations for content entering the page
They consist of values at the beginning (0%) of the animation and values at the end of the animations (100%): opacity and position
Just try to invert these values and let me know if it works better.
Hello whues,
Are you going to use the slider static mode for that or do you want the slider to retrieve posts informations in dynamic mode?Hi furnox,
you have a syntax problem in your code:
Uncaught SyntaxError: Unexpected token < onHave you made some changes to the .cslider call?
Forum: Plugins
In reply to: [WP Parallax Content Slider] Cufon broken in Windows XP IE8Hi compse,
v0.8 will be launched during the week and i’ll integrate this.
Thanks a lot for your help!
Please tell me if you still see a problem with this new version.Regards
Forum: Plugins
In reply to: [WP Parallax Content Slider] [Plugin: WP Parallax Content Slider] ShortcodeHi,
that’s the 2nd time someone asks me for this feature so i will add this in my TODO list ??Hi jeff,
there’s still a lot of work on that feature ??
I’ve tried 2 jquery libraries to manage swipe movements and the one I use in v0.7 is not the best…
Thanks for your feedback ??Forum: Plugins
In reply to: [WP Parallax Content Slider] [Plugin: WP Parallax Content Slider] Auto StartHi lele_82,
actually, that’s not a bug.
The automatic mode stops when you click to change slides manually.The plugin use your wordpress theme default thumbnail size.
There is no compression in this plugin.Try to add this at the end of the CSS stylesheet:
.da-link { left:85%; }
Hello,
to change image properties try:.da-slide .da-img img { width: 110%; }
The CSS selector .da-slide .da-img you are trying to modify only apply styles to the div element with the class “.da-img” and not the image itself.
Great ?? Let me know if you use this plugin on your website, I’ll have a look!
Hmmm, very interesting one ??
I guess the fastest solution is:1 – Find and list the pages “wordpress ID” where you want to put a slider. Let’s say 1 and 2 for our example ?? And put the plugin code in each of these pages (or maybe once if its in the header)
2 – Create one static php file per slider based on static-slides-sample.php (eg. static-slides-1.php, static-slides-2.php)
3 – Adapt the plugin code in wp-parallax-content-slider.phpReplace :
include('static-slides-sample.php');
by
if ( is_page(1) ) { include('static-slides-1.php'); } else if ( is_page(2) ) { include('static-slides-2.php'); } else { include('static-slides-sample.php'); }
Not tested but this should work :S