Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 17,801 through 17,825 (of 32,678 total)
  • Author
    Search Results
  • #136352
    jacor3003
    Member

    That make sense, Thank You.

    #136349
    valuser
    Participant
    #136348
    Paul Wong-Gibbs
    Keymaster

    Ok. Before we play on your test server you need to contact your host and ask if you have SSH access to use a terminal. In the interim, we can try the concept out locally on your Mac.

    How familiar are you with using the Terminal app? (it’s in Applications > Utilities) If not very, you’ll have to do some Googling to figure things out.

    Open the Terminal app. Type these 2 commands:

    cd ~/Desktop
    svn co https://buddypress.trac.wordpress.org/trunk BuddyPress

    That last command might take a couple of minutes. It’ll download a copy of BP trunk. Look at your desktop, and you’ll find a folder called “BuddyPress” containing… BP trunk :)

    Then wait for the BuddyPress team to do a new update to trunk. Easiest way to do this is keep an eye on https://buddypress.trac.wordpress.org/log and remember what “Rev” it’s up to. When you spot an update, open Terminal again:

    cd ~/Desktop/BuddyPress
    svn up

    “svn up” is an “update” command. It figures out what SVN revision your checkout of BuddyPress is on, compares that to the version on the server (it remembers what URL you fetched it from originally), and then downloads and applies any updates automatically.

    This is the method I like doing on my servers, so maybe see if it works out for you.

    #136341
    Roger Coathup
    Participant

    Plaza is a very nice website – it’s also a significant custom development.

    Are you a skilled PHP developer with solid WordPress development experience (writing custom post types, taxonomies, url rewrites and such like)?

    If you have those development skills (and in the case of Plaza – some strong design skills as well) or are willing to hire them in, then yes, BuddyPress is a suitable underlying platform to build the user profiles on, and to provide a backbone where you can unify their reviews and hotel submissions.

    BobScott
    Member

    Hi everyone,

    I have installed numerous times and everythime with the same results.
    I have a new installation of WP hosted on whois.com at http://www.mymatchme.com/wordpress. The wordpress site is my BuddyPress test site, which I cannot get working. I have followed all installation instructions-but no go.
    I experience the following:
    1. Installation gives me no errors and I install from WordPress.
    2. After installation, I only have the standard WP file structure with no BuddyPress directories, which I suspect need to exist?

    What do I do next? My test site can be found at: http://www.mymatchme.com/wordpress

    It may be that there are insufficient rights to create the BuddyPress pages, but I have uploaded media, changed permalinks etc so all appears to be ok, but obviously something is lacking.

    Please can someone point me in the right direction?

    #30106
    JamieLe
    Participant

    Hello,

    I have an idea for a social network to allow a group of disabled people to share their travel experiences and recommend hotels with specialist facilities.

    I’ve looked at Plazaa in the showcase section of this site and would like my site to function in a similar way.

    I would like users to be able to sign up and communicate with each other but also to be able to create hotel ‘pages’ with preset fields about facilities, photo galleries which people can contribute to, and a discussion board where people can leave their star-rated reviews.

    Is BuddyPress the way forward?

    I’ve made quite a few WordPress sites so far and have a clean installation with BP sitting waiting to work on.

    I’m not an expert nor a beginner — any advice would be appreciated as to whether this is the answer or something else altogether.

    Thanks.

    #136330

    In reply to: redirect user login

    valuser
    Participant

    https://wordpress.org/extend/plugins/buddypress-login-redirect/ can redirect to 3 different locations after login. 1. Personal Profile / Personal Activity Page 2. Site wide Activity 3. Friends’ Activity

    https://wordpress.org/extend/plugins/login-with-ajax/ this plugin’s settings allows you go to any particular page OR to the current users particular page on login & on logout if you use %USERNAME% — its on the settings page

    Pinhead149
    Member

    Hi guys,
    i’ve installed liveTV bundle ( http://wordpress.org/extend/plugins/livetv-bundle/ ), but this plugin show the profile fields only in the normal profile panel not in buddypress. so my question is, how can i change it to my buddypress profiles? The developer of this plugin, told me that i should ask a buddypress expert.

    Sorry about my bad english, but i really need your help.

    Heres the code if you need it: (liveTV/page-admin/page-admin-livestreams.php)

    Code:
    //Now hook to create extra profil fields
    add_action( ‘edit_user_profile’, ‘livetv_show_extra_profile_fields’ );
    //When the current on the current profil has capabilties to edit -> display
    add_action( ‘edit_user_profile_update’, ‘livetv_save_extra_profile_fields’ );
    //When the current on the current profil has capabilties to edit -> update

    add_action( ‘show_user_profile’, ‘livetv_show_extra_profile_fields’ );
    //When the current on the current profil has capabilties to show -> display
    add_action( ‘personal_options_update’, ‘livetv_save_extra_profile_fields’ );
    //When the current on the current profil is the current and edit -> update

    if(!is_admin)
    {
    //Frontend plugins compatibility
    add_action(‘profile_personal_options’, ‘livetv_show_extra_profile_fields’);
    //When the current on the current profil is the current and show -> display
    }

    //Now construct new profil fields access, based on option of the plugin (default wordpress roles or new roles)
    function livetv_show_extra_profile_fields( $user )
    {
    $userID = $user->ID;

    $access = get_option(‘livetv_activate_creation_role’);

    //If based on new roles
    if($access == ‘on’)
    {
    $editable_roles = get_roles();

    foreach ($editable_roles as $key => $value)
    {
    $temp = preg_match("#^live_#", $key);

    if($temp == true)
    {
    if (current_user_can(”.$key.”))
    {
    $live_profil = ‘1’;
    }
    else
    {
    $live_profil = ‘0’;
    }
    }
    }
    }

    //If based on wordpress role
    if($access == ‘off’)
    {
    $defautRole = get_option(‘livetv_defaut_role_wordpress’);

    if (current_user_can(”.$defautRole.”))
    {
    $live_profil = ‘1’;
    }
    else
    {
    $live_profil = ‘0’;
    }
    }

    //Administrator have already access to all profils
    if (current_user_can(‘administrator’))
    {
    $live_profil = ‘1’;
    }

    //Result to displaying profil fields
    if($live_profil == ‘1’){if(is_admin()){$tableclass = ‘widefat options’;}else{$tableclass = ‘form-table’;} ?>
    <table class="<?php echo $tableclass; ?>" style="width: 600px">
    <h3>
    <?php _e(‘Stream hinzufügen’); ?>
    </h3>

    <th colspan="2" class="dashboard-widget-title"><?php _e(‘Channel hinzufügen’, ‘livetv’); ?></th>
    <?php
    $types = explode(‘_’, get_option(‘livetv_types_order’));
    foreach($types as $key => $type)
    { ?>
    <tr valign="top">
    <td scope="row"><label>
    <?php _e(‘Dein Channel auf’, ‘livetv’); echo ‘ ‘. $type; ?>
    </label></td>
    <td class="livetv-admin-td"><input type="text" style="width:125px;" maxlength="55" name="live_<?php echo $type; ?>" id="live_<?php echo $type; ?>" class="regular-text" />
    <span class="livetv_help" title="<?php _e(‘Füge einen Channelnamen oder eine Channel ID hinzu.’, ‘livetv’); ?><?php echo ‘ ‘ . $type. ‘.tv ‘; ?><?php _e(‘oder lasse es frei.’, ‘livetv’); ?>"></span><br /></td>
    </tr>
    <?php } ?>
    </table>
    <?php
    foreach($types as $key => $type)
    {
    $countlive = get_user_meta($userID, ‘count_live_’.$type.”, true);
    if($countlive) { ?>
    <br />
    <table class="widefat options" style="width: 600px">

    <th colspan="2" class="dashboard-widget-title"><?php _e(‘Deine aktiven Channel auf ‘, ‘livetv’); echo $type; ?>
    <span class="mini-<?php echo $type; ?>"></span></th>
    <tr valign="top">
    <td scope="row"><label><?php _e(‘Entferne einen deiner Channel’, ‘livetv’) ?></label></td>
    <td class="livetv-admin-td"><select name="delete_one_<?php echo ”.$type.” ?>" id="delete_one_<?php echo ”.$type.” ?>">
    <option value=""><?php echo ” ?></option>
    <?php
    global $wpdb;
    $thumbs = $wpdb->get_results( "SELECT meta_key, meta_value FROM $wpdb->usermeta WHERE meta_key LIKE ‘live_".$userID."_".$type."_%’" );
    foreach($thumbs as $keythumb => $valuethumb)
    {
    ?>
    <option value="<?php echo ”.$valuethumb->meta_key.”; ?>"><?php echo $valuethumb->meta_value; ?></option>
    <?php } ?>
    </select>
    <span class="livetv_help" title="<?php _e(‘Wähle löschen und klicke auf Registrieren um den Channel zu löschen’, ‘livetv’); ?>"></span><br /></td>
    </tr>
    <?php foreach($thumbs as $keythumb => $valuethumb)
    {
    ?>
    <tr valign="top">
    <td scope="row"><label><?php echo ‘ID ‘ ?>
    <input type="text" style="width:50px;" maxlength="55" disabled="disabled" value="<?php echo $keythumb + 1; ?>" />
    </label></td>
    <td class="livetv-admin-td"><input type="text" style="width:125px;" maxlength="55" disabled="disabled" name="<?php echo $valuethumb->meta_value; ?>" value="<?php echo $valuethumb->meta_value; ?>" id="<?php echo ”.$valuethumb->meta_key.” ?>" />
    <span class="livetv_help" title="<?php _e(‘Dieser Channel wird auf unserer Stream Seite angezeigt.’, ‘livetv’); ?>"></span></td>
    </tr>
    <?php } ?>
    </table>
    <?php }}}}

    //Profil field update function
    function livetv_save_extra_profile_fields( $user_id )
    {
    if ( current_user_can( ‘edit_user’, $user_id ) )
    {

    if(isset($_POST[‘delete_one_own3d’]) && !empty($_POST[‘delete_one_own3d’]))
    {
    $temp = stripslashes($_POST[‘delete_one_own3d’]);

    if($temp)
    {
    delete_user_meta( $user_id, ”.$temp.”);
    }
    }

    if(isset($_POST[‘delete_one_justin’]) && !empty($_POST[‘delete_one_justin’]))
    {
    $temp = stripslashes($_POST[‘delete_one_justin’]);

    if($temp)
    {
    delete_user_meta( $user_id, ”.$temp.”);
    }
    }

    if(isset($_POST[‘delete_one_twitch’]) && !empty($_POST[‘delete_one_twitch’]))
    {
    $temp = stripslashes($_POST[‘delete_one_twitch’]);

    if($temp)
    {
    delete_user_meta( $user_id, ”.$temp.”);
    }
    }

    if(isset($_POST[‘live_own3d’]) && $_POST[‘live_own3d’] != ”)
    {

    $countlive = get_user_meta($user_id, ‘count_live_own3d’, true);

    if(!$countlive){
    $countlive = ‘0’;
    }

    $count = $countlive + ‘1’;

    update_user_meta( $user_id, ‘count_live_own3d’, ”.$count.”);
    update_user_meta( $user_id, ‘live_’.$user_id.’_own3d_’.$count.”, $_POST[‘live_own3d’] );
    }

    if(isset($_POST[‘live_justin’]) && $_POST[‘live_justin’] != ”)
    {

    $countlive = get_user_meta($user_id, ‘count_live_justin’, true);

    if(!$countlive){
    $countlive = ‘0’;
    }

    $count = $countlive + ‘1’;

    update_user_meta( $user_id, ‘count_live_justin’, ”.$count.”);
    update_user_meta( $user_id, ‘live_’.$user_id.’_justin_’.$count.”, $_POST[‘live_justin’] );
    }

    if(isset($_POST[‘live_twitch’]) && $_POST[‘live_twitch’] != ”)
    {

    $countlive = get_user_meta($user_id, ‘count_live_twitch’, true);

    if(!$countlive){
    $countlive = ‘0’;
    }

    $count = $countlive + ‘1’;

    update_user_meta( $user_id, ‘count_live_twitch’, ”.$count.”);
    update_user_meta( $user_id, ‘live_’.$user_id.’_twitch_’.$count.”, $_POST[‘live_twitch’] );
    }
    }
    }
    ?>

    Greetz

    #136329

    In reply to: redirect user login

    edinchez
    Participant

    Not really sure how multisite works, but this plugin here can be configured to work the way you want I think:

    https://wordpress.org/extend/plugins/peters-login-redirect/

    #136325
    modemlooper
    Moderator

    Did you install WordPress with a one click installer from your host? If so the directory may not have permissions set to allow BuddyPress to create folders and add images to your server

    Paul Wong-Gibbs
    Keymaster

    Your best bet is to ask on bbpress.org or search for bbPress plugins on the WordPress.org directory.

    #136319
    Paul Wong-Gibbs
    Keymaster

    User registration also has to be enabled in WordPress for this to work, too. (via Settings > General, in wp-admin)

    #136311
    mattdans
    Member

    I’m having a problem with the registration page. When I type in the url imgmatters.com/walkforasl/register, it takes me to the home page (imgmatters.com/walkforasl) Same thing when I clicked the ‘view’ button on BuddyPress’ interface (in WordPress) to view the register page.

    #136310
    modemlooper
    Moderator

    bp_displayed_user_avatar only works on a members profile page use bp_core_fetch_avatar

    not all functions work out of their components

    #30091
    sebsomes
    Member

    Hi,

    I wanted to know if there is an option to take the content of a group like for a category in WOrdpress.

    Something like the query_post option of WOrdpress ?

    Tnks

    jacor3003
    Member

    Hi,
    I’m learning BP and wonder if i can use bp_ functions in static wordpress sites.
    The site works fine but… I’ve created page “Test” wich id is 40 and in my theme folder i’ve created file “page-40.php” in this file i’m loading header-buddypress.php instead of header.php but i cannot access functions like `bp_displayed_user_avatar()` or `bp_members_component_link(‘profile’, ‘public’)`. Is there a way to make this stuff works?

    nickharambee
    Participant

    I too am noticing this behaviour, specifically with apostrophes – I haven’t tested other special characters.

    I am using latest versions (WordPress 3.4, Buddypress 1.5.6 and BuddyPress Group Email Subscription 3.1.2)

    Anonymous User
    Inactive

    Hello @valuser

    Yes it can be done for tags. The trouble with your snippet is that you’re calling a function that doesn’t exist in WordPress : get_the_post_tag() !! So i adapted your function using this one https://codex.wordpress.org/Function_Reference/get_the_tags and instead of tag ids i think it’s more convenient to use tag slugs :

    function do_not_record_this_tag( $post_id, $post ){
    
    /* this is the array that contains the category to exclude */
    $tag_slugs_to_exclude = array( 'exclude' );
    
    if ( 'publish' != $post->post_status )
    return false;
    
    $post_tags = get_the_tags( $post_id );
    $in = false;
    
    if( !empty( $post_tags ) ) {
    
    foreach ( $post_tags as $post_tag ) {
    if( in_array( $post_tag->slug, $tag_slugs_to_exclude ) )
    $in = true;
    
    }
    
    /* if the post has at least one excluded tag, then we remove the BuddyPress hook that records an activity */
    if( $in )
    remove_action( 'save_post', 'bp_blogs_record_post', 10, 2 );
    
    }
    
    }
    
    add_action( 'save_post', 'do_not_record_this_tag', 9, 2 );

    if you prefer id then replace the tag slugs by ids in the array $tag_slugs_to_exclude and replace $post_tag->slug by $post_tag->term_id

    #30084
    Sergio De Falco
    Participant

    Hi people,

    I’m wondering why BP doesn’t store the master image of the uploaded avatar.
    Maybe would be useful to store it, like on WP for the uploaded images. If the user uploads an avatar then you cannot increase the avatar size, because you don’t have the master image anymore. Instead, like on WordPress, the admin maybe able to rebuild all the images in order to represent the new image sizes.

    #136278
    Anonymous User
    Inactive

    Hello @tgoedde

    If you’re using the theme BP Default, it’s quite easy actually. As this theme supports custom-header, you can simply edit the BuddyPress pages (Activity, register, groups, forum… and so on) in which you want to add a custom header.

    I just tested this in my activity page.
    1/ Edit the page in WordPress backend
    2/ Use the media button to select your photo, it must have at least a width of 1250px (if under, the pic won’t show)
    3/ Upload and choose not to insert but to use as featured image. Once done you can close the thick box window.
    4/ you’ll see in the edit page / the featured image box at the bottom right with your uploaded image shrinked.
    5/ Save the page. And you’re done ;)

    Repeat these steps for each BuddyPress template you want to add a custom header to.

    Paul Wong-Gibbs
    Keymaster
    #136275
    Paul Wong-Gibbs
    Keymaster
    jaemaz
    Participant

    Hey all…

    I have been looking through the forum for a couple of hours looking for a solution, and am posting now as a last resort.

    I just installed BuddyPress as one site in a subdomain on a two site multisite implementation, and I am getting the following message: “…active BuddyPress Components do not have associated WordPress Pages: Search Page.” Besides this message, everything else seems to be working properly.

    Can anyone explain what this means? I would understand if I received this message and it referenced one of the PAGES setup tab, but since the Search page isn’t on that list of components, I don’t know how to conduct the repair it is asking for.

    Specs are:
    > BuddyPress 1.5.6
    > WordPress 3.4
    > Child Theme of Custom Community Pro 0.7.1

    Thanks!

    #136257
    Roger Coathup
    Participant

    It’s a WordPress Multisite question, not a BuddyPress one – this function would be a starting point: it returns all the blogs a user has access to:

    get_blogs_of_user( )

    #136252

    In reply to: Plugin Question

    @mercime
    Participant

    WordPress plugins which are supposed to be BuddyPress-ready are tagged “buddypress” by respective plugin developers – https://wordpress.org/extend/plugins/tags/buddypress
    Double-check if plugin’s been updated for latest versions of BP at least

    To make your WP theme compatible with BP, you need to install BP Template Pack plugin and go through Appearance > BP compatibility process then align HTML structure.

    Yes, we are aware of the bug for the plugin’s pagination in this site.

Viewing 25 results - 17,801 through 17,825 (of 32,678 total)
Skip to toolbar