Private: Home › Forums › WordPress Themes › Metropolis – Clean Multipurpose WordPress Theme › pagination portfolio › Reply To: pagination portfolio
February 2, 2015 at 11:51 pm
#1891
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