Forum Replies Created
-
In reply to: Login URL
if you update to bbp-style-pack 4.5.9 and 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
add_action ('bsp_form_topic_login' , 'rew_redirect' ) ; add_action ('bsp_form_reply_login' , 'rew_redirect' ) ; function rew_redirect () { if ( ! is_user_logged_in() ) { echo '<ul><li><a href="http://www.mysite.com/login">Click here to log in</a></li></ul>' ; } }
amending the url to what you want, and amend the text as well if you want to
In reply to: Custom Field doesn’t work with bbpress 2.6 and aboveok, then yes that is working on a new test site.
I cannot say why it is not working on yours, sorry 🙁
In reply to: Delete My Account option🙂
In reply to: Custom Field doesn’t work with bbpress 2.6 and abovejust did a completely new site – no plugins except bbpress and your code, twentyseventeen theme, works fine.
when you say ‘save topic as draft’ – what exactly do you mean?
In reply to: Delete My Account optionGDPR does not require the user to be able to do this, merely that the site admins can do it if demanded.
I’m sure that someone could code this, but nothing I know of
In reply to: Delete My Account optionIn reply to: Login URLI said ‘activate item 15’
so go to
dashboard>settings>bbp style pack>Topic/Reply Form
and you will see a list of 15 items, you want to go to item number 15
replies are sorted by date/time order, so if in
dashboard>replies>all replies>edit
you amend the publish date of a reply, you can adjust the order in which they appear.
In reply to: Admin posting on behalf of userjust post the entry in dashboard>topics>
then you can set the username
In reply to: Adding style to forumthe bbpress displays are built using templates.
I’d start with looking at this
which will let you do many things.
to put your stats at the bottom, you’d need to look at creating a page for your forums and using
[bbp-forum-index]
then you can use gutenburg blocks or whatever editor you have to add the stats widget at the bottom
In reply to: Bbpress Forum pages Headerthis may be what you need to change the default template
In reply to: Topics and Replies not showing after importok, we may need to go back to a previous version, but first let’s try this.
can you as per previous deactivate and delete the plugin and download a new version
when you access the page, you will see a new line about post meta
you don’t need to run this version
I just need to know what the lines on replies now say
In reply to: Bbpress Forum pages Headerok, I don’t think it is a css problem.
cab you tell me which method you are using in no. 8 in here
In reply to: Bbpress Forum pages Headerps, nice site by the way 🙂
In reply to: Bbpress Forum pages Headerthanks for that and for the really helpful video.
I can see that on forum pages, your site is not displaying the elementor menu, which is what is missing – so it is not that it is transparent, it is because it is not there !!
I suspect it is a conflict between your theme/ementor and bbpress templates.
how technical are you ?
In reply to: Login URLgiven that you don’t understand code, then the best I can offer is to remove the bbpress login from the topic and reply forms.
This can be done by installing
once activated go to
dashboard>settings>bbp style pack>Topic/Reply Form and activate item 15
In reply to: Custom Field doesn’t work with bbpress 2.6 and abovesorry, that all works fine for me
In reply to: Login URLsorry, bbpress uses the standard wordpress login api, so it is code if you want to do something different
In reply to: Topics Are Not Showed Up on Forumthe hierarchy is
category
forum
topic
replyIn reply to: Custom Field doesn’t work with bbpress 2.6 and abovehmm – I just added that code to my test site, and it works fine with 2.6.5
In reply to: Topics and Replies not showing after importok, so you said earlier
All of the replies say “mismatch” under the Forum column…even the ones that have a Forum listed in the same column.
where were you seeing this ?
In reply to: Topics Are Not Showed Up on Forumcategories don’t have topics, forums do. forums belong to categories
In reply to: Bbpress Forum pages Headerok, the first just comes up with ‘development mode’
the second and third links give pages, but what on those pages do you want to change – please cite specific eg change ‘I want to be happy’ to have a green background
In reply to: Custom Field doesn’t work with bbpress 2.6 and aboveok I suspect you are talking about wordpress post custom fields.
if so, bbpress has never natively supported these, so I suspect you have code or an additional plugin such as acf or a bbpress plugin that is doing this.
In reply to: Login URLthe simplest way would be to just take out the bbpress login
find
wp-content/plugins/bbpress/templates/default/bbpress/form-user-login.phptransfer this to your pc and edit to just delete all the content (or you could put a link to your page)
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/form-user-login.phpbbPress will now use this template instead of the original