Forum Replies Created
-
In reply to: permalinks
dashboard>settings>permalinks and just click save – this resets them.
In reply to: Trying to get nested replies and pagination to workIf you put something out there as free, you should still manage its viability otherwise the end result will be wasting people’s time.
agree – the issue is with time – ie for how long? No-one can do forever, and no-one can do everything for free. So do I never release code as I am not immortal? I have no-one to take over the code. I have limited time to offer to support. I reckon in 3-5 years time I’ll not want to do the stuff I do now. I s’pose my point is that the user community needs to judge ‘free’ as not meaning ‘free for life with a right to free support for every issue’ I suspect that a lot of this comes from FB, youtube, instagram being seen as ‘free’, and the ability to share files, songs, books, images without paying the source. But maybe that’s just because I’m a grumpy old man 🙂
In reply to: Change Forum Title from Archives: Forumshey thanks – really helps when we know that people appreciate our help:-)
In reply to: Trying to get nested replies and pagination to work@xprojectsx good contribution – and I don’t think there is a perfect solution. I am Never quite sure what people expect from ‘community’ software. As an author of 6 plugins, the thought that when releasing these as free code for others to use and adapt, I am expected to respond to every query on the code for evermore, would make me never do it. I enjoy the challenge of support, but there will come a time when I tire of doing this for no money, and expectation that I fix issues I had not considered and that I had never planned only strengthens this. Bbpress was written as lite forum software, allowing others to extend it. It started over 15 years ago as a geek who like writing code (as I do). Then is response to requests it was added as a plugin to WordPress. The authors have I suspect many other priorities now in their lives, they are 15 years older. Their choices are 1. To close the plugin, and make many forums redundant. 2. To devote vast chunks of their free time to continue supporting 3. To do key code as their time permits 4. Just to hope that other people do this for free.
Against this there are paid products, but yes they cost or are used (I think quite justifiably) as a sales tool to produce income to pay the developers. Someone has to pay the bills.In reply to: Trying to get nested replies and pagination to workjust to try and help the codex seems to suggest a ? is needed
and drop down to user contributed notes
'format' => '?paged=%#%',In reply to: Topics and replies awaiting moderationadd_filter( 'bbp_bypass_check_for_moderation', '__return_true' );In reply to: Users reporting issues postingsee dashboard>settings>discussion>comment moderation
usually it is the number of links
In reply to: Topics and replies awaiting moderationsee dashboard>settings>discussion>comment moderation
usually it is the number of links
ok, without site access all I can suggest is
.bbp-forum-freshness { display : none !important ; width : 0px !important; } li.bbp-forum-reply-count, li.bbp-forum-topic-count, li.bbp-topic-reply-count, li.bbp-topic-voice-count { width: 20% !important; } li.bbp-forum-info, li.bbp-topic-title { float: left; text-align: left; width: 55% !important; }In reply to: how to increase to topic writing form size(height)great -glad you are fixed
@ajtruckle spam masquerading as a question 🙂
In reply to: Topics and replies awaiting moderationall topics/replies or some?
In reply to: how to increase to topic writing form size(height)it works in my test site, so I cannot explain why it is not working for you – there is nothing further I can do
In reply to: Shortcode For TopicsIn reply to: Trying to get nested replies and pagination to workI’m just not sure on what basis you claim to be a customer with rights to customer service 🙂
Anyways thank you for appreciating the time I give – and I do hope they address this issue at some stage.
I’ll leave it there
In reply to: How to hide the author of posts for unlogged users.great – glad you are fixed !
In reply to: Topic editor turn shortcode in HTMLok, thanks I now understand.
Sorry, that’s the way WordPress works – not a loot I can do to help.
The shortcode is rendered when you publish, and when you edit I think it does not like that you ared using html – maybe a permission issue.
I cannot really help further
In reply to: Topic editor turn shortcode in HTMLok, thanks I now understand.
Sorry, that’s the way WordPress works – not a loot I can do to help.
The shortcode is rendered when you publish, and when you edit I think it does not like that you ared using html – maybe a permission issue.
I cannot really help further
In reply to: Log In pageif you can wait until next week, I’ll come back with some code
the code should work – try form a PC/phone that has never accessed the site
I suspect the css on your browser is not clearing. Try shutting it down and opening up again.
In reply to: How to hide the author of posts for unlogged users.this should hide it, but test to make sure you don’t find any exceptions !
add_filter ('bbp_get_author_link' , 'rew_hide_author', 30 , 3 ) ; add_filter ('bbp_get_reply_author_link' , 'rew_hide_author', 30 , 3 ) ; add_filter ('bbp_get_topic_author_link' , 'rew_hide_author', 30 , 3 ) ; function rew_hide_author($author_link, $r, $args) { if (!is_user_logged_in()) $author_link='' ; return $author_link ; }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
I suspect that it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, 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: Topic editor turn shortcode in HTMLfrom your image, it is because you have not use the CODE in your post.
so you show
[model_viewer...etc]when if you do not want wordpress to translate this you should have
`[model_viewer…etc] with a second tick at the end, then when you edit it will stay as the code
no need to edit files, you can do all that with css
so
.bbp-forum-freshness { display : none !important ; width : 0px ; } li.bbp-forum-reply-count, li.bbp-forum-topic-count, li.bbp-topic-reply-count, li.bbp-topic-voice-count { width: 20%; } li.bbp-forum-info, li.bbp-topic-title { float: left; text-align: left; width: 55%; }will fill the freshness space up.
you can play with the percentages, above is 20% + 20% + 55%
just make sure they don’t go over 95% total