Hi, we’re wondering if developer is there and maintaining the plugin as hasn′t being updated for last 2 years.
Could you please update us with some information?
Thanks!
]]>Hi there!
I’m a granny but I’m working to build a website.
I’m using your plugin but but I really need to be able to automatically insert in the field where I’m going to paste the summary, an extra line with […]
Therefore being able to have in the space of the excerpt still white an empty line where to paste the summary and to newline, a line with […].
I have to put in summaries of twenty-four thousand poems and the time I’m losing to put the […] every time is incredible.
How could a prescribed line or button be created in the editor?
Thank you so much for listening to me ??
Lio
]]>Hey,
The plugin seems to work well with Gutenberg but just not out of the box.
Could you $plugin_options['metabox']['use']
to true
when Gutenberg is activated otherwise it looks strange.
Thanks!
]]>The text in the lower-left corner of the header image is the Excerpt text with an hyperlink. When I remove the hyperlink, the text disappears.
]]>As much as I appreciate the effort, but… You have obviously used some automatic “translation” tool. These are not applicable for Finnish. The pig-Latin you have there currently makes the plugin absolutely useless in Finnish.
]]>Hi
I have just installed Rich Text Excerpts (thank you) and it looks very promising.
However, with my first experiment creating an excerpt using RTE, the “Read more…” link disappeared.
Is this to be expected, meaning I will have to re-create this link manually for every post? Or is it an error of some kind?
This is the site I want to use it on: https://shrinkwrap.blog/
(Uses Generate Press theme.)
Thank you ??
]]>Hello,
I just install the Rich Text editor to enable me to include Exerpts on pages and posts so the code doesn’t display in search results.
In settings there is only a Posts and Products option but on the Rich Text description it says it works in pages. Do I need a different version of the plugin?
]]>Please disregard at this point.
]]>Ever since WordPress 4.6 was installed, we’re having the darndest time getting the metabox in which we enter our desired excerpt to allow entry. We can see the box – regardless of whether we check the setting to use a metabox; whether we check or uncheck the setting to specify an editor, etc. But the only way to be able to enter any text (or anything for that matter) is to set the post (and the excerpt) to display in text-only mode. Any idea what the bug could be or how to fix it?
Thanks!
]]>Hi there, we are really happy with the plugin, we use it since long, but hasn′t being updated since 259 day ago and wanted to know if it′s still maintained and if there is going to be an update for being compatible with new wordpress version. Thanks in advance!
]]>Is there a way to add excerpts to product pages?
I tried this:
add_post_type_support(‘products’, ‘excerpt’);
and
add_post_type_support(‘product’, ‘excerpt’);
But it didn’t work
]]>Would be nice to have a word/character counter as well ??
]]>First off, I absolutely love the plugin! It’s been a lifesaver for me on quite a few projects now.
So I’ve seen in the FAQ that I should be using the_excerpt(); inside of a loop to display properly, however I’ve created a shortcode to display a list of a post type and using get_the_excerpt(); isn’t displaying the formatting. Just blank text.
Is there a workaround for this? I’m totally lost. ??
I should mention that I’ve used the_excerpt(); on the single post template to test it and the formatting worked, but I need to find out how to get it working in the shortcode I mentioned, here’s my current code:
function package_list( $atts, $content = null ) {
$html = '<ul class="package-list">';
// Attributes
extract( shortcode_atts(
array(
'category' => 'wedding',
), $atts )
);
// Code
// WP_Query arguments
$args = array (
'post_type' => 'package',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'package-category',
'field' => 'slug',
'terms' => $category,
),
),
//'cat' => 80,
'pagination' => false,
'order' => 'DESC',
'orderby' => 'menu_order',
);
$count = 0;
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$count++;
$html.= '<li class="package '.$category.'-'.$count.'">';
$html.= '<div class="row">';
$html.= '<div class="col-sm-3">';
if ( has_post_thumbnail() ) {
$html.= '<a href="'.get_permalink().'" title="'.get_the_title().'">';
$html.= get_the_post_thumbnail( $_post->ID, 'package-thumb' );
$html.= '</a>';
}
$html.= '</div>';
$html.= '<div class="col-sm-6">';
$html.= '<h4><a href="'.get_the_permalink().'">'.get_the_title().'</a></h4>';
$html.= '<div class="content">';
// ISSUE IS HERE! :X
$html.= get_the_excerpt();
$html.= '<p><a href="'.get_the_permalink().'" class="">Plan my '.get_the_title().' Today!</a></p>';
$html.= '</div>';
$html.= '<div class="badges"><ul class="badge-list list-inline clearfix">';
$terms = apply_filters( 'taxonomy-images-get-terms', '', array( 'taxonomy' => 'package-badge' ) );
foreach( (array) $terms as $term) {
$html.= '<li class="package-badge">' . wp_get_attachment_image( $term->image_id, 'badge-img' ) . '<div class="package-name">'.$term->name.'</div></li>';
}
$html.= '</ul></div>';
$html.= '</div>';
$html.= '<div class="col-sm-3">';
$html.= '<div class="package-info">';
if( get_field('package_price') ):
$html.= '<div class="price">';
$html.= '$'.get_field('package_price').' <span class="currency">USD</span>';
$html.= '</div><div class="per">(Per Person)</div>';
endif;
if( get_field('package_duration') ):
$html.= '<div class="duration">Duration: '.get_field('package_duration').'</div>';
endif;
$html.= '<a href="'.get_the_permalink().'" class="btn btn-success">More Info</a>';
$html.= '</div>';
$html.= '</div>';
$html.= '</div>';
$html.= '</li>';
}
} else {
//return 'It isnt finding the posts. :(';
}
$html.= '</ul>';
// Restore original Post Data
wp_reset_postdata();
//wp_reset_query();
return $html;
}
add_shortcode( 'package-list', 'package_list' );
]]>
Hello,
How can i add paragraph select box to the toolbar?
Example: h1, h2, h3,etc
Thanks,
]]>Hello,
I am switching to a new theme and I just deleted the Rich Text Excerpt plugin and all files. My WordPress setting is set to show summary. However, I can still see the excerpt by the plugin. (Which I has set before). Why is this happening? I want to see the default WP excerpt for now since I’ve removed the plugin.
Website: socialmediawithpb.com
Thanks,
Priyanka
Can you change one line of rich-text-excerpts.php responsible for translate the Excerpt Metabox Title?
The change would be this line (158):
,__('Excerpt', 'rich-text-excerpts')
for this one:
,__('Excerpt', 'default')
I think this change would be positive because WordPress by default already translates such strings as ‘Excerpt’
]]>Hey,
the plugin works great on the frontpage.
However on the blog page https://www.website.com/category/blog/ it shows the full article under each post instead of the excerpt.
any idea how to solve this?
thanks
]]>I get an empty paragraph before and after the excerpt.. when using them in a widget. any ideas on how to remover them?
I tried with and without the “remove <p> etc.”settings
Hi,
I installed the plugin and the editor box in dashboard is displayed. I added an excerpt in this box, but the excerpt not appeared on my website.
What is the problem whit this?
Thx,
Cavey
I can’t find where to add the line of code.
]]>This is the code:
<span style='color:#0000ff; font-size:13px; font-weight:bold;'>ADOPTED</span>
The excerpt is located under Taylor, the first slide:
https://www.hopalong.org/test/?page_id=40
Thank you!
]]>We updated all of our plugins last Wednesday. The fields were there until late Thursday evening. The excerpt content from old posts is still available, but we no longer can see the excerpt textarea in our admin when we try to create new posts. Thanks so much for any help!
We are running the latest WP version.
]]>The amount of wasted space around the Excerpt box was annoying me, so I fixed it with a few lines of CSS.
#poststuff #richtext_excerpt_editor_metabox div.inside {
padding: 0;
margin-top: -40px;
}
#poststuff #richtext_excerpt_editor_metabox .wp-editor-tabs {
margin-right: 10px;
}
#wp-excerpt-editor-container {
border-width: 1px 0 0 0;
}
]]>
Hi
I am using this plugin with the Events Manager plugin and it is working perfectly for events, but it is not working for recurring events.
Can you give me any help on how I can do this?
Thanks for your help!
How to insert excerpt contend to wordpress post detail?
]]>Hi
I have the post author, date and category disabled in my theme settings but using this plugin they show up. What settings can i change to disable this?
In Chrome/Windows, when the plugin is active, if text is entered into the rich excerpt box when you press Update you get the warning
“The changes you made will be lost if you navigate away.”
Clicking ‘Leave this Page’ allows you to proceed and saves the changes anyway.
Any ideas on how to correct this? Works great otherwise!
]]>Please delete: didn’t see the settings page.
Thanks for this great plugin, one small problem for me though.
I had an existing custom post type on my site that I created with Types.
After installing the plugin, the rich editor appeared for regular posts but not this custom post type.
Any ideas how to enable it?
Thanks.
]]>Hallo, tnx for you plugin! I have a problem with a categopry page, I’m not able to display excerpts with the right formatting (in posts I do). How can I add the category type?
Tnx in advance
]]>HI,
Great plugin!
Would you please consider a “Number Words Excerpt” setting that would define the number of word (decided by spaces) that you want to show on the post excerpt? This should be followed by a “Read more” option.
Thanks
]]>