BuddyPress Super Sticky not Visible

Hi Support Team,

For some reason, the “Super Sticky” text is not there but the link still works. All there is is an empty box. This only applies when posting a topic via BuddyPress Forum. Here is a link for an example: https://www.tips4gamers.com/groups/madden/forum/topic/stack-and-trade/.

I have disabled several plugins that I installed specifically for bbPress and BuddyPress and the issue was still there.

Thanks and regards,

Josh

Hi Josh,

Thank you for writing in, but sorry I am not entirely certain what element you’re referring to as “Super Sticky” text. This is how that page looks on my end, looks fine to me, please clarify.


In the meantime, I see your site is under CloudFlare, please purge your CloudFlare’s cache.

Purging cached resources from Cloudflare

Thanks,

Hi Friech,

I have attached a screenshot of the issue. I apologize, I did not explain the situation very well. It is only on the BuddyPress forum this issue occurs. http://prntscr.com/p4v8uq

Thanks and regards,

Josh

Hello Josh,

Sticky and Super Sticky is from bbPress and not from BuddyPress. Did you translated the plugin or have some a text in the plugin setting? Please add this custom PHP code in your child theme’s functions.php file:

add_filter('gettext', 'translate_sticky_text' );
function translate_sticky_text($translated) { 
  $translated = str_ireplace('(to front)', 'Super Sticky', $translated);
  return $translated; 
}

We would love to know if this has worked for you. Thank you.

1 Like

Hi Rue,

That worked perfectly! Thank you very much for your help.

Thanks and regards,

Josh

You’re welcome!
It’s really good to know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.