Search Results for 'wordpress'
-
Search Results
-
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?
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.
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 -> updateadd_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 -> updateif(!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
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
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?Topic: BP avatar master
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.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.1Thanks!

