Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 47,726 through 47,750 (of 64,454 total)
  • Author
    Search Results
  • #80992
    johnhiler
    Member

    You can always create a new username… and then change the old posts to use your new username using this plugin:

    https://bbpress.org/plugins/topic/edit-post-attributes/

    If there are a lot of posts using your username, you’ll have to use a query to change them all at once!

    #32175
    InvTrdr
    Member

    How many Keymasters can be had in bbPress? Is the admin’s user name always displayed under profile?

    Thanks.

    #32174
    InvTrdr
    Member

    Is it possible to change the user name that was chosen the very first time while installing bbPress?

    Thank you.

    #32173
    InvTrdr
    Member

    Is it possible to block the profile of an admin or a user in bbPress?

    Thank you.

    #32172
    yangers101
    Member

    I currently am running bbpress 1.0.2. I am trying to insert a google adsense code on my right column/sidebar. My right column/sidebar is currently blank. However, no matter where I put the code, it always displays on my main/left column.

    I read somewhere about putting an “includes” function to fetch the sidebar for wordpress. I’m not sure if it will work here?

    Does anybody have any ideas they can share?

    Thank you!

    #32127
    yangers101
    Member

    I currently am running bbpress 1.0.2. I am trying to insert a google adsense code on my right column/sidebar. My right column/sidebar is currently blank. However, no matter where I put the code, it always displays on my main/left column.

    I read somewhere about putting an “includes” function to fetch the sidebar for wordpress. I’m not sure if it will work here?

    Does anybody have any ideas they can share?

    Thank you!

    #80899
    chrishajer
    Participant

    That is how Akismet works in bbPress – can you post a screenshot of your admin? The Posts tab, then there is a drop down with the following choices: All, Normal, Deleted, Spam (if you’re using the Akismet plugin.) Is that not your experience?

    #80980
    chrishajer
    Participant

    That’s browser functionality for textareas, in Chrome and Safari, not something bbPress can fix. Unless I’m completely missing the point.

    #80969
    batrachoid
    Member
    #80915
    batrachoid
    Member

    I can’t think of any reason not to just repeat the same process for all 24.

    #80979
    chandersbs
    Member

    Holy F, i just tried it on my forum, and it’s working, WOW :D

    #80978
    chandersbs
    Member

    I didn’t know this was even possible. I don’t think its working in Chrome though, is it?

    #32170
    Pomy
    Participant

    Dear BBCoders…

    I think it is small mistake but it is mistake. Your post editor lose it’s shape when we expand it with mouse click from bottom right corner. you should try to solve this small mistake and you should try to fix it’s width and height?

    Hope all moderators will smile and take notice ;-)

    here are it’s screen shots

    http://img337.imageshack.us/img337/9396/lol1k.jpg

    http://img11.imageshack.us/img11/1031/lol2js.jpg

    Also you should try to solve this mistake in your post plugin :-)

    #32167

    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

    #80967
    xarzu
    Participant

    I created the “my-templates” directory and I unzipped my theme into a folder in that directory. But when I go to my bbPress dashboard, the screenshot for my new theme shows a blank space with a red X in the upper left corner. When I click to “Activate” the theme it shows a featureless version of bbPress with no theme at all.

    What am I doing wrong?

    merlin214365
    Member

    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 />
    } ?>
    #80930

    In reply to: Get Profile Links

    Gautam
    Member

    Or you can just call get_user_profile_link(); function to get the simple link.

    If the user is logged in, it will automatically get the user id.

    Function can be found here –

    https://trac.bbpress.org/browser/trunk/bb-includes/functions.bb-template.php#L2195

    #80929

    In reply to: Get Profile Links

    Gautam
    Member

    Use this:

    bb_get_profile_link(‘id=’.strval(bb_get_current_user_info( ‘id’ )).’&text=YOUR_TEXT_HERE&before=BEFORE_THE_LINK&after=AFTER_THE_LINK’);

    You can view the function here:

    https://trac.bbpress.org/browser/trunk/bb-includes/functions.bb-template.php#L2768

    #75056
    sbricchiLIN
    Member

    Jleuze,

    It’s great news for me what you explain here.

    Now my idea is just to stop at the first step. I’ll try migrating to vBulletin and stay there. I think it will be the best…

    Thank you for sharing your experience.

    #32007
    Klaus.Kuplen
    Member

    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");

    #80829

    In reply to: Future of bbPress

    There is code in BuddyPress that allows bbPress to install, configure and run all within the WordPress environment.

    But does it work out-of-the-box already? It doesn´t for me.

    #80966

    WordPress themes can’t be used for bbPress without modification, but if it’s a bbPress theme, then yep, just put it in its own directory under my-templates

    #32166
    xarzu
    Participant

    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?

    #80828

    In reply to: Future of bbPress

    chrishajer
    Participant

    Thanks for stopping by Andy.

    #80827

    In reply to: Future of bbPress

    For bbPress to continue moving forward it has to start seamlessly integrating with WordPress.

    There are only two ways of doing that. Move WordPress so that it uses BackPress, or extract BackPress from bbPress and point it to the code existing in WordPress (if it is integrated). Moving WordPress to use BackPress is a considerable job and would likely need the attention of a completely new version number. In the short term the time it would take isn’t feasible for bbPress (or BuddyPress for that matter) to continue moving forward at a reasonable pace.

    The second option is quite possible and has already been done. Despite it not being the truly “ideal” method for the long term it could be used without problems until WordPress moves to BackPress. There is code in BuddyPress that allows bbPress to install, configure and run all within the WordPress environment. If someone was willing to put some time in and extract this code into a plugin (or perhaps a core extension) then the job would almost be done.

    The integration / abstraction code is here: https://trac.buddypress.org/browser/trunk/bp-forums/bp-forums-bbpress.php

    The configuration / setup code is here: https://trac.buddypress.org/browser/trunk/bp-forums/bp-forums-admin.php

    I’m happy to help someone along with this.

Viewing 25 results - 47,726 through 47,750 (of 64,454 total)
Skip to toolbar