Search Results for 'code'
-
Search Results
-
Please is there any plugin or code i can use to set minimum reply length on my forum, i want reply’s to not be less than 60 character. so when any body reply’s with 60 character it tells to person to type not less than 60 character words.
Please i need this urgently.
thanks.Topic: How add Class on list
Hi,
I want to add Class on “★” by PHP template.
<ul id="topic-<?php bbp_topic_id(); ?>-replies" class="forums bbp-replies"> <li class="bbp-header"> <!-- various --> </li> <li class="bbp-body"></li> <li class="★"> <div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header"> <div class="bbp-meta"> <!-- various --> </div> </div> <div <?php bbp_reply_class(); ?>> <!-- various --> </div> </li> <li class="★"> <div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header"> <div class="bbp-meta"> <!-- various --> </div> </div> <div <?php bbp_reply_class(); ?>> <!-- various --> </div> </li> <li class="bbp-footer"> <!-- various --> </li> </ul>But I do not know the appropriate PHP template.
I wonder what I should do.
Thank you.Topic: pagination is not display!?
There are 13 comments on my page, and there are 5 display settings.
Web:http://urx2.nu/LPiR
Img:http://folio.ink/jzbNpwBut pagination is not display!!
This is the HTML:
<div class="bbp-pagination"> <div class="bbp-pagination-count"> </div> <div class="bbp-pagination-links"> </div> </div>I just installed an WordPress, and only BBPress plugin activated.
Why??
Topic: bbp_get_time_since issue
Hi,
The function
bbp_get_time_sinceinincludes/common/formatting.phpalways returns “right now”.bbPress Version: 2.6 release candidate 6
Hi all,
How can I get a reply post ID using a specific post ID?
For example, I want to get 1 using 3.
0
|–1
|–|–2
|–|–3I can not do with the following code:
<?php echo bbp_get_form_reply_to(3);?>How write it?
Thanks.
Hi!
I want to hide all the columns (Posts, Topics, Voices, Freshness) except the Forum and Topic.
Everything is working fine except the column size of Forum column is not changing. Here is the css:/* To hide VOICE, REPLY, POSTS and FRESHNESS columns in bbPress */ li.bbp-forum-reply-count, li.bbp-forum-topic-count, li.bbp-forum-freshness { display: none !important; } li.bbp-topic-voice-count, li.bbp-topic-reply-count, li.bbp-topic-freshness { display: none !important; } li.bbp-forum-info, li.bbp-topic-title { float: left; text-align: left; width: 100%; } /* End */Please help.