Forum Replies Created
-
In reply to: Add new Section of Replies Configuration of BBpress
thanks, so yes back to working out if it could be a theme or plugin issue
In reply to: Add new Section of Replies Configuration of BBpressbut if you mean ‘error’ as in
Warning: Illegal string offset βrememberβ in /home/ob57bjdn4ubo/domains/tremendosaur.com/html/wp-includes/user.php on line 39
then yes that would be useful, just take out the site name if that is what is worrying you
In reply to: Add new Section of Replies Configuration of BBpressok, that’s like sending your auto mechanic a picture of your Ford and asking him to say what is wrong π
The best I can say is it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: Add new Section of Replies Configuration of BBpressDo you have a link to a live example please
In reply to: Thread title showing after posters nameI’ve just taken a look, yes it is most probably a setting within Cirkle, or a bbpress template that has been changed by that theme.
In reply to: How can I remove tags box when replying?it cannot be removed with remove_action as the code is not part of an action.
input#bbp_topic_tags { display: none; } label[for=bbp_topic_tags] { display: none !important; }
Putting the above in your custom css area should do it
In reply to: how can edit topic from fronend ?sorry, I just help out here, there are many things on localhost that are different including htaccess and maybe many others
I have never developed on localhost, nothing against those that do, but developing on the same server using exactly the same code as live enables you to have confidence that the performance and configuration is exactly the same, just my view π
Anyway glad you are fixed !
In reply to: how can edit topic from fronend ?ok, since I cannot see the site, troubleshooting is near impossible.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: how can edit topic from fronend ?add_filter( 'bbp_verify_nonce_request_url', 'my_bbp_verify_nonce_request_url', 999, 1 ); function my_bbp_verify_nonce_request_url( $requested_url ) { return 'http://localhost:8888' . $_SERVER['REQUEST_URI']; }
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
In reply to: critical errorI have moved this to a new topic
This could be due to many reasons, including plugins and/or theme
When you get a critical error, you will receive an email sent to the address in
dashboard>settings>general>Administration Email Address
in that email will be the details of the exact error.
We need to see that error message to help further
In reply to: Thread title showing after posters namedo you have a link to a live example, and what theme are you using?
In reply to: Advertising in the forummany plugins that do advertising have code you can use, and bbpress has many hooks you can use to insert.
If you want to say what and where, I may be able to give you further help.
In reply to: Throttling email notificationsπ
In reply to: New membership is not authorized to view the forumProbably a question to ask memberpress
What have you set in
dashboard>settings>forums>roles ?
In reply to: Only show Forums/Topics user has access tocontact me via
In reply to: Only show Forums/Topics user has access toSorry Learndash is a paid plugin, so I cannot develop my free private grouops plugin unless I buy it, which I don’t plan to !!
In reply to: BBP-Style-Pack change Forum Display for Mobile viewsit works on both templates for me.
so when I go to your last link (my site url) I see the forums in list view (NOT vertical) on both a laptop and a mobile.
Do you see differently?
In reply to: BBP-Style-Pack change Forum Display for Mobile viewsnot sure what you are after, it does exactly that on my test site.
Link to an example please
π
ok, I cannot say why it has worked before – every site is a unique collection of theme, plugins and settings.
but yes if you close a forum, it closes it to new topics and replies
forums are set to closed ?
if so, then that is what I would expect
In reply to: How to display stats and feed info?π
In reply to: How to display stats and feed info?In reply to: Login/register forms full widthhey no problem, glad to have helped π
In reply to: Login/register forms full widthrelated to your ultimate member plugin, but put this code in your themes additional css
@media only screen and (max-width: 600px) { .um.um-login, .um.um-register { width : 70% !important; } }
you can change the 70% to alter the width to what you want