Comments on: The Excerpt Reloaded: Another Reason Why Tags Aren’t Getting Closed http://robsnotebook.com/the-excerpt-reloaded2 Fri, 12 Mar 2010 04:23:13 +0000 http://wordpress.org/?v=2.2.3 By: nichive http://robsnotebook.com/the-excerpt-reloaded2#comment-77417 nichive Thu, 04 Feb 2010 13:24:50 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-77417 I'm facing a difficulties here, the excerpt shows the WP's caption tag for image as such: [caption id="attachment_311" align="alignleft" width="258" caption="Some Image"] How can I solve so that this kind of tag, doesn't come along with the excerpt? I’m facing a difficulties here, the excerpt shows the WP’s caption tag for image as such:

[caption id=”attachment_311″ align=”alignleft” width=”258″ caption=”Some Image”]

How can I solve so that this kind of tag, doesn’t come along with the excerpt?

]]>
By: Tariq http://robsnotebook.com/the-excerpt-reloaded2#comment-73840 Tariq Wed, 11 Nov 2009 15:31:33 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-73840 Hi there, thanks for the updates, if you take a look at my news index page im having a problem where the Read More... is apearing on the next line, how can i get that text to appear after the last line. For example Text here (Read More...) thanks Hi there,

thanks for the updates, if you take a look at my news index page im having a problem where the Read More… is apearing on the next line, how can i get that text to appear after the last line. For example

Text here (Read More…)

thanks

]]>
By: Amie http://robsnotebook.com/the-excerpt-reloaded2#comment-73691 Amie Thu, 05 Nov 2009 20:24:21 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-73691 I updated my excerpt reloaded file with your new file....in an attempt to correct the problem of all formatting tags being stripped from the home page excerpts. I have tried every fix I can find and I still have no formatting on the home page excerpts. If you have a moment, could you please check and see if you might know what the problem is? Thank You I updated my excerpt reloaded file with your new file….in an attempt to correct the problem of all formatting tags being stripped from the home page excerpts. I have tried every fix I can find and I still have no formatting on the home page excerpts. If you have a moment, could you please check and see if you might know what the problem is?

Thank You

]]>
By: lutfi http://robsnotebook.com/the-excerpt-reloaded2#comment-62166 lutfi Thu, 30 Apr 2009 12:54:04 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-62166 Hello rob, great plugin. I get one question, How to display the images only on the excerpt? Thank you. Hello rob, great plugin.
I get one question, How to display the images only on the excerpt?
Thank you.

]]>
By: Josh http://robsnotebook.com/the-excerpt-reloaded2#comment-45515 Josh Mon, 24 Nov 2008 07:35:12 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-45515 Thanks! :D Thanks! :D

]]>
By: Rob http://robsnotebook.com/the-excerpt-reloaded2#comment-45381 Rob Sat, 22 Nov 2008 13:27:06 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-45381 Josh: Your question is more detailed and involves a little investigation. When I have some time, I can look into it. If you leave me another comment and fill in your email address (it won't be posted online, only I will see it), I can email you when I have the solution. It may be a while. Josh: Your question is more detailed and involves a little investigation. When I have some time, I can look into it. If you leave me another comment and fill in your email address (it won’t be posted online, only I will see it), I can email you when I have the solution. It may be a while.

]]>
By: Josh http://robsnotebook.com/the-excerpt-reloaded2#comment-45372 Josh Sat, 22 Nov 2008 08:30:35 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-45372 Rob, can you provide a solution for my question above? Rob, can you provide a solution for my question above?

]]>
By: Rob http://robsnotebook.com/the-excerpt-reloaded2#comment-45311 Rob Fri, 21 Nov 2008 19:24:36 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-45311 To strip all tags, just provide an empty string for the "allow" parameter as "". To strip all tags, just provide an empty string for the “allow” parameter as “”.

]]>
By: ~Jerry | Free Classifieds http://robsnotebook.com/the-excerpt-reloaded2#comment-44935 ~Jerry | Free Classifieds Tue, 18 Nov 2008 13:56:07 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-44935 Good one.. :) Could you advice how to automatically remove (strip) all html tags from excerpt using your plugin. Any real help appreciated. Cheers Good one.. :) Could you advice how to automatically remove (strip) all html tags from excerpt using your plugin. Any real help appreciated. Cheers

]]>
By: Josh http://robsnotebook.com/the-excerpt-reloaded2#comment-44738 Josh Mon, 17 Nov 2008 02:44:59 +0000 http://robsnotebook.com/the-excerpt-reloaded2#comment-44738 Thanks for the fix Rob. Appreciated. I noticed the plugin doesn't actually link to more tag in the past (i.e. the user clicks to read more but they get taken to the top of the post instead of the anchor tag). I noticed this is determined by the last part of the code: <code> if ($use_more_link && $more_link_text) { if($force_more) { $output .= ' <a>ID) . '#more-' . $post->ID .'" title="' . $more_link_title . '">' . $more_link_text . '</a>' . "\n"; } else { $output .= ' <a>ID) . '" title="' . $more_link_title . '">' . $more_link_text . '</a>' . "\n"; } } </code> It seems the $use_more_link && $more_link_text condition is never filled because it always reverts to the else argument. I have set a more tag in the post and define the more link text with the the_excerpt_reloaded argument in the template. What could be the reason for this Rob? Thanks for the fix Rob. Appreciated.

I noticed the plugin doesn’t actually link to more tag in the past (i.e. the user clicks to read more but they get taken to the top of the post instead of the anchor tag). I noticed this is determined by the last part of the code:

if ($use_more_link && $more_link_text) {
if($force_more) {
$output .= ' ID) . ‘#more-’ . $post->ID .’” title=”‘ . $more_link_title . ‘”>’ . $more_link_text . ‘‘ . “\n”;
} else {
$output .= ‘ ID) . ‘” title=”‘ . $more_link_title . ‘”>’ . $more_link_text . ‘‘ . “\n”;
}
}

It seems the $use_more_link && $more_link_text condition is never filled because it always reverts to the else argument. I have set a more tag in the post and define the more link text with the the_excerpt_reloaded argument in the template. What could be the reason for this Rob?

]]>