Title: aidecms's Replies | WordPress.org

---

# aidecms

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Subscribe to Comments] [Plugin: Subscribe to Comments] Alignment of the check box](https://wordpress.org/support/topic/plugin-subscribe-to-comments-alignment-of-the-check-box/)
 *  [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-subscribe-to-comments-alignment-of-the-check-box/#post-3010426)
 * Hi, I also have the salutaion theme. to resolve your problem edit the following
   file from your jetpack plugin page : jetpack/modules/subscriptions.php
 * find this :
 *     ```
       // Check if Mark Jaquith's Subscribe to Comments plugin is active - if so, suppress Jetpack checkbox
   
       		$str = '';
   
       		if ( FALSE === has_filter( 'comment_form', 'show_subscription_checkbox' ) && 1 == get_option( 'stc_enabled', 1 ) ) {
       			// Subscribe to comments checkbox
       			$str .= '<p class="comment-subscription-form"><input type="checkbox" name="subscribe_comments" id="subscribe_comments" value="subscribe" style="width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;"' . $comments_checked . ' /> ';
       			$str .= '<label class="subscribe-label" id="subscribe-label" for="subscribe_comments">' . __( 'Notify me of follow-up comments by email.', 'jetpack' ) . '</label>';
       			$str .= '</p>';
       		}
   
       		if ( 1 == get_option( 'stb_enabled', 1 ) ) {
       			// Subscribe to blog checkbox
       			$str .= '<p class="comment-subscription-form"><input type="checkbox" name="subscribe_blog" id="subscribe_blog" value="subscribe" style="width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;"' . $blog_checked . ' /> ';
       			$str .=	'<label class="subscribe-label" id="subscribe-blog-label" for="subscribe_blog">' . __( 'Notify me of new posts by email.', 'jetpack' ) . '</label>';
       			$str .= '</p>';
       		}
   
       		echo apply_filters( 'jetpack_comment_subscription_form', $str );
       	 }
       ```
   
 * replace by this :
 *     ```
       // Check if Mark Jaquith's Subscribe to Comments plugin is active - if so, suppress Jetpack checkbox
   
       		$str = '';
   
       		if ( FALSE === has_filter( 'comment_form', 'show_subscription_checkbox' ) && 1 == get_option( 'stc_enabled', 1 ) ) {
       			// Subscribe to comments checkbox
       			$str .= '<p class="comment-subscription-form" style="margin-top:25px;"><input type="checkbox" name="subscribe_comments" id="subscribe_comments" value="subscribe" style="float:left; width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;"' . $comments_checked . ' /> ';
       			$str .= '<label class="subscribe-label" id="subscribe-label" for="subscribe_comments">' . __( 'Notify me of follow-up comments by email.', 'jetpack' ) . '</label>';
       			$str .= '</p>';
       		}
   
       		if ( 1 == get_option( 'stb_enabled', 1 ) ) {
       			// Subscribe to blog checkbox
       			$str .= '<p class="comment-subscription-form"><input type="checkbox" name="subscribe_blog" id="subscribe_blog" value="subscribe" style="float:left; width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;"' . $blog_checked . ' /> ';
       			$str .=	'<label class="subscribe-label" id="subscribe-blog-label" for="subscribe_blog">' . __( 'Notify me of new posts by email.', 'jetpack' ) . '</label>';
       			$str .= '</p>';
       		}
   
       		echo apply_filters( 'jetpack_comment_subscription_form', $str );
       	 }
       ```
   
 * regards !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YARPP - Yet Another Related Posts Plugin] Add arguments to a custom template](https://wordpress.org/support/topic/add-arguments-to-a-custom-template/)
 *  Thread Starter [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/add-arguments-to-a-custom-template/#post-3162104)
 * I already have a custom template with only 3 posts (from settings) and thumbnails,
   but now I want to create a new template for the widget sidebar.
 * for that I want to use an offset option to display 5 related post from the fourth(
   One to Three are displays at the bottom of the article)
 * Then How to exlude pages ?
 * Any idea ?
 * Thanks a lot
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YARPP - Yet Another Related Posts Plugin] Can it be used on bbpress?](https://wordpress.org/support/topic/can-it-be-used-on-bbpress/)
 *  [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/can-it-be-used-on-bbpress/#post-3158857)
 * Hi did you find any solution ? I’m newbee, but I really want to know hax to display
   related topic
 * thank you very much
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YARPP - Yet Another Related Posts Plugin] [Plugin: Yet Another Related Posts Plugin] Making YARPP caching feature work for custom post types](https://wordpress.org/support/topic/plugin-yet-another-related-posts-plugin-making-yarpp-caching-feature-work-for-custom-post-types/)
 *  [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-yet-another-related-posts-plugin-making-yarpp-caching-feature-work-for-custom-post-types/#post-2979813)
 * Hi, I’m trying ti add a related entries function into each bbpress topic.
 * would you please let me know How to edit my function file ? or bbpress.php file
 * thank you very much
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] [Plugin: WordPress SEO by Yoast] Buddypress Integration](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-buddypress-integration/)
 *  [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-buddypress-integration/#post-3075091)
 * Hi, yes I have the Version 1.2.8.5… and I still have duplicate titles…
 * I don’t use this plugin anymore…it’s a pitty
 * let me know if you have any solution !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] [Plugin: WordPress SEO by Yoast] How to disable WordPress SEO on BuddyPress pages?](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-how-to-disable-wordpress-seo-on-buddypress-pages/)
 *  [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-how-to-disable-wordpress-seo-on-buddypress-pages/#post-3081908)
 * Hi, I’m also looking for this solution… if you have any related information, 
   let me know !
 * thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] [Plugin: WordPress SEO by Yoast] Buddypress Integration](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-buddypress-integration/)
 *  [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-buddypress-integration/#post-3075079)
 * Hi, not exactly, the plugin create duplicate meta’s with sevarals pages on buddypress.
   It causes many seo problems…
 * following pages have the same meta’s title when I active the plugin…
 * mywebsite.com/groups/
    mywebsite.com/groups/voyage-asie/ mywebsite.com/groups/
   voyage-asie/forum/ mywebsite.com/groups/voyage-asie/forum/topic/partir-en-thailande/
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] [Plugin: WordPress SEO by Yoast] Duplicate Title on Google Page Posts](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-duplicate-title-on-google-page-posts/)
 *  [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-duplicate-title-on-google-page-posts/#post-3072707)
 * Hello, What kind of modification have you done ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] [Plugin: WordPress SEO by Yoast] Buddypress Integration](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-buddypress-integration/)
 *  [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-buddypress-integration/#post-3075035)
 * Hi, I also would like to know if there is a specific trick to make the plugin
   runs with buddypress.
 * Thank you for your help !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pligin: SEOPRESS] Configuration of your Seo press plugin for buddypress](https://wordpress.org/support/topic/pligin-seopress-configuration-of-your-seo-press-plugin-for-buddypress/)
 *  Thread Starter [aidecms](https://wordpress.org/support/users/aidecms/)
 * (@aidecms)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/pligin-seopress-configuration-of-your-seo-press-plugin-for-buddypress/#post-2530972)
 * Nobody to help me ?

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