Title: Doesn&#8217;t work cbx bookmark plugin
Last modified: January 9, 2020

---

# Doesn’t work cbx bookmark plugin

 *  Resolved [cikatomo](https://wordpress.org/support/users/cikatomo/)
 * (@cikatomo)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/doesnt-work-cbx-bookmark-plugin/)
 * Hello,
    it didn’t work because of the code:
 *     ```
       public function get_the_rcno_book_review_content( $review_id ) {
   
       		$read_more = Rcno_Reviews_Option::get_option( 'rcno_excerpt_read_more' );
   
       		$review_content = '';
       		$review_content .= '<div class="rcno-book-review-content">';
   
       		// We need to check this or we'll get an infinite loop with embedded reviews.
       		if ( $this->is_review_embedded() ) {
       			$review_content .= wpautop( get_post_field( 'post_content', $review_id ) );
       		} else {
       			$review_content .= wpautop( get_the_content( $read_more ) );
       			 //$review_content .= apply_filters( 'the_content', get_the_content() ); // TODO: look into this.
       		}
   
       		$review_content .= '</div>';
   
       		return $review_content;
       	}
       ```
   
 * Have to use apply_filter instead wpautop to work.
    Is it safe to comment wpautop
   and uncomment apply_filter?

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

 *  Plugin Author [Kemory Grubb](https://wordpress.org/support/users/w33zy/)
 * (@w33zy)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/doesnt-work-cbx-bookmark-plugin/#post-12310036)
 * Hello,
 * Can you provide me with more information on what exactly is happening? Are your
   getting any specific errors messages?
 *  Thread Starter [cikatomo](https://wordpress.org/support/users/cikatomo/)
 * (@cikatomo)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/doesnt-work-cbx-bookmark-plugin/#post-12310200)
 * Hello,
    no messages. It supposed to show bookmark button on custom post types,
   but it doesn’t show. It shows the button when I use `$review_content .= apply_filters('
   the_content', get_the_content() ); // TODO: look into this.`
 * instead of
    `$review_content .= wpautop( get_the_content( $read_more ) );`
 * It works on custom post types created with custom post types plugin.
 *  Plugin Author [Kemory Grubb](https://wordpress.org/support/users/w33zy/)
 * (@w33zy)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/doesnt-work-cbx-bookmark-plugin/#post-12310229)
 * OK, I understand.
 * That section of code was causing issues before, though I can’t remember the exact
   issue, hence the TODO comment. I’ll look into it and figure out if it safe for
   normal use.
 *  Thread Starter [cikatomo](https://wordpress.org/support/users/cikatomo/)
 * (@cikatomo)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/doesnt-work-cbx-bookmark-plugin/#post-12310590)
 * Ok, thank you

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

The topic ‘Doesn’t work cbx bookmark plugin’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/recencio-book-reviews_486474.svg)
 * [Recencio Book Reviews](https://wordpress.org/plugins/recencio-book-reviews/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/recencio-book-reviews/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/recencio-book-reviews/)
 * [Active Topics](https://wordpress.org/support/plugin/recencio-book-reviews/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/recencio-book-reviews/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/recencio-book-reviews/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [cikatomo](https://wordpress.org/support/users/cikatomo/)
 * Last activity: [6 years, 5 months ago](https://wordpress.org/support/topic/doesnt-work-cbx-bookmark-plugin/#post-12310590)
 * Status: resolved