Change subscription text
-
Hi, I’m using the code below to change text of topic subscription link (referring to this topic)
add_filter ('bbp_before_get_topic_subscribe_link_parse_args' , 'change_topic_subscribe') ; function change_topic_subscribe ($args) { $args['subscribe'] = 'Subscribe to this topic' ; $args['unsubscribe'] = 'Unsubscribe' ; return $args ; }
But it does not work in forum subscription text:
add_filter ('bbp_before_get_forum_subscribe_link_parse_args' , 'change_forum_subscribe') ; function change_forum_subscribe ($args) { $args['subscribe'] = 'Subscribe to this forum' ; $args['unsubscribe'] = 'Unsubscribe' ; return $args ; }
Anyone can guide me on this?
Regards.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.