Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 65,476 through 65,500 (of 94,540 total)
  • Author
    Search Results
  • #94857
    Anonymous User 96400
    Inactive

    @guigoz

    I’ll have a look. It works on my local system. Anyways, I have added a page where users can invite their friends if the event is public and it’s not attached to a hidden or private group. It’s not been tested very well, so it’d be great if you want to give it a go

    urlwilliams
    Member

    I am only getting 404 errors and am able to see login screen, but no site access and no wp-admin access

    urlwilliams
    Member

    Anyone have any ideas on correcting this?

    #15749
    JacoboPolavieja
    Participant

    Hello all,

    I’m new to both WordPress and BuddyPress. I have been programming some custom post types for a project I’m doing where I wanted to use BuddyPress. I never thought about if custom post types would be compatible with BuddyPress, but now I see this http://wordpress.org/extend/plugins/buddypress-custom-posts/ .

    Is there any problems in using BuddyPress with custom post types? Is it even possible?

    Thanks for helping. Cheers!

    islandcastaway
    Participant

    Figured it out .

    global $bp;
    echo get_usermeta( $bp->displayed_user->id, ‘aim’);

    #94854
    guigoz
    Member

    @travel-junkie

    Hi,

    If I try to invite friends by clicking ‘Edit” button, I have this error : “Your event could not be edited. Please try again!”

    About inviting system, it would be awesome your plugin support the “Invite Anyone” plugin.

    Thanks for your work.

    #94853
    Anonymous User 96400
    Inactive

    @web_art
    Data that has been entered does not get lost now when event creation fails and I’ve added autosuggest to the locations field as well. Both autosuggest fields (invitations and locations) are being handled by an AJAX call now. Altogether it’s a bit slower now because of the database calls it needs, but for large communities it’s just not feasable to fetch all locations and all friends beforehand.

    #15747
    modemlooper
    Moderator

    http://wordpress.org/extend/plugins/buddypress-mobile/

    Should work on most mobile devices that use a webkit browser.

    I am still adding theme support for some plugins.

    #94850
    jlenney
    Member

    Could you also please remove this one: jefflenney – that is another spam account by this militias user, with intent on harming me.
    @johnjamesjacoby @boonebgorges
    Thank you,
    Jeff Lenney (you can contact me via jefflenney.com if you want)

    #94848
    jlenney
    Member

    I’ll keep that in mind – Who is “WE” by the way?

    And mods, seriously – please delete/ban this user for me.

    Thank you,
    @johnjamesjacoby @boonebgorges

    #94843
    techguy
    Participant

    This is a known problem. The workaround for now is to upload it to http://en.gravatar.com/ Just do it for the email address that you used to register on BP.org and your avatar will be changed to whatever you upload to Gravatar.

    #15746
    rlparker81
    Member

    Hi, I have been passed this site to fix and I have never used buddypress before so my apologies if I am being a bit thick!

    OK it is a WordPress MU 2.9.2 site with the following plugins
    BuddyPress 1.2.3,
    bbpress Integration 1,
    WPMU enable bbpress capabilities 0.1
    buddypress usernames only 0.52.

    If you complete the form to register with the site it submits fine and you get an email with an activation code. However if you follow that link it says that there was an error activating your account. I have had a bit of a poke around and from what I can see when it sends the email it doesn’t create a record in the wp_signups table.

    Where in the code should it insert this record? Is this the correct table?

    This was working perfectly until a couple of weeks ago and no one is admitting to changing anything so not sure why it has stopped working.

    If anyone has any ideas why this could have stopped working/how to fix it or just point me in the direction of the files I need to look at I would be very grateful

    thanks

    Rachael

    #15745
    loveme
    Participant

    FIRST, LET ME APPRECIATE THE GROUP THAT DEVELOP THIS SCRIPT, IT IS A NICE PROJECT. AFTER STUDYING BUDDYPRESS AND WPMU FOR SOME TIME I KNOW IT HAS SO MANY THING TO OFFER. I LOVE THE PLUGIN OFFER LIKE Erocks Dashboard Lockdown

    MY PROBLEM IS THAT, I WANT ANY OF MY USER WHO HAVE A BLOG TO HAVE ACCESS DISPLAY GOOGLE ADSENSE ON THEIR BLOG. AFTER SOME INVESTIGATION, I DISCOVERED THAT http://www.ringofblogs.com/…/adsense-revenue-sharing-plugin-for-wordpress-mu/ OFTER THAT PLUGIN FREE. BUT I DON’T WANT THEM TO HAVE ACCESS TO WORDPRESS DASHBORAD BY USING Erocks Dashboard Lockdown

    BUT THE PROBLEM ENCOUNTER IS THAT EACH USER CAN ONLY INPUT THEIR PUB-NUMBER FROM GOOGLE INTO THEIR DASHBOARD AND I DON’T WANT WANT THEM TO HAVE ACCESS TO DASHBORAD.
    HOW CAN I CONVERT IT TO WIDGET PLUGIN. THIS IS THE PROGRAMME

    <?php
    /*
    Plugin Name: Adsense Share for WPMU
    Plugin URI: http://www.ringofblogs.com/2007/10/07/adsense-revenue-sharing-plugin-for-wordpress-mu/
    Description: Share Adsense income with your wpmu users. This plugin is based on work done by Mike Smullin.
    Version: 1.2.3
    Author: Elad Salomons
    Author URI: http://www.ringofblogs.com
    License: Free
    Last modified: 26-Feb-2008
    */

    // set to ‘true’ if you don’t want to allow the user to add an Adsense widget
    $no_widgets = ‘false’;

    //add the widget to the sidebar
    function widget_adsense($args) {

    $your_adsense_share = get_site_option(‘your_adsense_share’);
    $your_adsense_code = get_site_option(‘your_adsense_code’);

    $options = array_merge(widget_adsense_options(), get_option(‘widget_adsense’));
    unset($options[0]);

    //if the user entered a code in the option page then use it.
    $uc = get_option(‘user_adsense_code’);
    if(!empty($uc)) :
    $options = $uc;
    endif;

    if(rand(1, 100) >= 100 – $your_adsense_share) :
    $options = $your_adsense_code ;
    endif;

    //if the user did not enter his Adsense id use the owner code.
    if(empty($options)) :
    $options = $your_adsense_code ;
    endif;

    echo $before_widget . $before_title . $options . $after_title; ?>


    <!–
    <?php
    foreach($options as $key => $value)
    echo “$key = “$value”;rn”;
    ?>//–>
    <script type="text/javascript"
    src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”&gt;

    By rob

    <?php
    echo $after_widget;
    }

    //add the widget in the backend
    function widget_adsense_control() {
    $tmp_options = get_option(‘widget_adsense’);
    if (!is_array($tmp_options))
    $tmp_options = array();
    $options = array_merge(widget_adsense_options(), $tmp_options);
    unset($options[0]);

    if ( $_POST ) {
    foreach($options as $key => $value)
    if(array_key_s(‘adsense-‘.$key, $_POST))
    $options[$key] = strip_tags(stripslashes($_POST));

    update_option(‘widget_adsense’, $options);
    }

    //if the user entered a code in the option page then use it.
    $uc = get_option(‘user_adsense_code’);
    if(!empty($uc)) :
    $options = $uc;
    endif;

    foreach($options as $key => $value): ?>

    <label for="adsense-“>: <input style="width: 200px;" id="adsense-” name=”adsense-” type=”text” value=”” />

    <?php endforeach;

    $your_adsense_code = get_site_option(‘your_adsense_code’);
    ?>

    <!–
    google_ad_client = “”;
    google_ad_output = “textlink”;
    google_ad_format = “ref_text”;
    google_cpa_choice = “CAAQnfzw4AIaCJwZC9ix5DwoKN2uuIEBMAA”;
    //–>

    <?php
    echo ”;
    }

    //init the widget
    function widget_adsense_init() {

    if ( !function_exists(‘register_sidebar_widget’) )
    return;

    $default_your_adsense_share = get_site_option(‘your_adsense_share’);
    if (!$default_your_adsense_share) {
    update_site_option( “your_adsense_share”, 20 );
    }
    $default_your_adsense_code = get_site_option(‘your_adsense_code’);
    if (!$default_your_adsense_code) {
    update_site_option( “your_adsense_code”, ‘pub-ca-xxx’ );
    }

    function widget_adsense_options() {
    return array(
    ‘Title’ => “”,
    ‘google_ad_client’ => “”,
    ‘google_ad_width’ => 120,
    ‘google_ad_height’ => 240,
    ‘google_ad_format’ => “120x240_as”,
    ‘google_ad_type’ => “text”,
    ‘google_ad_channel’ => “”,
    ‘google_color_border’ => “336699”,
    ‘google_color_bg’ => “FFFFFF”,
    ‘google_color_link’ => “0000FF”,
    ‘google_color_url’ => “008000”,
    ‘google_color_text’ => “000000”,
    );
    }

    register_sidebar_widget(‘Google AdSense’, ‘widget_adsense’);
    register_widget_control(‘Google AdSense’, ‘widget_adsense_control’, 220, 100 + 50 * count(widget_adsense_options()));
    }

    function add_adsense_share_page()
    {
    add_submenu_page(‘wpmu-admin.php’, ‘adsense_share’, ‘Adsense share’, 0, ‘adsense-share-mu.php’, ‘adsense_share_page’);
    }

    // add the options page for admins
    function adsense_share_page() {

    if ( !is_site_admin() ) {
    die( __(‘

    You do not have permission to access this page.

    ‘) );
    }

    $message = null;
    $message_updated = __(“Adsense share Options Updated.”);

    // update options
    if ($_POST && $_POST == ‘adsense_share_update’) {
    $message = $message_updated;
    update_site_option( “your_adsense_share”, $_POST[ ‘your_adsense_share’ ] );
    update_site_option( “your_adsense_code”, $_POST[ ‘your_adsense_code’ ] );
    }
    ?>

    Adsense Share Options


    <input type="hidden" name="encrypted" value="


    BEGIN PKCS7


    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


    END PKCS7


    “>

    This plugin can make you money. Please consider a donation to the developer.

    <input name="your_adsense_share" type="text" id="your_adsense_share" value="” size=”3″ />

    <input name="your_adsense_code" type="text" id="your_adsense_code" value="” size=”50″ />

    <input type="submit" name="Submit" value="” />

    This plugin was developed by Elad Salomons.

    <?php
    }

    function add_adsense_user_page() {
    if (function_exists(‘add_options_page’)) {
    add_options_page(‘Adsense Publisher’, ‘Adsense Publisher’, 8, basename(__FILE__), ‘adsense_user_page’);
    }
    }

    //add the options page for the users
    function adsense_user_page() {

    $message = null;
    $message_updated = __(“Adsense Publisher Code Updated.”);

    // update options
    if ($_POST && $_POST == ‘adsense_user_update’) {
    $message = $message_updated;
    update_option(‘user_adsense_code’, $_POST[ ‘user_adsense_code’ ]);
    }
    ?>

    Enter Your Adsense Publisher Code

    Don’t have one?

    <!–
    google_ad_client = “”;
    google_ad_output = “textlink”;
    google_ad_format = “ref_text”;
    google_cpa_choice = “CAAQnfzw4AIaCJwZC9ix5DwoKN2uuIEBMAA”;
    //–>

    The Adsense publisher code you enter here will override the one entered in the widget form

    <input name="user_adsense_code" type="text" id="user_adsense_code" value="” size=”50″ />
    (pub-1234567890)

    <input type="submit" name="Submit" value="” />

    <?php

    }

    //a function to call from the themes to get an Adsense publisher code
    function get_adsense_code() {
    $your_adsense_share = get_site_option(‘your_adsense_share’);
    $your_adsense_code = get_site_option(‘your_adsense_code’);

    $user_adsense_code = get_option(‘user_adsense_code’);
    if(empty($user_adsense_code)) :
    echo ‘”‘ . $your_adsense_code . ‘”‘;
    return;
    endif;

    if(rand(1, 100) >= 100 – $your_adsense_share) :
    echo ‘”‘ . $your_adsense_code . ‘”‘;
    return;
    endif;

    echo ‘”‘ . $user_adsense_code . ‘”‘;
    }

    //some action stuff…
    if ($no_widgets == ‘false’) //if we want to allow widgets
    add_action(‘plugins_loaded’, ‘widget_adsense_init’);
    add_action(‘admin_menu’, ‘add_adsense_share_page’);
    add_action(‘admin_menu’, ‘add_adsense_user_page’);
    ?>

    PLEASE WHERE WILL I EDIT. I HAVE KONWLEDGE ONLY IN HTML AND CSS

    THANKS YOU

    #15741
    AndreMartin
    Participant

    I tried to change the avatar of my profile here on the site (buddypress.org) but each time when I try to upload a JPG (small file size), I get this error in a red box:

    “Upload Failed! Error was: Unable to create directory /home/buddypress/public_html/wpmu/wp-content/blogs.dir/1/files/avatars/4034951. Is its parent directory writable by the server?”

    Ivo Vargas
    Participant

    Hi,
    I have a wordpress site for several years, and now i whant to implement a buddypress pulgin, to turn it more “Social”….
    Buddypress instalation is in good state, working good, but i can’t setup the forums.
    Allways give me this error: The bb-config.php file was not found at that location, please try again.
    Anyone can make a tutorial ???
    Tell me where is the bb-config.php, i find one in the bb-forum folder, if its that one, tell me..
    i try a relative path and an absolute path for that file and the error append everytime…
    Note i installed a translation pack for Portuguese lang… I think this is not the problem…
    Every thing is still as is came from the installation default…

    Thank you in advance :)
    Ivo Vargas

    #94833
    Anonymous User 96400
    Inactive

    @web_art
    1. not an error, just a usability problem :) I’ll fix that.
    2. it was a typo in apply_filters and is fixed now

    As for the group contact details. I’ll take those out in a future release and turn it into a separate plugin. I’m building a jobboard plugin as well and that uses the same fields, so in the next big release I’ll be reworking the whole group contact stuff

    @guigoz
    That’s something for another release, but it’s on the roadmap

    #94832
    rich! @ etiviti
    Participant

    located in “youreprefix”_options table :: option_name->bb-config-location

    if not there, probably why nothing is being created as buddypress looks there before generating all the tables.

    #94831
    Matt Edminster
    Participant

    Thanks fellas … I’ll see what I can put together.

    #94828
    Bowe
    Participant

    What Roger says is right.. that’s the way to go.. you can also use the conditional tags to display certain sidebars on certain components only:

    `
    <?php /* GROUP SIDEBAR */ if(bp_is_group()){
    if(!dynamic_sidebar(“Group Sidebar”)){
    ?>
    `
    It’s a great way to make your site more dynamic!

    #94827
    Roger Coathup
    Participant

    Take a look at this page: https://codex.buddypress.org/developer-docs/conditional-template-tags/

    Essentially, something like !bp_is_blog_page() will return TRUE when you are on any page that isn’t a WordPress blog page – i.e. when you are on any of the Social Network (BuddyPress) pages.

    Alternatively, the default theme already embeds some class information in the body tag – although there is no single one for a BuddyPress page, so you’d have to catch all the different classes.

    #15737
    Matt Edminster
    Participant

    Is there a conditional function that checks to see whether the given page is a buddypress page of any kind?

    I need this for two applications. In the first case, I want my top level navigation link “Communities” to use the css class “active” as long as a buddypress page of any kind is active. In the second application, I want a sidebar I’ve registered to show up on all (but only) buddypress pages.

    Many thanks!

    #94816
    guigoz
    Member

    @travel-junkie
    For inviting system, only event creator can invite his friends ? Attendee can’t invite his friends ?

    #94812
    Sven Lehnert
    Participant

    @travel-junkie Thanks a lot, I will wait till Wednesday and hope for 1.5.6. If not, I would be glad if you get me a copy.

    #94810
    modemlooper
    Moderator

    @gearupandplay

    Try adding this to bp-custom.php file in your plugins folder.

    remove_action(‘bp_before_blog_single_post’, ‘bp_share_it_button_blog_filter’, 999);

    #94809
    modemlooper
    Moderator

    @pjnu I may add that option. I’ll probably do a version 2.0 with admin options to pick and choose share sites.

Viewing 25 results - 65,476 through 65,500 (of 94,540 total)
Skip to toolbar