Title: eldamar's Replies | WordPress.org

---

# eldamar

  [  ](https://wordpress.org/support/users/eldamar/)

 *   [Profile](https://wordpress.org/support/users/eldamar/)
 *   [Topics Started](https://wordpress.org/support/users/eldamar/topics/)
 *   [Replies Created](https://wordpress.org/support/users/eldamar/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/eldamar/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/eldamar/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/eldamar/engagements/)
 *   [Favorites](https://wordpress.org/support/users/eldamar/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Zenphoto plugin problem](https://wordpress.org/support/topic/zenphoto-plugin-problem-1/)
 *  Thread Starter [eldamar](https://wordpress.org/support/users/eldamar/)
 * (@eldamar)
 * [19 years ago](https://wordpress.org/support/topic/zenphoto-plugin-problem-1/#post-593273)
 * Annyone?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Zenphoto plugin problem](https://wordpress.org/support/topic/zenphoto-plugin-problem-1/)
 *  Thread Starter [eldamar](https://wordpress.org/support/users/eldamar/)
 * (@eldamar)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/zenphoto-plugin-problem-1/#post-593260)
 * would really like som reply on this, fail to contact the author of this plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Customizable Post Listing Working with 2.1?](https://wordpress.org/support/topic/customizable-post-listing-working-with-21/)
 *  [eldamar](https://wordpress.org/support/users/eldamar/)
 * (@eldamar)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/customizable-post-listing-working-with-21/#post-507935)
 * Hi i made excerpt work with a little work around i guess… dont have much php 
   skills but it works for me annyway 🙂
 * I use version 1.5 of Customizable Post Listing, so the lines are a bit different
   than 1.1… and i dont know/remember were i found 1.5, with a little googling you
   might find it.
 * Here is how i did annyway…
 * Starting at line 292:
    $new = apply_filters(’the_excerpt’, get_the_excerpt());
   break; case ‘%post_excerpt_short%’: $new = ltrim(strip_tags(apply_filters(’the_excerpt’,
   get_the_excerpt())));
 * Change to:
    $new = apply_filters(’the_excerpt’, (empty($post->post_excerpt)) ?
   $post->post_content : $post->post_excerpt); break; case ‘%post_excerpt_short%’:
   $new = ltrim(strip_tags(apply_filters(’the_excerpt’, (empty($post->post_excerpt))?
   $post->post_content : $post->post_excerpt)));

Viewing 3 replies - 1 through 3 (of 3 total)