Forum Replies Created
-
ok, I don’t have access to the astra pro plugin, so hard for me to replicate.
If you are happy that you are fixed, I’ll leave it there.
In reply to: Default Custom Fields in New TopicI’m in testing phase, but will need one more day.
It will go as a solution in the next update of my style pack plugin, which I’ll release as soon as I’ve done.
ok, thanks, let me have a think
if it is use ftp to take out the code snippets plugin
so was that on plugin activation?
as a quick test, can you try
install https://en-gb.wordpress.org/plugins/code-snippets/
and add this code
function rew_astra_bbpress_fix ($value) { if (bbp_is_single_user()) return false ; if (bbp_is_search()) return false ; if (bbp_is_topic_tag()) return false ; if (bbp_is_single_view()) return false ; return $value ; } add_filter ('astra_single_layout_one_banner_visibility', 'rew_astra_bbpress_fix', 50) ;and
are you using a child theme?
do you have/know how to use FTP?ok, so I have just taken a look.
The Astra issue I was thinking about was slightly different, and was fixed a while ago by Astra.
Is your site public, and can the above page been seen, as Then I can understand the problem better
I suspect that I have not coded for Stra pro as well as the free astra – I’ll take a look later today
In reply to: Moderators for Specific Forumsgreat – glad you are fixed
In reply to: Default Custom Fields in New Topicgive me a day or 2 and I should have a solution for you
In reply to: How do I remove columns or make this responsive?Now available as an option in
once activated go to
dashboard>settings>bbp style pack>column display
In reply to: bbp Style Pack Version 6.0.2hey thanks – really appreciate the feedback 🙂
In reply to: Missing Forum Tabwhat bbppress role do you have?
In reply to: What anti spammer system do you use?I remove 10-20 from this site weekly.
bbpress just uses wordpress registration, so this article (picked at random from a quick google of ‘stop wordpress spam registration’ might be useful
https://www.malcare.com/blog/stop-wordpress-registration-spam/
askismet is also very good.
In reply to: Default Custom Fields in New TopicIn reply to: Change Color Text From Black To White🙂 glad you are fixed
In reply to: Change Color Text From Black To WhiteTry adding this to the custom css tab of the style pack plugin
ul.forum-titles { color : #ffffff ; }In reply to: Change Avatar Image On Reply / New Topicdo you mean the ‘participant’ @bb and time or the actual avatar?
In reply to: Adding signature with post from form contentglad you are fixed !
In reply to: List of Filters and Actions🙂
In reply to: Adding signature with post from form contentalternately just put an <hr> in 🙂
In reply to: Adding signature with post from form contentcontent has a filter on it that prevents users using HTML tags to prevent code injections (apart form admins), so your <span> tags are probably being stripped by that.
look around line 140 of \includes\topics\functions.php for removal for admins.
you can use the filter in
bbp_kses_allowed_tags()in \includes\common\formatting.php starting line 24to amend this.