Forum Replies Created
-
In reply to: seeking for ability to print a whole thread
@taliabarlev, have you tried any PDF converter for WordPress instead of looking for a specific solution for bbPress?
In reply to: Alternative to bbpress moderation toolsYeah, I have it as well. But since they are not going to keep it updated, maybe some fork or alternative is worth being considered?
In reply to: Remove rel=โnofollowโ for admin only?Hey @robin-w Tested but not working ๐
What can be failing in your idea?This doesn’t work either ๐
Will have to review the code and what’s going on with that filter nowadays
In reply to: Managing too long URLOk, the problem wasn’t the rule itself, the problem was the css property: word-wrap was not doing the job with the links
Word-break seems to have solved the issue now.
According to this:
https://developer.mozilla.org/es/docs/Web/CSS/overflow-wrapNote: In contrast to word-break, overflow-wrap will only create a break if an entire word cannot be placed on its own line without overflowing.
This was the problem somehow (not sure how though)
In reply to: Managing too long URL@webcreations907, did not work as expected ๐ URLS are not being broken with that for some reason
In reply to: Which widget is thisI have upgraded and everything seems fine so far except one very little mistake (don’t need to upgrade for this)
show-iconfa is showing \f155
and
show-iconsu is showing \f147And is the other way around
In reply to: Which widget is thisAlso, I’m not sure if this is intended but similarly to the other elements this last two don’t have their “show-icon” class with
font-family: 'dashicons'; content: '\f155';
and
font-family: 'dashicons'; content: '\f147';
But could be included with this CSS code (I’ve included in my custom anyway but just to get the same format)
.sidebar .bsp-st-info-list li.topic-favorite:before { font-family: 'dashicons'; content: '\f155'; } .sidebar .bsp-st-info-list li.topic-subscribe:before, .sidebar .bsp-sf-info-list li.forum-subscribe:before { font-family: 'dashicons'; content: '\f147'; }
About the other topic here the two snippets (I’m copying a little in the top and in the bottom:
Around 555
<?php if ( !empty( $time_since ) ) : ?> <li class="topic-freshness-time <?php echo $show_iconla ; ?> "> <?php echo $settings['last_activity']; echo $time_since ; ?></li> <?php endif; ?> <?php if ( is_user_logged_in() ) : ?> <?php $_topic_id = bbp_is_reply_edit() ? bbp_get_reply_topic_id() : $topic_id; ?> <li class="topic-subscribe"><?php bbp_topic_subscription_link( array( 'before' => '', 'topic_id' => $_topic_id ) ); ?></li> <li class="topic-favorite"><?php bbp_topic_favorite_link( array( 'topic_id' => $_topic_id ) ); ?></li> <?php endif; ?> <?php echo '</ul>' ; // end of '<ul class="bsp-st-info-list">; echo '</div>'; // end of '<div class="bsp-st-title-container">'; }
Around 725
<li class="topic-freshness-time <?php echo $show_iconla ; ?> "> <?php echo $settings['last_activity']; echo $time_since ; ?></li> <?php endif; ?> <?php if ( is_user_logged_in() ) : ?> <li class="forum-subscribe"> <?php bbp_forum_subscription_link( array( 'forum_id' => $forum_id ) ); ?></li> <?php endif; ?> <?php echo '</ul>' ; echo '</div>' ; // end of <div class="bsp-st-title-container"> }
In reply to: Which widget is thisAnother tweak (both for st and sf)
You could move from 556 to 562over the 555:
echo '</ul>' ; //end of '<ul class="bsp-st-info-list">'; ?>
To have all “li” in the same “ul”
(Same in line 725)
Remember to close some of the
?>
lingering afterwards ๐In reply to: Which widget is this484 and 652
echo '<div class="widget bsp-st-title-container">';
echo '<div class="widget bsp-sf-title-container">';
In reply to: Which widget is thisAlso, within bsp-sf-title-container (line 652)
In reply to: Which widget is thisThanks @robin-w
Just a little tweak, with the bsp-st-title-container class in includes/widgets.php line it would be great that you include the widget class to keep it WP compliant.
In reply to: How can I limit some users from direct postingMy bad: I’ve been checking more thoroughly this plugin and I’ve found that the “moderation” for users is not applied in their profile but straight in their replies and topics, which is even better because this makes it an even easier moderation
Thanks for the call!
In reply to: How can I create new user groups in bbpress?Great, thanks ๐
It’s easier than I expectedIn reply to: How can I limit some users from direct postingThanks @robin-w but this plugin is an all or nothing. All approved or anyone approved to post.
I’m going to try to introduce some extra features in that plugin. Let’s see how this goes.
In reply to: Managing too long URLGood idea, I’m going to test it
In reply to: Mark all forums as readI have a bad omen for my question after finding this:
I’ve put that change in my site and submitted the patch in the trac. The best thing is that you reported this 4 months ago!! https://bbpress.trac.wordpress.org/ticket/3297
Found the issue: https://bbpress.trac.wordpress.org/ticket/3356
This can be closed now.
@robin-w This is not working as expected and I think there is a bbpress bug. I’m currently testing in my localhost but I think I will publish on trac what I’m finding
I’ve checked the bbpress code and it seems that something is hindering my site
Theorically it shall show the last replay by default without the need of a plugin because it technically should be saving the last active id in the forum post meta field _bbp_last_active_idNot sure what can be hindering my forum behaviour :S
By the way, in my forum template I’m using
bbp_forum_freshness_link
@robin-w : for some strange reason, last reply has automatically switched to last post again. It doesn’t seem that the plugin is switching this.
In fact, it doesn’t work the option:
2. Topic Title Click to show Title on forums pagesNow I’m not 100% sure if it worked before, I’m 50% confident I saw at some point last replay in the forum index. But I’m checking the “Freshness Display” tab menu and it doesn’t show explicitly to switch between “last reply” and “last post”.
It works, now this really reminds me my old SMF forum.
Really interesting plugin
I did not even modify the Freshness Display and it switched to last reply by default.I’m going to help you out with the translation to Spanish of that plugin.
By the way, for code improvements, how do you track changes? do you have public repo for the plugin or using WP SVN?
In reply to: Remove users icon from revisionHere you can see it
I’ve temporarily solve it (or maybe permanently) with:
.bbp-topic-revision-log-item .bbp-author-avatar { display: none; }