• Resolved avefrance

    (@avefrance)


    Hello. And put this addon Preloaded addon . But in the previews that are loaded pre-loaded, the links do not work !!! And you can not open the post. For example, here: https://avefrance.com/allposts/ or in any other list.
    Shortcode: [ajax_load_more container_type=”ul” post_type=”post” preloaded=”true” preloaded_amount=”1″ posts_per_page=”1″ category__not_in=”309″ scroll=”false” scroll_distance=”400″]

Viewing 15 replies - 1 through 15 (of 33 total)
  • Thread Starter avefrance

    (@avefrance)

    So what is it??? I have now in all the lists of the first posts are not clickable !!! I paid for it ???

    Thread Starter avefrance

    (@avefrance)

    And yet: on all the first previews that were pre-loaded, the word ” Продолжить → ” appeared. What do with the previews that are under the influence of this addon? I could deactivate it and forget it like a bad dream, but I will have to redo 25 pages of lists again, where these shortcodes are placed !!! Maybe you still solve this problem ????

    Thread Starter avefrance

    (@avefrance)

    Your addon, which I bought on your advice, is now dishonoring me in front of all site visitors.

    Plugin Author Darren Cooney

    (@dcooney)

    Hi @avefrance
    Im terribly sorry. Im not sure what you mean – the links are working for me.

    Im more than happy to help you sort this out or provide a refund if it’s not working for you.

    Please let me know how I can help you!

    Thread Starter avefrance

    (@avefrance)

    I did not understand your answer. What links do you have? Look at this page, for example:
    https://avefrance.com/allposts/
    The first preview is displayed through the addon. And the link through the image and title is not clickable.
    All the following previews are displayed via Ajax – and everything is fine. Or addon class cancels href, or something else … So you can decide this question or not?

    Plugin Author Darren Cooney

    (@dcooney)

    Hi, there is no need to be so aggressive. I am simply trying to get the full picture to help you as quickly as possible. I have never had this issue before.

    Can you share your Ajax Load More Repeater Template?
    It may be an issue in there.

    Thread Starter avefrance

    (@avefrance)

    <div STYLE=”font-size: 14px; padding: 10px 10px 10px 15px;”>
    <?php
    the_author();
    ?>
    </div>
    <span class=”mythumbnail”>
    <?php
    bento_post_thumbnail();
    ?>
    </span>
    <div STYLE=”padding: 0px 10px 0px 15px; margin: 0 !important;”>
    <?php
    bento_post_title();
    ?>
    </div>
    <div STYLE=”padding: 0px 10px 0px 15px;”>
    <?php
    the_excerpt();
    ?>
    </div>
    <span class=”mycategory”>
    <?php
    the_category($sep = ‘ | ‘);
    ?>
    </span>
    <span class=”mytag”>
    <?php
    the_tags($sep = ‘ ‘);
    ?>
    </span>
    <div STYLE=”margin-top: 10px; background-color: #dee3ea !important; height: 12px;”><br></div>

    Plugin Author Darren Cooney

    (@dcooney)

    Thanks, the issue may the bento_post_title() function.
    Can you try this updated template instead?

    <div>
    	<div STYLE="font-size: 14px; padding: 10px 10px 10px 15px;">
    	<?php
    		the_author();
    	?>
    	</div>
    	<span class="mythumbnail">
    	<?php
    		bento_post_thumbnail();
    	?>
    	</span>
    	<div STYLE="padding: 0px 10px 0px 15px; margin: 0 !important;">
    		<?php
    			//bento_post_title();
    		?>
    		<header class="entry-header">
    			<h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    		</header>
    	</div>
    	<div STYLE="padding: 0px 10px 0px 15px;">
    	<?php
    	the_excerpt();
    	?>
    	</div>
    	<span class="mycategory">
    	<?php
    	the_category($sep = ‘ | ‘);
    	?>
    	</span>
    	<span class="mytag">
    	<?php
    	the_tags($sep = ‘ ‘);
    	?>
    	</span>
    	<div STYLE="margin-top: 10px; background-color: #dee3ea !important; height: 12px;"><br></div>
    </div>
    Thread Starter avefrance

    (@avefrance)

    The site completely stops working. Error somewhere

    Plugin Author Darren Cooney

    (@dcooney)

    I think it’s the quote marks. When you pasted them they converted.

    try this template

    
    <div>
    	<div STYLE="font-size: 14px; padding: 10px 10px 10px 15px;">
    	<?php
    		the_author();
    	?>
    	</div>
    	<span class="mythumbnail">
    	<?php
    		bento_post_thumbnail();
    	?>
    	</span>
    	<div STYLE="padding: 0px 10px 0px 15px; margin: 0 !important;">
    		<?php
    			//bento_post_title();
    		?>
    		<header class="entry-header">
    			<h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    		</header>
    	</div>
    	<div STYLE="padding: 0px 10px 0px 15px;">
    	<?php
    	the_excerpt();
    	?>
    	</div>
    	<span class="mycategory">
    	<?php
    	the_category($sep = ' | ');
    	?>
    	</span>
    	<span class="mytag">
    	<?php
    	the_tags($sep = ' ');
    	?>
    	</span>
    	<div STYLE="margin-top: 10px; background-color: #dee3ea !important; height: 12px;"><br></div>
    </div>
    
    Thread Starter avefrance

    (@avefrance)

    Yes, the link to the title has become clickable. And what about the image? How to make it clickable?

    Thread Starter avefrance

    (@avefrance)

    The image also became not clickable

    Plugin Author Darren Cooney

    (@dcooney)

    Could try this.

    
    <div>
    	<div STYLE="font-size: 14px; padding: 10px 10px 10px 15px;">
    	<?php
    		the_author();
    	?>
    	</div>
    	<span class="mythumbnail">
    		<?php
    			//bento_post_thumbnail();
    		?>
    		<div class="post-thumbnail">
    			<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
    		</div>
    	</span>
    	<div STYLE="padding: 0px 10px 0px 15px; margin: 0 !important;">
    		<?php
    			//bento_post_title();
    		?>
    		<header class="entry-header">
    			<h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    		</header>
    	</div>
    	<div STYLE="padding: 0px 10px 0px 15px;">
    	<?php
    	the_excerpt();
    	?>
    	</div>
    	<span class="mycategory">
    	<?php
    	the_category($sep = ' | ');
    	?>
    	</span>
    	<span class="mytag">
    	<?php
    	the_tags($sep = ' ');
    	?>
    	</span>
    	<div STYLE="margin-top: 10px; background-color: #dee3ea !important; height: 12px;"><br></div>
    </div>
    
    Thread Starter avefrance

    (@avefrance)

    Yes it works. Another problem with the excerpt.

    See the excerpt in the second preview. So it should look like: https://avefrance.com/allposts/

    And this is how it looks if the preview is displayed by the addon: https://avefrance.com/intervju/

    And the word “continue” appears with an arrow.

    Plugin Author Darren Cooney

    (@dcooney)

    I’d recommend making sure you set an actual excerpt for your posts.
    This particular excerpt is pulling an H3.

    
    <h3 style="text-align: justify;"><span style="color: #808080;">Было желание сделать заголовок провокационным, но все-таки правдивое уточнение в скобках решили оставить. Жизнь круче любого романа, а хороший роман в пиар-интригах не нуждается.</span></h3>
    
Viewing 15 replies - 1 through 15 (of 33 total)
  • The topic ‘Addon does not work correctly’ is closed to new replies.