Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#1891
Robert Kavgić
Participant

Hello,

Could you send me your login information so I can check out why pagination doesn’t work? Make sure you mark “Set as private reply” when posting.

As for the transition effect, go to wp-content/themes/metropolis/ and open single-pi_portfolio.php.
Go to line 391 where it’s written:

// init slider
jQuery('#slider1').nivoSlider({
	controlNav: false,
	directionNav: <?php echo $show_slider_arrows ?>,
	manualAdvance: <?php echo $disable_auto_sliding ?>
});

Add the code effect: 'fade', before directionNav so your code looks like following:

// init slider
jQuery('#slider1').nivoSlider({
	effect: 'fade',
	controlNav: false,
	directionNav: <?php echo $show_slider_arrows ?>,
	manualAdvance: <?php echo $disable_auto_sliding ?>
});

Change “fade” to the desired effect. List of effects can be found here.

Robert