benos030
Forum Replies Created
-
It works now after I have rewritten category/tag names(the slider was listing post pictures by tags/categories). No idea why, but this happened after the site content was migrated to new domain.
He that’ s looks like a simple PHP bug because arguments array data was not changed in line with new plugins updated version.
1. Open plugins folder/inc/core/data.php
2. Go to line 2273(animate shortcode)
3.Replace attribute’s type vlaues:Just replace this code:
‘values’ => array( ‘flash’, ‘bounce’, ‘shake’, ‘tada’, ‘swing’, ‘wobble’, ‘pulse’, ‘flip’, ‘flipInX’, ‘flipOutX’, ‘flipInY’, ‘flipOutY’, ‘fadeIn’, ‘fadeInUp’, ‘fadeInDown’, ‘fadeInLeft’, ‘fadeInRight’, ‘fadeInUpBig’, ‘fadeInDownBig’, ‘fadeInLeftBig’, ‘fadeInRightBig’, ‘fadeOut’, ‘fadeOutUp’, ‘fadeOutDown’, ‘fadeOutLeft’, ‘fadeOutRight’, ‘fadeOutUpBig’, ‘fadeOutDownBig’, ‘fadeOutLeftBig’, ‘fadeOutRightBig’, ‘slideInDown’, ‘slideInLeft’, ‘slideInRight’, ‘slideOutUp’, ‘slideOutLeft’, ‘slideOutRight’, ‘bounceIn’, ‘bounceInDown’, ‘bounceInUp’, ‘bounceInLeft’, ‘bounceInRight’, ‘bounceOut’, ‘bounceOutDown’, ‘bounceOutUp’, ‘bounceOutLeft’, ‘bounceOutRight’, ‘rotateIn’, ‘rotateInDownLeft’, ‘rotateInDownRight’, ‘rotateInUpLeft’, ‘rotateInUpRight’, ‘rotateOut’, ‘rotateOutDownLeft’, ‘rotateOutDownRight’, ‘rotateOutUpLeft’, ‘rotateOutUpRight’, ‘lightSpeedIn’, ‘lightSpeedOut’, ‘hinge’, ‘rollIn’, ‘rollOut’ )
with this:
‘values’ => array( ‘flash’ => ‘flash’ ,’bounce’ => ‘bounce’ ,’shake’ => ‘shake’ ,’tada’ => ‘tada’ ,’swing’ => ‘swing’ ,’wobble’ => ‘wobble’ ,’pulse’ => ‘pulse’ ,’flip’ => ‘flip’ ,’flipInX’ => ‘flipInX’ ,’flipOutX’ => ‘flipOutX’ ,’flipInY’ => ‘flipInY’ ,’flipOutY’ => ‘flipOutY’ ,’fadeIn’ => ‘fadeIn’ ,’fadeInUp’ => ‘fadeInUp’ ,’fadeInDown’ => ‘fadeInDown’ ,’fadeInLeft’ => ‘fadeInLeft’ ,’fadeInRight’ => ‘fadeInRight’ ,’fadeInUpBig’ => ‘fadeInUpBig’ ,’fadeInDownBig’ => ‘fadeInDownBig’ ,’fadeInLeftBig’ => ‘fadeInLeftBig’ ,’fadeInRightBig’ => ‘fadeInRightBig’ ,’fadeOut’ => ‘fadeOut’ ,’fadeOutUp’ => ‘fadeOutUp’ ,’fadeOutDown’ => ‘fadeOutDown’ ,’fadeOutLeft’ => ‘fadeOutLeft’ ,’fadeOutRight’ => ‘fadeOutRight’ ,’fadeOutUpBig’ => ‘fadeOutUpBig’ ,’fadeOutDownBig’ => ‘fadeOutDownBig’ ,’fadeOutLeftBig’ => ‘fadeOutLeftBig’ ,’fadeOutRightBig’ => ‘fadeOutRightBig’ ,’slideInDown’ => ‘slideInDown’ ,’slideInLeft’ => ‘slideInLeft’ ,’slideInRight’ => ‘slideInRight’ ,’slideOutUp’ => ‘slideOutUp’ ,’slideOutLeft’ => ‘slideOutLeft’ ,’slideOutRight’ => ‘slideOutRight’ ,’bounceIn’ => ‘bounceIn’ ,’bounceInDown’ => ‘bounceInDown’ ,’bounceInUp’ => ‘bounceInUp’ ,’bounceInLeft’ => ‘bounceInLeft’ ,’bounceInRight’ => ‘bounceInRight’ ,’bounceOut’ => ‘bounceOut’ ,’bounceOutDown’ => ‘bounceOutDown’ ,’bounceOutUp’ => ‘bounceOutUp’ ,’bounceOutLeft’ => ‘bounceOutLeft’ ,’bounceOutRight’ => ‘bounceOutRight’ ,’rotateIn’ => ‘rotateIn’ ,’rotateInDownLeft’ => ‘rotateInDownLeft’ ,’rotateInDownRight’ => ‘rotateInDownRight’ ,’rotateInUpLeft’ => ‘rotateInUpLeft’ ,’rotateInUpRight’ => ‘rotateInUpRight’ ,’rotateOut’ => ‘rotateOut’ ,’rotateOutDownLeft’ => ‘rotateOutDownLeft’ ,’rotateOutDownRight’ => ‘rotateOutDownRight’ ,’rotateOutUpLeft’ => ‘rotateOutUpLeft’ ,’rotateOutUpRight’ => ‘rotateOutUpRight’ ,’lightSpeedIn’ => ‘lightSpeedIn’ ,’lightSpeedOut’ => ‘lightSpeedOut’ ,’hinge’ => ‘hinge’ ,’rollIn’ => ‘rollIn’ ,’rollOut’ => ‘rollOut’ )
And that’s it.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Don't use link on CarouselOnce you have scrolled the carousel slider right or left, links(permalinks) stop to work or you need to click on them more then 10 times to make them work.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Don't use link on CarouselI have the same issue…