Forum Replies Created
-
In reply to: Styling of “Latest Forum activity” widget
I have improved it alot:
.widget_display_topics ul { background: rgba(0, 0, 0, 0.04); padding: 10px 20px; list-style-type: none; margin: 0; margin-bottom: 1.66666667em; } a.bsp-la-reply-topic-title { color: #222222; font-weight: 600; } .bsp-la-text,.bsp-la-topic-author, .bsp-activity-freshness, .bsp-activity-forum { font-size:12px; text-transform: uppercase; } .widget_display_topics ul:last-child { margin-bottom: 0; } .widget_display_topics img.avatar.photo { border: #000 solid 1px; margin-top: -3px; margin-right: 4px; display:inline-block; vertical-align:middle; }
The only thing I would still like to do is get the final “TOPIC BY …” information to all flow as a sentence with a / delimiter. Can that be done?
In reply to: Topic / Reply Moderation BehaviorThis issue has already been raised and flagged in the tracker. They are aware of it.
In reply to: Where is the link to the reply in the bbPress code?If you look here:
https://wordpress.org/support/topic/problem-with-bbpress-topics-with-multiple-pages/#post-12772840
It was detected that the URLs in my case were failing bbpnsn plugin. They fixed it.
But it appears that these links are out of my hands.
In reply to: Where is the link to the reply in the bbPress code?Mine is set to day and name .
In reply to: FreshnessAnd does it matter having the little plugin plus your bug fix setting on at same time?
In reply to: FreshnessI think it was my fault. I thought I had created a test message but I had left the body of the topic empty and not ticked the recaptcha.
It would not jump to the error messages. It just went to top of screen. So I did not notice the post was not added.
It really should jump to the error message which I have nice and clear with a yellow border.
In reply to: FreshnessRob, I have now switched on again your bug fix option. So I have our little plugin active and your bbp plugin option active.
See what happens.I wonder if you can add some logging to see if it is working?
In reply to: UsernamesSorted. š
In reply to: UsernamesOk, I see a Display name option in BBPress. Maybe that should be on my registration form.
But, it is that user statistics plugin again. It displays the usernames.
In reply to: UsernamesOk, it seems that in BBPress my register page does not allow for you to specify the nickname:
My BBPress Edit profile page allows you to edit your nickname though.
I see No where in general to specify what to display, apart from editing my profile in WordPress backend.
That said, I realise my username is displayed here as it is the @ text.
I am reluctant to show usernames you see. According to my security logs I have so many attempts to hack into my site my username.
In reply to: Testing user privilegesThanks. Only mistake there is that you forgot to insert your corrected
edit
terms into theif
statement. šThanks alot.
In reply to: Redirection after registrationYou create those pages. Each page has a short code it in. You then tell Theme My Login the links to each of those pages.
In reply to: Redirection after registrationIn reply to: Redirection after registrationJust use “Theme my Login”. It does everything.
In reply to: Moving a reply to a new topicOK. The merging test I did worked fine. Thanks.
Question:
Why is my “Merge topic tags” check box in the middle?! Why not on the left?
In reply to: Moving a reply to a new topicOh, OK. So to test this out I simply have to try and merge two topics. Is that the idea? Or merge two replies? i did not follow this whole discussion.
In reply to: Moving a reply to a new topicJust upgraded to your latest version 4.5.1
Change log says:
additional bug fix for merge topics on variable mismatch on bug fixes tab
But I still only see 3 possible bug fixes listed? Please advise.
In reply to: Moving a reply to a new topicCool. I suppose I don’t need to activate this because I switched off moderation anyway via a snippet.
In reply to: Notify user when a reply goes into moderationIs it possible for someone to show a short video of this in action? Thanks.
In reply to: Notify user when a reply goes into moderation@robin-w Thanks. I don’t have time to test myself right now.
I wonder why the authors are not responding again to again of these issues? After all they are the developers and it seems like one big huge leap with this version and then it appears nothing? I thought there were several authors of bbpress? It seems unfair that 99% of the user support is coming from you. What a strain on you!
Thanks though!
In reply to: CSS styling queryThanks.
I see line 218:
$content = "\n<pre>" . $content . "</pre>\n";
I suppose that could become:
$content = "\n<pre class=\"suitable-class-name\">" . $content . "</pre>\n";
And that styling be moved into that class. But:
Line 133:
$content = preg_replace_callback( "!(<pre><code>|<code>)(.*?)(</code></pre>|</code>)!s", 'bbp_decode_callback', $content );
I have no clue about what that code is doing.
In reply to: CSS styling queryWell, the issue here is that bbPress is using a catch all for
pre
when it should be applying a class to thepre
objects that it creates. Then we wouldn’t have this issue would we? Because they would just be classes that are used by either application with their ownpre
code usage.The issue is that I don’t know how or where bbPress makes use of the
pre
tag so that the logic can be adjusted to use a class to indicate the styling rather than that globalpre
catch all.In reply to: CSS styling queryTurns out @robin-w that my additional css is not the solution. When the user clicks “Raw” on the code block it is supposed to toggle the raw code block to be visible. And since I added that css style it has forced it to never display.
so I need another way for bbpress to do what it wants with
pre
blocks that does not conflict with enlighterjs.In reply to: CSS styling queryFor the other issue, the only thing I can come up with is Additional CSS:
.enlighter-default .enlighter-raw { display:none !important; }
But is there a more robust solution that avoids the need for this?
In reply to: CSS styling querylet me deal with q1 first. ā Iād suggest you stick with the theme version, and use custom css to fix any issues you find between the newest version of bbpress and your theme version css file.
Understood.