Title: benos030's Replies | WordPress.org

---

# benos030

  [  ](https://wordpress.org/support/users/benos030/)

 *   [Profile](https://wordpress.org/support/users/benos030/)
 *   [Topics Started](https://wordpress.org/support/users/benos030/topics/)
 *   [Replies Created](https://wordpress.org/support/users/benos030/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/benos030/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/benos030/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/benos030/engagements/)
 *   [Favorites](https://wordpress.org/support/users/benos030/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Slider and Carousel do not work in version 4.9.9 – PHP error](https://wordpress.org/support/topic/slider-and-carousel-do-not-work-in-version-499-php-error/)
 *  Thread Starter [benos030](https://wordpress.org/support/users/benos030/)
 * (@benos030)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/slider-and-carousel-do-not-work-in-version-499-php-error/#post-6834448)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Animations no longer work as of update this morning](https://wordpress.org/support/topic/animations-no-longer-work-as-of-update-this-morning/)
 *  [benos030](https://wordpress.org/support/users/benos030/)
 * (@benos030)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/animations-no-longer-work-as-of-update-this-morning/#post-4387069)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Don't use link on Carousel](https://wordpress.org/support/topic/dont-use-link-on-carousel/)
 *  [benos030](https://wordpress.org/support/users/benos030/)
 * (@benos030)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/dont-use-link-on-carousel/#post-4401997)
 * Once 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Don't use link on Carousel](https://wordpress.org/support/topic/dont-use-link-on-carousel/)
 *  [benos030](https://wordpress.org/support/users/benos030/)
 * (@benos030)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/dont-use-link-on-carousel/#post-4401996)
 * I have the same issue…

Viewing 4 replies - 1 through 4 (of 4 total)