Skip to:
Content
Pages
Categories
Search
Top
Bottom

Plugin for email notification of a reply?

Published on October 27th, 2009 by captainjack63

Is there a bbpress plugin that when someone leaves a comment, the original commenter gets get an emailed notification that someone has left a comment reply? For example, if you reply to this post, I would like to get an email that you have replied. The issue comes out is I forget to check to see if there is any updates. I hate having to check daily to see if there are any new replies.

Captain Jack

TA for Hotforwords.com

How to include a Meta Description and Keywords in bbpress without a plug-in.

Published on October 27th, 2009 by

So after trying many plug-ins for meta data i found out that most don’t work at all with the newest version of bbpress and others do a poor job so i decided to write my own little php code no plug-in needed.

I wrote some php code to include a meta description based on the first 200 characters of the post and a default description if there is no post ( i.e the front-page ). Also meta keyword’s that displays any tags associated with that post as keywords.

So just add this to your header

<?php<br />
if ($posts) {<br />
foreach ($posts as $bb_post) : $del_class = post_del_class();<br />
$old=ob_get_contents(); ob_clean(); ob_start(); // you may leave ob_start();<br />
post_text();<br />
$out.=ob_get_contents(); ob_clean();<br />
endforeach;<br />
$out = preg_replace('#<p[^>]*>(s| ?)*</p>#', '', $out); // takes out <p><br />
$out = substr($out,0,200); // only displays the first 200 lines of the first post.<br />
echo '<META NAME="Description" CONTENT="';<br />
echo $out;<br />
echo '">';<br />
}<br />
else {<br />
echo '<META NAME="Description" CONTENT="This is your defalt description edit this to what ever you want ">'; // This displays when where is no post<br />
}<br />
global $tags;<br />
if (!empty($tags)) {<br />
$keywords=""; foreach ($tags as $t) {$keywords.=$t->raw_tag.', ';}<br />
echo "n".'<meta NAME="keywords" CONTENT="'.trim($keywords,", ").'">'."n"; // This displays any tags associated with that post as a keyword<br />
} ?>

Rotating log files

Published on October 27th, 2009 by Klaus.Kuplen

Hi,

I’m setting up a bbpress instance and noticed that the log files have to exist otherwise no logging takes place. This makes my beloved log file rotating impossible.

But if i edit class.bp-log.php and insert the following after lines in set_filename at about line 143

if (! file_exists($_filename)) {

@touch ($_filename);

}

This allowes me to do nice things like configure log files to

define( 'BB_LOG_FILENAME', $global_log_dir . 'bbpress-' . date("Y-m-d") . ".log");

Newbee (don't laugh at stupid question)

Published on October 27th, 2009 by xarzu

I like this theme a lot. I have it for WordPress. I have never installed a new theme on my bbpress. How do you do it? I have figured out that I have to create a new directory at the bbpress root called “my-templates” and I guess I am supposed to put the unzipped file there.

That is about as far as I can tell so far. Any advice?

Fictional Hybrid

Published on October 27th, 2009 by Ario

A cross between my “Ficional” WP theme and _ck_’s Hybrid theme though in many ways mixed up a bit. I al always making a few tweaks and it doesn’t look exactly the way I like. Would love to clean up some of the smaller things up but hitting some snags. Either way it is finished enough beyond the little things that I am proud to show it off a bit:

Fictional Hybrid BBpress:

http://forums.atfics.com/

Fictional WP Theme:

http://www.atfics.com/

BeritaGame BBpress

Published on October 27th, 2009 by psycheangels

News MMO Forum for Indonesia community

http://www.beritagame.com/forum/

Deep Integration with Old WordPress

and the Forum data imported from my old Discuz forum to BBpress

Thanks all the BBpress dev team and all creator of the plugin i use.

i really love BBpress.

Contact Us Form Captcha Plugin

Published on October 26th, 2009 by Pomy

Is there any contact form plugin like wordpress plugin https://wordpress.org/extend/plugins/si-contact-form/screenshots/. in plugin directory of bbpress?

really need it. or tell me alternative

Get Profile Links

Published on October 26th, 2009 by Ario

bb_get_profile_link(bb_get_current_user_info( ‘id’ ))

Is there any way to get the URL to the logged in user’s profile without all that “view your profile” junk it tacks onto the above call?

I am trying to customize my logged-in.php into something like:

<ul>
<li>Profile</li>
<li>Edit</li>
<li>PM</li>
<li>Favorites</li>
<li>Logout</li>
</ul>

Except I can never get it to pump out clean URLs =/

Job offering

Published on October 26th, 2009 by DKB

Hi,

Im looking for a experienced php programmer and designer. Ik have build the WordPress site on my own but i would like that somewone looks at it and can make improvements. I am also considering to port my theme to another and fully integrate my bbPress forum.

Reward is dependent on the how much time it is needed.

Requirements:

* Very good knowledge of WordPress

* Very good knowledge of PHP, CSS en HTML

*Good knowledge of SEO en usability

*Someone can give advice rather than just implements

Thanks in advance

erwinjansen1[at]live.nl

Display Custom-Userfields in Forumposts

Published on October 26th, 2009 by janvi

Hello.

Trying to get the extended user (profile) fields running. This was easy, the solution was relatively easy to find on the forums. But, .. always a but you know. My problem is to display this user information in the forum posts, how can I solve this? I would like to display this info below the gravatars.

(display only one userfield, not all of them. eg. would like to display a field called ‘distro’)

Relatively unexperienced with both WP and bbPress.

Thank you ;)

Skip to toolbar