Forum Replies Created
-
In reply to: Need forum to look like Elementor Pro wesbite
best I can suggest is to look at item 8
In reply to: Need forum to look like Elementor Pro wesbitesorry, I’d need to buy elementor to even see how it works, let alone the additional plugin 🙂 so catch 22 !
maybe worth adding a comment to this thread to see if any of the people there can help
In reply to: Error your post cannot be created at this timeok, bbpress looks at
the WordPress block list
no. linksin that part of the code, so maybe worth asking paid memberships if they do any checking.
Otherwise without site access, I can only guess that another plugin is doing something.
In reply to: Need forum to look like Elementor Pro wesbiteso are you already using that plugin?
In reply to: Error your post cannot be created at this timehmmm… just tried it on my site and it is fine as participant
is you site public ?
In reply to: Error your post cannot be created at this timewithout askimet (or another moderation tool running) then it should only be that area that blocks.
so if you create a topic/reply with just that word in it (and nothing else), it gets held for moderation – yes ?
In reply to: Error your post cannot be created at this timeok, bbpress just uses WordPress moderation, so do you have anything set in
dashboard>settings>discussion that could be affecting?
In reply to: Error your post cannot be created at this timeare you running the askimet plugin ?
In reply to: Need forum to look like Elementor Pro wesbitelooks like you need this
In reply to: “No Topics” issue on forum pagewho is deleting the posts, is this a manual process and from where (backend/frontend)?
In reply to: How can I Dequeue Bbpress Stylesheetgreat – glad you are fixed
In reply to: How can I Dequeue Bbpress Stylesheetthis works on my test site
add_filter( 'bbp_default_styles', 'rew_dequeue_bbpress_css' ) ; function rew_dequeue_bbpress_css ($defaults ){ unset ($defaults['bbp-default']) ; return $defaults ; }
In reply to: How can I Dequeue Bbpress Stylesheetmight be better as this to ensure it fires after bbpress has loaded
add_action ('plugins_loaded' , 'rew_dequeue_bbpress_css' ) ; function rew_dequeue_bbpress_css () { wp_dequeue_script ('bbp-default') ; }
In reply to: How can I Dequeue Bbpress Stylesheetwp_dequeue_script ('bbp-default') ;
should do it
probably a buddypress Q, so can you ask there, but do come back if you get no answer – not promising I can fix though !
great – thanks for reporting back
In reply to: Cannot see forums in dashboardgreat – glad you are fixed
In reply to: Confirmation email overwritethat’s fine, just checking other possibilities.
so with just bbpress and BNFW you have the issue – yes ?
and this is user changing email address by going to ‘edit my profile’ and changing their email – yes
and then disable bbpress and the problem goes ?Sorry if questions seem repetitive or picky – but history has shown if I don’t double check, I can spend hours chasing the wrong problem 🙂
In reply to: Topic Heading and Body columns are not alignedglad you are fixed
In reply to: Confirmation email overwritehmm…bbpress doesn’t use either of those filters
what other bbpress related plugins are you using ?
In reply to: Cannot see forums in dashboardpretty sure it is because you don’t have keymaster access
are there any other admins who may have kymaster?
In reply to: Cannot see forums in dashboardbut bbpress is activated – yes ?
In reply to: Cannot see forums in dashboardwhat roles are you set to
WordPress role admin
bbpress role keymasterare needed
In reply to: Topic Heading and Body columns are not alignedadd this to your custom css
#bbpress-forums .entry { width: 100%; }
great – glad you are fixed 🙂