edit the text, links inside. For example: I would like to edit the:
Most popular topics
Topics with no replies
Topics with most replies
Latest topics
Search Results
and change to:
Most popular topics
Topics with most replies
Latest topics
MyCustomLink
Hi. A couple of updates ago, our Site-Wide Forum began delivering new topic notices and notices to the site admin/s erratically. I have been trying to track down the cause ever since. Our host helped me find undelivered email and we noticed an incorrect listing of the site address (see header below). Will you please tell me how I can correct this, and will you please address this in your next update? The site notifications and BuddyPress Forum notifications seem to be going out fine. Thank you.
Sincerely,
Sura (Webmaster, not a developer – so please explain things 🙂
soi-seattle-kinship.org
WP 3.9.1
Dandelion Theme w/child theme: Sufi Order International v2
bbPress 2.5.4-5380
BuddyPress 2.0.1
Easy WP SMTP 1.0.9
—-
from: SOI-Seattle Kinship <mail@soi-seattle-kinship.org>
to: noreply@oi-seattle-kinship.org
date: Wed, Jul 16, 2014 at 4:21 PM
subject: [SOI-Seattle Kinship] Testing New Notification Plug-in #1
signed-by: soi-seattle-kinship.org
Hey guys, I’ve been looking everywhere for this
I installed bbpress and made a forum ( just testing ).
I want my forum to be full width and without the side bar. Tried the “1 column full width” layout and some custom css.
The best I’ve got is a no-full-width forum WITHOUT side bar in the /forum/ page.
But further than that like /forum/topic/… the side bar reappear.
My site is http://mmo4teens.netai.net/ and my theme is Stargazer Colloquium.
Any help is appreciated.
Thanks in advance.
Ok, maybe the pre v3.0.0 never included ‘topic tags’ so the best solution is to delete or comment out this section in vBulletin3.php
Basically remove the code between lines #293 and #334 in vBulletin3.php
bbPress 2.5.4
https://bbpress.trac.wordpress.org/browser/tags/2.5.4/includes/admin/converters/vBulletin3.php#L293
https://bbpress.trac.wordpress.org/browser/tags/2.5.4/includes/admin/converters/vBulletin3.php#L334
I hope to get the updates that I have been doing over the past week and a bit finished by the end of the week and it would be great if I could get a few people to test theme out 🙂
You’ll need to test with the Twenty Fourteen theme and with all your plugins except bbPress disabled as I wrote in my previous post.
Hi all, I think name of the topic can explain the situation I am in. Everything is updated to its latest.
For those who want to see the an example topic that’s affected(Also comments have this):
http://forum.gamesap.az/forums/topic/csgo-yeni-baslayanlar-ucun-qisa-m%C9%99lumat/
I am not a magician with CSS, but when I view the source of page, I see that in that area, I can’t seem to see the beginning og </p> paragraph (closing tag is there)
So I guess the problem is, bbpress is not giving the paragraph a proper starting point.
Have no idea how to fix this, Would be grateful for any help
Hi Stephen,
thanks for the reply. I looked at the trac but it’s not strictly related, since it refers to the spam/trash/admin links on the front end.
What I noticed instead, (and you can test yourself and let me know) is simply as this: in the backend (wordpress admin area) when a topic is in the trashcan, and you click untrash (the same thing you would do with posts, pages, custom post types when you put the in the trashcan) you get the default nonce wordpress error. You simply “CAN’T” untrash something directly inside wordpress.
I was hoping that anyone else could try the same and give me confirmation that the issue exists (in the code i posted I was able to indentify the problem as well)
If you, or anyone else, can confirm there is this issue, I (or you, or whoever wants to) can open a ticket in the trac so it gets fixed asap 🙂
Ok, the code works (just retested it on my site), but the link you supplied is not using it.
are you sure you put
/* =Revisions
————————————————————– */
#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
Display : none !important ;
}
in
wp-content/themes/divi/style.css
Do you have caching software running?
ok i havent gone too much far into this as you may think though
but you can try it as it is now to test it out
these are both in my functions.php in my child theme
im just showing the reply link on both topics and replies, i have gd bbpress tools so there is also a quote link
//change admin links displayed
function change_admin_links ($r) {
$r['links'] = apply_filters( 'rw_reply_admin_links', array(
'reply' => bbp_get_reply_to_link ( $r )
), $r['id'] );
return $r['links'] ;
}
add_filter ('bbp_reply_admin_links', 'change_admin_links' ) ;
//change admin links displayed
function change_topic_admin_links ($r) {
$r['links'] = apply_filters( 'rw_topic_admin_links', array(
'reply' => bbp_get_topic_reply_link ( $r )
), $r['id'] );
return $r['links'] ;
}
add_filter ('bbp_topic_admin_links', 'change_topic_admin_links' ) ;
I have this in my loop-single-reply.php at the bottom ,
i havent added all the admin links, plus this doesnt work on replies it only works on the topic , i need to use a jquery on click function instead of all css dropdown menu
<div class="dropdown" id="dropdown">
<input type="checkbox" id="drop1" />
<label for="drop1" class="dropdown_button">Topic Tools</label>
<ul class="dropdown_content">
<li class="active"></li>
<li> <?php echo bbp_get_reply_edit_link(); ?></li>
<li><?php echo bbp_get_reply_spam_link(); ?></li>
<li><?php echo bbp_get_reply_move_link(); ?></li>
</ul>
</div>
here is all my custom css , i have this in my themes custom css plugin
.dropdown {
display: inline-block;
margin: 0px 10px;
position: relative;
float:right;
}
.dropdown .dropdown_button {
cursor: pointer;
width: auto;
display: inline-block;
padding: 2px 10px;
border: 1px solid #AAA;
border-radius: 0px;
font-weight: bold;
color: #222;
line-height: 16px;
text-decoration: none !important;
background: none repeat scroll 0% 0% #FFF;
}
.dropdown input[type="checkbox"]:checked + .dropdown_button {
border-width: 1px;
border-style: solid;
color: #222;
background: #FFF;
}
.dropdown input[type="checkbox"] + .dropdown_button .arrow {
display: inline-block;
width: 0px;
height: 0px;
border-top: 5px solid #6B7FA7;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
}
.dropdown input[type="checkbox"]:checked + .dropdown_button .arrow { border-color: white transparent transparent transparent }
.dropdown .dropdown_content {
position: absolute;
border: 1px solid #777;
padding: 0px;
background: white;
margin: 0;
display: none;
}
.dropdown .dropdown_content li {
list-style: none outside none;
margin-left: 0px;
line-height: 16px;
border-top: 1px solid #FFF;
border-bottom: 1px solid #FFF;
margin-top: 2px;
margin-bottom: 2px;
width: 86px;
}
.dropdown .dropdown_content li:hover {
background: #999;
color:#222;
}
.dropdown .dropdown_content li a {
display: block;
padding: 2px 15px;
color: #222;
text-decoration: none !important;
white-space: nowrap;
background: #ffffff;
border-bottom: 1px solid #999;
}
.dropdown .dropdown_content li:hover a {
color: #222;
text-decoration: none !important;
background:#999;
}
.dropdown input[type="checkbox"]:checked ~ .dropdown_content { display: block }
.dropdown input[type="checkbox"] { display: none }
Hello,
I am having troubles with the BuddyPress/BBpress login on my forum.
Whenever a user that is not admin, tries to log in, he is being redirected to the homepage. When he returns to the forum, his login session expires.
Please check it here to understand what I mean
http://cardzreview.com/forums
You can use this login :
Name : test
Password : test
I got few complaints from the users, and I think its annoying as well to be honest.
So its affecting all users except for the admin.
Any idea how to fix this?
ok, my brain is now mush, but I am still hooked.
Can you post you solution so far, then I’ll put it in my test site
So I need to know
what code you put in your functions file
what code you have in loop single reply (and starting where!)
any other code you have, and where you’ve put it
I’ll then have a play !
you’ll need to have some logic in here
eg
if there are replies find latest reply, and then find that replies author and insert that.
if there are no replies, then put in topic author
At the moment you looking up the reply author for a topic, and that won’t work.
just had a play and this seems to work, but only tested quickly, so you’d need to set up a few topics with and without single and multiple replies and check that it worksin all circumstances
// Maybe get the topic author
if ( ! empty( $settings['show_user'] ) ) {
//see if there has been replies, and if so set to latest
$replycheck = get_post_meta( $topic_id, '_bbp_last_reply_id',true);
//if we have replies ie replycheck holds the latest reply number
if (!empty ($replycheck))
$author_link = bbp_get_reply_author_link( array( 'post_id' => $replycheck, 'type' => 'both', 'size' => 14 ) );
else
$author_link = bbp_get_topic_author_link( array( 'post_id' => $topic_id, 'type' => 'both', 'size' => 14 ) );
} ?>
I have hardly dug into bbPress 1.x and am not familiar with the code base at all.
How about grab the latest bbPress v1.2 and create a test/demo site on your local PC with a backup your database, things should theoretically work though you ‘d have to make sure the database upgrade routine was triggered of course.
That should then give you a working version with your database to then start comparing the base code of your test site vs your live site.
That said, what is stopping you from upgrading? I am presuming here that there is something stopping you from installing WordPress and upgrading bbPress 1.x to the v2.x plugin?
Hmmmm, that’s no good, I’ll take a look in the next few days, I’m busy as making a load of importer improvements so I’ll test these with vBulletin 3 at the same time.
Also this reported in this topic also, so maybe subscribe to that topic also in case I write omething there and forget here 😉
import from vbulletin3 and no replies
I cannot reproduce this issue with bbPress 2.5.4 and WooSidebars 1.3.1
For example replacing the ‘Primary Sidebar’ with a new WooSidebar for the bbPress ‘Topic Archive’ and ‘Each individual topic’.
Typically issues where people have had issue with ‘the_title’ usually revolves around a theme issue, try using the same configuration you were trying but test it with the Twenty Fourteen theme.
Anything else to help reproduce the issues you posted I’m more than happy to take a look but will need some detailed reproduction steps so I can see what your seing.
Make sure you do not have any conflicts with either your theme or any other plugins:
Switch your theme to the Twenty Fourteen theme and test again, does it work now?
Deactivate all your plugins except bbPress, does it work now? If yes start reactivating each plugin until you find the conflicting plugin that causes it to stop working.
to test out the code make pictures really small and add important
#bbpress-forums div.bbp-topic-content img, #bbpress-forums div.bbp-reply-content img {
max-width: 100px!important;
max-height: 50px!important;
}
but you could also send me a link to a forum post with a picture too
Test all three and all three work! tyvm. Even adapted the rest by removing the “#bbpress-forums” which is redundant, not like anything other then bbpress using those containers anyway, and it functions just fine it seems.
No we haven’t gone live yet – I’m still developing the new site and haven’t got around to doing another import test yet. I’ve got plenty of tasks to complete before I carry on with the forum so I’ll be using an updated version of bbpress by that time I’d imagine. When you say you’ve started adding support for this, are you talking about the redirects in particular?
Cheers
Correct. The forums are currently private. When I’m logged in, the feeds work fine but for non-logged in users, they see blank boxes.
This is the code I’m using to display the latest 4 topics:
<?php query_posts( array( ‘post_parent’ => ’89’, ‘post_type’ => ‘topic’, ‘posts_per_page’ => ‘4’, ‘order’ => ‘DESC’, ‘offset’ => ‘0’ ) );?>
<?php if(have_posts()):while(have_posts()):the_post();?>
<div class=”home-forum-single”>
<span class=”entry-date”><?php echo get_the_date(); ?></span>
<?php the_title();?>
</div><!– end home forum single –>
<?php endwhile;?>
<?php endif;?>
<?php wp_reset_query(); ?>
—
There’s also a <?php the_permalink();?> wrapped around the title above but every time I enter it in the box, it converts it to a link so I’ve taken it out for now.
Also, the “post_parent” in the query is the private forum.
Currently, the font color is nearly the same as the background, making it extremely hard to see. I don’t know CSS well enough to be able to change it myself, so I could and would appreciate some help!
Wordpress version: Latest
BBPress version: 2.5.4
Link to where it shows the problem:
http://www.iblifefordummies.com/forum/ib-life-for-dummies/news-and-announcements/
and
http://www.iblifefordummies.com/topic/welcome-to-the-iblfd-forums/
I’m using the Recent Topics Widget with Order by set to Recent Replies. It’s working great except I would like to change the topic author that it displays to the latest reply author instead. Can someone tell me how to make this happen?
I presume the forums are currently private?
What code are you using to display the latest 4 topics
Hi,
I’m building a forum based website at the moment. You can see the progress here (it’s no where near finished yet): http://pkuconnect.wp-dev.com.au/
At the bottom of the home page, there are 3 columns: News & Events, Forum Activity, Latest Recipes. Forum Activity and Latest Recipes are both private forums (News & Events are just posts).
Now, when you aren’t logged in, the forum and recipes boxes on the home page are empty. However, when you are logged in, they show the 4 latest topics titles with links to the topics for more information – similar to how the latest news and events is working.
What I want to do is show the latest 4 topic titles in each forum to EVERYONE and not just logged in users so that non-logged in users aren’t shown blank boxes. The aim is to prompt the user to log in once they click on one of the links to view more. I can do this by editing the 404.php template. However, for the life of me, I can’t figure out how to feed topic titles and links through to the home page from private forums to non-logged in users.
Is there a way to query_posts from private forums for non-logged in users?
Andrew