There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
Front page contains readmore link in footer for each post on front page.
But I don't want to see such link if post is fully displayed here already.
How can I hide readmore link in case when post doesn't contain <more> link?
Thanks for help!
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
by default the theme displays the posts as excerpts. If you don't want this you have to modify the postformat.php virtual template to change the line
HTML Code:
<?php bfa_excerpt( 55, ' ...' ); ?>
to use the_content() instead - you can check the php you can use by pressing the 'Limited PHP code' tab at teh top right of the screen
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#5
Nov 14, 2012, 05:24 AM
arteny
22 posts · Nov 2012
Russia, Voronezh
juggledad, i feel there is a some misunderstanding according my question.
as for bfa_excerpt - i am using it's own realization here (which uses get_the_content() in turn).
The question is about following part in post-footer (below bfa_excerpt):
I don't want to show this link at all (it is default link "read more ->" shown for each post) in case when whole post already included in shown post text - it happens when post is enough short in itself.
So, what I need here - is to add condition to check is post content in itself contains 'more' link or not. If not, don't show post-readmore link. The problem is that I don't know how to get post content here to add it into a condition (something like $post->post_content?).
Anybody help please?
That code is in the postformat.php virtual template. Unfortunately there doesn't seem to currently be any way to have this show conditionally.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#7
Nov 14, 2012, 03:24 PM
arteny
22 posts · Nov 2012
Russia, Voronezh
Is it not possible to set some global variable inside bfa_excerpt() and then read (check) it in postformat.php after bfa_excerpt call?
Any thing is possible, give it a try and let us know how it works out
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#9
Dec 27, 2012, 01:39 PM
arteny
22 posts · Nov 2012
Russia, Voronezh
Quote:
Originally Posted by juggledad
That code is in the postformat.php virtual template. Unfortunately there doesn't seem to currently be any way to have this show conditionally.
But how user can recognize is article cut or not really (when read more if always visible)?
#10
Jan 26, 2013, 03:11 AM
arteny
22 posts · Nov 2012
Russia, Voronezh
Actually second parameter of bfa_excerpt says when there is a continuation. Just I used own realization of bfa_excerpt (don't like break formatting) and wanted to recognize it from virtual template (without success). But content() function which i am using in my realization also has a parameter "read more", I missed it before. I can live which such solution.
So, I'll solve the thread.