Title: bbonev's Replies | WordPress.org

---

# bbonev

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Jetpack posts full text on Facebook](https://wordpress.org/support/topic/jetpack-posts-full-text-on-facebook/)
 *  [bbonev](https://wordpress.org/support/users/bbonev/)
 * (@bbonev)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/jetpack-posts-full-text-on-facebook/#post-6158939)
 * Hi [@efra_zorrito](https://wordpress.org/support/users/efra_zorrito/), you can
   put it in your theme’s functions.php
    What this code does is it creates a new
   row in the wp_postmeta table with value = $title. The key (‘_wpas_mess’) is usually
   used to store the contents of the Custom message field and the code just creates
   the row upon post save/publish/delayed publish. When jetpack sends content to
   facebook for publishing, it checks if such a field exists and uses it. I haven’t
   tried what is posted to facebook if I actually enter something in the Custom 
   message field, because the site I use this code on has a lot of content that 
   is usually not published by me and nobody on the team is willing to post a custom
   message for 20+ articles posted daily.
 * Let me know if this code works for you 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Jetpack posts full text on Facebook](https://wordpress.org/support/topic/jetpack-posts-full-text-on-facebook/)
 *  [bbonev](https://wordpress.org/support/users/bbonev/)
 * (@bbonev)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/jetpack-posts-full-text-on-facebook/#post-6158911)
 * A workaround for publicize posting the whole article on facebook:
 *     ```
       function set_title_publicize () {
       global $post;
       $title =  get_the_title( $post->ID );
       update_post_meta( $post->ID, '_wpas_mess', $title );
       }
       add_action('the_post', 'set_title_publicize');
       add_action('save_post', 'set_title_publicize');
       add_action('draft_to_publish', 'set_title_publicize');
       add_action('new_to_publish', 'set_title_publicize');
       add_action('pending_to_publish', 'set_title_publicize');
       add_action('future_to_publish', 'set_title_publicize');
       ```
   
 * Put this code in functions.php and post title will show instead of whole text
   next time an article is posted on facebook.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EventPress] [Plugin: EventPress] Eventpress Calendar funtion ep_calendar not working](https://wordpress.org/support/topic/plugin-eventpress-eventpress-calendar-funtion-ep_calendar-not-working/)
 *  [bbonev](https://wordpress.org/support/users/bbonev/)
 * (@bbonev)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-eventpress-eventpress-calendar-funtion-ep_calendar-not-working/#post-1653911)
 * Thanks a lot!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EventPress] [Plugin: EventPress] Eventpress Calendar funtion ep_calendar not working](https://wordpress.org/support/topic/plugin-eventpress-eventpress-calendar-funtion-ep_calendar-not-working/)
 *  [bbonev](https://wordpress.org/support/users/bbonev/)
 * (@bbonev)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-eventpress-eventpress-calendar-funtion-ep_calendar-not-working/#post-1653909)
 * Anybody got idea in which file is this function defined? I need to edit the output,
   because the event title is sometimes too long.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [how to open post when a category is clicked](https://wordpress.org/support/topic/how-to-open-post-when-a-category-is-clicked/)
 *  [bbonev](https://wordpress.org/support/users/bbonev/)
 * (@bbonev)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/how-to-open-post-when-a-category-is-clicked/#post-847739)
 * Send me the theme and I may be able to help you. You can get my e-mail from my
   profile.

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