Hey Marlene
Glad you solved your other ticket, I have noticed some odd behaviour with this, I’ll look into today/tomorrow and get back to you, hopefully with some options 🙂
Best
-
This reply was modified 5 years, 1 month ago by
Code Amp.
Hey Marlene
I’ve checked this out and can see what’s going on.
Our loops don’t use the traditional loop for posts (we do this for speed, and caching) eg:
if ( have_posts() ) {
while ( have_posts() ) {
the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php }
}
Which might mean the way they get the the_permalink() might not actually work when used in our functions… so the link always goes to the current URL…
I’ve actually gone ahead and disabled this text for excerpts in our plugin (so this link is never shown) – it was never intended to be there (and we have a link element anyway).
The update with the removal of this should be released by the end of the week.
Best
Hi, thanks a lot for having a look at this. I now installed version 1.4.0, but the excerpt still links to the current page. But maybe this is my theme’s fault now?
An alternative to solve my problem (tag archive pages shown by the tag cloud and post lists don’t look alike) would be to apply the custom layouts template to tag archive pages. Do you know if this is a possible alternative?
Thanks a lot in advance!!!
Hey @maho1569
I think we got confused – 1.4.0 was released just before I mentioned making changes – so it wasn’t in there!
However, I’ve just release 1.4.1, and these fixes are in there.
I decided to do a bit of a u-turn, and I kept the theme functionality of adding “read more” text (and fixed the link), but I also added an option to disable it, from the excerpt element in our plugin 🙂
Let me know how you get on.
Best
– Ross
-
This reply was modified 5 years ago by
Code Amp.