Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter daniel002

    (@daniel002)

    Hi,
    Yes, both links remove the :3000 of the url
    Besides, all the other permalinks where I’m not using the plugin are working fine.
    Maybe you should test the plugin with Gulp + Browser Sync,

    Thanks for the help!

    Thread Starter daniel002

    (@daniel002)

    Of course:

    <div class="row flexbox-centrado-y flexbox-responsiveTop768 poemas-contenido">
    	<!-- Izq -->
    	<div class="col-lg-5 col-md-5 col-sm-4 flexbox-centrado-y contenido-nombre">
    		<a href="<?php the_permalink(); ?>"><h3><?php the_title(); ?></h3></a>
    	</div>
    
    	<!-- Der -->
    	<div class="col-lg-7 col-md-7 col-sm-8 contenido-texto">
    		<ul>
    			<?php
    				$args_poema = array(
    					'post_type'       => 'ubd_ingrediente',
    					'posts_per_page'  => -1,
    					'orderby'         => 'date',
    					'order'           => 'DESC',
    					'meta_query'		  => array(
    						array(
    							'key' => 'autor_poema',
    							'value' => get_the_ID()
    						)
    					)
    				);
    
    				$obj_poema = new WP_Query($args_poema);
    			?>
    			<?php if($obj_poema->have_posts()) : while($obj_poema->have_posts()) : $obj_poema->the_post(); ?>
    			<li>
    				<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    				<span>
    					<?php get_template_part('modulos/reproductor', 'poemas'); ?>
    					<?php $lector = get_field('nombre_lector'); ?>
    					<?php if(!empty($lector)) { ?>
    					<?php echo get_the_title($lector); ?>
    					<?php } ?>
    				</span>
    			</li>
    
    		<?php endwhile; endif; ?>
    		<?php wp_reset_postdata(); ?>
    
    		</ul>
    	</div>
    </div>

    And the shortcode:

    <?php echo do_shortcode('[ajax_load_more repeater="template_1" post_type="ubd_proyecto" posts_per_page="10" transition_speed="500" scroll="true" transition="fade" transition_container="false" button_label="Ver Más" button_loading_label="Cargando..."]'); ?>

    Thanks!

    Thread Starter daniel002

    (@daniel002)

    Hi,

    If I replace the shortcode of the plugin with the original code that I wrote the browser-sync reload functionality works totally fine (https://localhost:3000 appears again), so it seems there is a kind of incompatibility.

    By the way, I am using the Ajax Load More – Repeater Templates paid plugin, I put my code in the fields of the plugin admin panel.

Viewing 3 replies - 1 through 3 (of 3 total)