Title: Subscribe Button
Last modified: October 10, 2020

---

# Subscribe Button

 *  Resolved [michaeljohnparsons](https://wordpress.org/support/users/michaeljohnparsons/)
 * (@michaeljohnparsons)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/subscribe-button-17/)
 * Using the nifty Buttons tab on the plugin, I can create a Subscribe button that
   appears nicely on the Topic Index page … however, I’d like to have a similar 
   button instead of the Subscribe link on the Topic Posts/Reply page too.

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

 *  Plugin Author [Robin W](https://wordpress.org/support/users/robin-w/)
 * (@robin-w)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/subscribe-button-17/#post-13517380)
 * you mean on this page? so turn the subscribe link to a button?
 * forums/topic/example-topic/
 *  Thread Starter [michaeljohnparsons](https://wordpress.org/support/users/michaeljohnparsons/)
 * (@michaeljohnparsons)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/subscribe-button-17/#post-13517477)
 * Yes – on the page that shows the individual topic and all its replies … there
   is a “Subscribe” link at the top that I’d like to be a button.
 * (In same way as your Buttons tab changes the “Subscribe” link to a Button on 
   the forum page that lists all the topics).
 *  Plugin Author [Robin W](https://wordpress.org/support/users/robin-w/)
 * (@robin-w)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/subscribe-button-17/#post-13517565)
 * ok, presuming that you are using the default button, then put this in your child
   theme’s function file –
 *  ie wp-content/themes/%your-theme-name%/functions.php
 *  where %your-theme-name% is the name of your theme
 *  or use
    [https://en-gb.wordpress.org/plugins/code-snippets/](https://en-gb.wordpress.org/plugins/code-snippets/)
 *     ```
       add_filter ('bbp_get_user_subscribe_link' , 'rew_change_class' ) ;
   
       function rew_change_class ($html) {
       	$html = str_replace ('class="subscription-toggle"' , 'class="bsp_button1"' , $html) ;
       return $html ;
       }
       ```
   
 * you may also need to put this in the custom css tab (but you may not need to 
   do this)
 *     ```
       a.bsp_button1 {
       display : inline-block ;
       }	
       ```
   
 *  Thread Starter [michaeljohnparsons](https://wordpress.org/support/users/michaeljohnparsons/)
 * (@michaeljohnparsons)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/subscribe-button-17/#post-13517596)
 * Great – thank you!

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

The topic ‘Subscribe Button’ is closed to new replies.

 * ![](https://ps.w.org/bbp-style-pack/assets/icon-256x256.jpg?rev=2706563)
 * [bbp style pack](https://wordpress.org/plugins/bbp-style-pack/)
 * [Support Threads](https://wordpress.org/support/plugin/bbp-style-pack/)
 * [Active Topics](https://wordpress.org/support/plugin/bbp-style-pack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bbp-style-pack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bbp-style-pack/reviews/)

## Tags

 * [subscribe button](https://wordpress.org/support/topic-tag/subscribe-button/)

 * 4 replies
 * 2 participants
 * Last reply from: [michaeljohnparsons](https://wordpress.org/support/users/michaeljohnparsons/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/subscribe-button-17/#post-13517596)
 * Status: resolved