contacts

Get All 146 Premium WordPress Themes for Just $59.99
One-Time Payment: Unlimited Use Across Unlimited Domains, Plus Free Lifetime Updates! Learn more

Disable Slider Animations in tMeditate and tStore themes

Disable Slider Animations in tMeditate and tStore themes

If you use tMeditate or tStore and you want to disable animations effects in Slider such as background zoom in/out effect or text animations, it will require small code changes. Here are necessary steps:

Disable Slide Text Effects

  1. Login to your Admin Panel
  2. Navigate to Admin Panel -> Left Menu -> Appearance -> Theme Editor
  3. Open functions.php
  4. Update all value of data-transform_in to ‘none’, and all values of data-start to ‘0’, i.e:

Before:

data-transform_in=”x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;s:800;e:Power4.easeOutQuad;
data-speed=”800″
data-start=”1550

After:

data-transform_in=”none
data-speed=”800″
data-start=”0

5. Save changes

Disable Slide Background Zoom in and Out Effects

  1. Login to your Admin Panel
  2. Navigate to Admin Panel -> Left Menu -> Appearance -> Theme Editor
  3. Open functions.php
  4. Set ‘data-scaleend’ to have same value as ‘data-scalestart’, i.e.

Before:

<img alt=”kenburns6″ data-bgposition=”center bottom” data-bgpositionend=”center top” data-kenburns=”on” data-duration=”25000″ data-ease=”Linear.easeNone” data-scalestart=”100” data-scaleend=”140

After:

<img alt=”kenburns6″ data-bgposition=”center bottom” data-bgpositionend=”center top” data-kenburns=”on” data-duration=”25000″ data-ease=”Linear.easeNone” data-scalestart=”100” data-scaleend=”100

5. Save changes