Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1257061

    Hi,
    i have three big issues:
    1. The Pagination of the Magazin – widget is not working correct. If you click on the single arrow (left or right), it’ll get you one site straight or back.
    But if you click the double arrow, you’ll only will move to the end of the entrys. But you can not move to the first if you click on the left double arrow. It’s not working.

    2. On my Site are two magazine sections, one above the other. Everytime a user click on a pagination in the first magazine, the other magazin is gone. It only will be shown again if you reload the whole site.

    3. if a user click on the two left arrows in the second magazine pagination, the view moved to the first magazine.

    4. I’d like to open all links in magazine in a new tab. How can i do this?

    Please help me.
    regards
    christian

    • This topic was modified 3 years, 10 months ago by Elephantlogic.
    #1258502

    Hey Elephantlogic,

    Thank you for the inquiry.

    1-3.) Did you add any custom script in the site which might be related to the pagination? We could not reproduce the issue on our end, so the issue might be cause either by a plugin or a custom script. Have you tried to deactivate the plugins temporarily?

    2.) This is a WordPress limitation and not something that we will be able to fix right away, or provide a workaround for. It is actually not recommended to add multiple posts elements with pagination in the same page because they will use the same global pagination query.

    4.) To set the magazine to open in a new tab, we could use this snippet in the functions.php file.

    function ava_mag_new_tab(){
    	?>
    	<script>
    	(function($) {
    		$(document).ready(function(){
    			$('.av-magazine-title a').attr('target','_blank');
    		});
    	})(jQuery);
    	</script>
    	<?php
    	}
    add_action('wp_footer', 'ava_mag_new_tab');
    

    In the future, we recommend opening a single thread for each inquiry instead of including multiple questions because users usually receive immediate response that way, and would also prevent unnecessary confusion.

    Thank you for your patience.

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.