gerikg (@gerikg)

Forum Replies Created

Viewing 25 replies - 501 through 525 (of 574 total)
  • In reply to: BBPRess friends plugin

    @gerikg

    Member

    buddypress.org

    @gerikg

    Member

    https://wordpress.org/extend/plugins/bbpress-integration/

    install that in WP and it will tell you what it is.

    @gerikg

    Member

    take out

    define( 'WP_AUTH_COOKIE_VERSION', 1 );

    if you’re using 2.8.4a and make sure the other “defines” are right after <?

    @gerikg

    Member

    anyone?

    In reply to: Integration Problems

    @gerikg

    Member

    @gerikg

    Member

    anandasama here’s acouple of codes that will help you. I think I know what you’re planning.

    This will put the user’s name with link to their buddypress profile:

    <?php echo post_author_link();?>

    This will get the user’s login name:

    <?php echo get_user_name( get_post_author_id() ); ?>

    This is you can send message like PM but it uses message in Buddypress:

    <a href="<?php echo get_option('home') ?>/members/
    <?php global $current_user;get_currentuserinfo();echo($current_user->user_login);
    ?>/messages/compose/?r=<?php echo get_user_name( get_post_author_id() ); ?>">Send Message</a>

    In reply to: Profile edit URL

    @gerikg

    Member

    put it in the header

    @gerikg

    Member

    Why not move the Forum to the top and Last Discussion to the bottom in the front-page.php file?

    In reply to: Integration Problems

    @gerikg

    Member

    you also need (after <?):

    in bb-config

    define( ‘COOKIE_DOMAIN’, ‘???????????’ );

    define( ‘SITECOOKIEPATH’, ‘??????’ );

    define( ‘COOKIEPATH’, ‘????????’ );

    in wp-config

    define( ‘COOKIEHASH’, ‘??????????????????’ );

    define( ‘COOKIE_DOMAIN’, ‘???????????????’ );

    define( ‘SITECOOKIEPATH’, ‘??????????????’ );

    define( ‘COOKIEPATH’, ‘??????????????’ );

    In reply to: Integration Problems

    @gerikg

    Member

    If you followed everything correctly then one problem was that you just need to clear your cache/cookies/etc on your browser. That happens on FF.

    @gerikg

    Member

    _ck_ they did it to your theme too.

    https://bbpress.org/forums/topic/theme-hybrid-kakumeibbpressorg-template#post-56316

    it’s that website adding codes to the header and removing the original author’s footer.

    @gerikg

    Member

    Nightgunner5… um… GREAT! thank you. Where were you a year ago when I requested previously!

    @gerikg

    Member

    and Amazon’s S3 service isn’t free.

    @gerikg

    Member

    postimage makes some scripts for some forums. I requested for BBpress but I think it’s a low demand. Look here: http://www.postimage.org/mod.php

    @gerikg

    Member

    BBpress Latest Discussions works.

    @gerikg

    Member

    It should work…

    make sure wp-config has:

    define( ‘COOKIEHASH’, ‘blahblahblahblahblahblahblahblahblahblah’ );

    define( ‘COOKIE_DOMAIN’, ‘.websiteblah.com’ );

    define( ‘SITECOOKIEPATH’, ‘/’ );

    define( ‘COOKIEPATH’, ‘/’ );

    and bb-config has:

    define( ‘COOKIE_DOMAIN’, ‘.websiteblah.com’ );

    define( ‘SITECOOKIEPATH’, ‘/’ );

    define( ‘COOKIEPATH’, ‘/’ );

    you can get the correct configuration using “bbPress Integration” wordpress plugin

    @gerikg

    Member

    oops, you’re right! WPMU is 2.8.4a

    @gerikg

    Member

    Did you….

    -have the Cookies & Salt all the same? example BBpress side define('BB_AUTH_KEY', 'ABCDEF'); WordPress side define('AUTH_KEY', 'ABCDEF');

    -include $bb->bb_xmlrpc_allow_user_switching = true; in bb-config.php before the ?>

    -install BBpress intergration plugin to get the Hash and cookie information to paste in wp-config.php after the < ?php ?

    -Paste the same cookie information you did on the step before in bb-config.php (without the Hash line) after the < ?php ?

    -Enable Pinbacks, trackbacks, and XML-RPC on BOTH WPMU & BBpress?

    @gerikg

    Member

    It depends on the theme. Go into your theme folder in BBpress and open header.php. Figure out where the links are being created. Then just insert an html tag (no need for php) `<a href=””> blah</a> etc etc Just make sure you have the correct surrounding tags. Sometimes they use

    <li> </li>

    and throw in class=""..

    An easy way to do it on WPMU is create a page the same as the directory. If it’s in http://www.website.com/forums then create a page call forums.

    @gerikg

    Member

    I made a solution!

    Okay this is the fix I came up with. I created a new group in BP profile called signature and the field name signature too.

    In BBpress in the post.php I inserted (note I don’t know PHP, if anyone can shorten this would be appreciated):

    <?php if ( bp_has_profile(‘user_id=’.get_post_author_id().’&profile_group_id=XXX’) ) : ?>

    <?php while ( bp_profile_groups() ) : bp_the_profile_group(); ?>

    <?php if ( bp_profile_group_has_fields() ) : ?>

    <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>

    <?php if ( bp_field_has_data() ) : ?>

    <?php bp_the_profile_field_value() ?>

    <?php endif; ?>

    <?php endwhile; ?>

    <?php endif; ?>

    <?php endwhile; ?>

    <?php else: ?>

    <?php endif;?>

    Just replace XXX with your group id #, mine was 3.

    Still not the ideal _CK_ type plugin but it will do for now.

    In reply to: Error 500

    @gerikg

    Member

    I used to get it because it needed php5 to be used.

    for 1and1 hosting:

    Add the following to your .htaccess file:

    AddType x-mapp-php5 .php

    AddHandler x-mapp-php5 .php

    In reply to: Bavatars doesn't work!

    @gerikg

    Member

    Marius most FTP programs left you right click on the folder and “change permission” if there is check boxes check them all, should be 9 total.

    In reply to: User ID not Author ID

    @gerikg

    Member

    <?php echo get_user_name( get_post_author_id() ); ?>

    got it… sorry

    @gerikg

    Member

    you have to open two files from your BBpress template:

    front-page.php

    forums.php

    look for the lines:

    <th><?php _e(‘Topic’); ?> — <?php bb_new_topic_link(); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    <th> is the titles so you will most likely put “<th><?php _e(‘Author’); ?></th>” showing Author as the title. Just remember what order you put it on if you put it third then you need to put it third on teh enxt step.

    Look for:

    <td class=”num”><?php topic_posts(); ?></td>

    The class might be different but <?php topic_posts(); ?> is the same

    so you put third:

    <td class=”num”><?php topic_author(); ?></td>

    @gerikg

    Member

    @Mooks, the icons that you talk about are not included in the theme those are all plugins.

    @biggerbyfarhttp://www.mikelothar.com/post/134732685 (download link is on the right side) “

Viewing 25 replies - 501 through 525 (of 574 total)