Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #976115

    I use the masonry galery within a color sectioon, which is placed as the 3rd section of my one pager.
    As there are many pictures in my galery I use pagination (with the result of 4 galery pages). Link 1, Link 2, … Link 4.
    When I open my one pager and scroll down to the galery it shows galery page 1. Now I click on the link page 2 – HERE COMES THE ISSUE – it jumps to the first section of my one pager. Actually it should stay in section 3 and show my the second page of the galery.

    #976151

    Hey gux,

    Thank you for using Enfold.

    That is the expected behavior because the pagination link don’t contain an anchor to that particular section. This is why it is not recommended to put a paginated section or element anywhere other than the top of the page. You can try this script in the functions.php file as a workaround to the issue.

    function add_custom_script(){
    	?>
    	<script type="text/javascript">
    	(function($){
    	function b() {
    			$('.pagination .inactive').click(function(e) {
    				e.preventDefault();
    	
    				var section = $(this).parents('.avia-section').attr('id'),
    				    link = $(this).attr('href') + '#' + section;
    	
    				    window.location.href = link;
    			});
    		}
    	
    		b();
    	})(jQuery);
    	</script>
    	<?php 
    	}
    	add_action('wp_footer', 'add_custom_script');
    

    Best regards,
    Ismael

    #978401

    Works perfect!
    Thx a lot Ismael!
    BR
    gux

    #978511

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Masonry Galery with pagination link not working correct’ is closed to new replies.