Search Results for 'wordpress'
-
Search Results
-
Am using wordpress 3.5.1 and buddypress 1.7 on windows 8.
I installed the buddypress alongside bbpress to manage my groups.. When i visit site upon the design and click on my name as an admin, i get an erro(page cannot be found)do i have to install a plugin for members to upload picture for their profile. Am making it a social network for my college. Please help me.
How do i show the profile picture of a member upon login?Hello all,
I have been setting up a Multisite network for sometime now, and was recently waiting for BP 1.7 final to be released so I can have social networking for all of my subdomain sites. Before installing the final version I tested the Beta on a “sandbox” which exactly replicates the main network I will be putting BP on.
Using:
Wordpress 3.5.1
BP 1.7
BP Multi Network
BBPressHere is the problem:
Once installing BP 1.7 final on my main site and network activating it, everything seems to work fine except I am not seeing the BP tables for individual subdomains. Hopefully this line for my error_log will give you an idea of the issue I am having:
[11-Apr-2013 12:12:05 UTC] WordPress database error Table ‘guild_wrdp1.wp_3_bp_activity’ doesn’t exist for query SELECT a.*, u.user_email, u.user_nicename, u.user_login, u.display_name FROM wp_3_bp_activity a LEFT JOIN wp_users u ON a.user_id = u.ID WHERE a.is_spam = 0 AND a.hide_sitewide = 0 AND a.type != ‘activity_comment’ ORDER BY a.date_recorded DESC LIMIT 0, 20 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/WoWTheme3/page.php’), get_template_part, locate_template, load_template, require(‘/themes/WoWTheme3/content-page.php’), theme_get_content, the_content, apply_filters(‘the_content’), call_user_func_array, bp_replace_the_content, apply_filters(‘bp_replace_the_content’), call_user_func_array, BP_Activity_Theme_Compat->directory_content, bp_buffer_template_part, bp_get_template_part, bp_locate_template, load_template, require(‘/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/index.php’), bp_get_template_part, bp_locate_template, load_template, require(‘/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/activity-loop.php’), bp_has_activities, BP_Activity_Template->__construct, bp_activity_get, BP_Activity_Activity::get
One thing to note is that the entire network was setup BEFORE installing BP 1.7. I only have 1 subdomain right now that I am using as a template. I even tried creating a new subdomain and the tables were still not created. Any ideas? Thanks in advance!
Hi, I love the new BuddyPress 1.7 and the upgrade went smoothly with no issues at all. 🙂
The Groups options screen in WP-Admin is a great feature and makes things so much easier to administer.
I noticed, however, that my users with the “Editor” role can’t access it. The only way I’ve been able to allow them access is by using a role editor to enable “Manage Options” for them, however that gives them a bit too much power (i.e. they can also get into all the WordPress options).
Is there anything you can suggest to allow other roles access to the new Groups screen, other than the Admin user?
Mike
Hello.
I got problem during test buddypress with my iPhone and iPad.
All ‘buddypress menu has submenu’ in toolbar don’t work on iPhone and iPad. ‘User account menus( Edit My Profile, Log Out) work. but buddypress menus (Activity, Sites, Profiles, Forums…) don’t work. I expected to see 3rd level menu, but when I touch those links nothing happens. I tested with my site using wordpress 3.5.1 and buddypress 1.7. To be sure, I tested with this site (buddypress.org), and I got same result. When I Press those menu for a while and choose ‘open in a new tap’, It works. but if i choose just ‘open’, it doesn’t work. I searched this issue here and google, but I couldn’t find any article…. Is there anybody know about this?Topic: Customization question
Hello.
I installed the BP Theme Pack, but I would like to customize it further to my needs.1.) Is it possible to install the theme pack directly to my theme, so it remains within my theme folder?
2.) Is it possible (I’m not sure if this is a wordpress or buddypress question itself) to have an external process that runs and inputs data directly into the users database? I want the profile icon and some of the custom fields I created to be syncronized with a site. I know I can run a process daily to do this, but which table fields should I take a look at in order to do this?
Thanks a lot!
I am using the most up to date version of WordPress and 1.7 for buddypress. I was curious if there was a way via a plugin or setting to relate a group to a tag or category? I am running a video game site and it would be cool if I created a group for game x that if an article was posted about game x and tagged with the name that it would link the article in the groups activity stream. Or if for example that if there was a Nintendo group and Nintendo category that it would link every post about Nintendo to it.
I see the group tags plugin but not sure this is quite what I’m looking for.
I’ve created a plugin to detect the user’s language and modify my site’s interface accordingly. The code uses several methods to determine language. The main method is to look at meta data associated with each post. I’d like to expand this functionality to the buddypress interface as well, but I’m having a very hard time of it. Here’s some code to illustrate my problem:
`
add_action( ‘bp_include’, ‘language_plugin_init’ ); # only load the plugin once buddypress is online because it uses a buddypress-specific functionfunction language_plugin_init() {add_action(‘wp’, ‘id_language’);} # if I hook earlier, I have trouble accessing the $post variable
function id_language() {
# get the page language from the post metadata. preferred method.
$GLOBALS[‘CustomInfo’] = get_post_custom();
if ($GLOBALS[‘Lang’] == ”) {$GLOBALS[‘Lang’] = $GLOBALS[‘CustomInfo’][‘Lang’][0];}# if that doesn’t work, try to get language information from buddypress userdata instead
if ($GLOBALS[‘Lang’] == ”) {
global $current_user;
get_currentuserinfo();
$user_id = $current_user->ID;
$alang = xprofile_get_field_data(“Language”, $user_id); # “Language” is a custom buddypress field I createdif ($alang == “English”) {$GLOBALS[‘Lang’] = ‘en-US’;}
else if ($alang == “Português”) {$GLOBALS[‘Lang’] = ‘pt-BR’;}
else if ($alang == “Español”) {$GLOBALS[‘Lang’] = ‘es-ES’;}
}# now look to a cookie if the above failed
if ($GLOBALS[‘Lang’] == ”) {if ($_COOKIE[‘Lang’] != ”) {$GLOBALS[‘Lang’] = $_COOKIE[‘Lang’];}}# now look at browser settings to try to discover the language
if ($GLOBALS[‘Lang’] == ”) {
$langid = substr($_SERVER[“HTTP_ACCEPT_LANGUAGE”],0,2);if ($langid == ‘en’) {$GLOBALS[‘Lang’] = ‘en-US’;}
if ($langid == ‘es’) {$GLOBALS[‘Lang’] = ‘es-ES’;}
if ($langid == ‘pt’) {$GLOBALS[‘Lang’] = ‘pt-BR’;}
}# now update the locale according to the identified language
function wpsx_redefine_locale($locale) {return str_replace(‘-‘,’_’,$GLOBALS[‘Lang’]);}
add_filter(‘locale’,’wpsx_redefine_locale’,10);load_default_textdomain(); # now that the locale has been set, this correctly changes the language for all of wordpress (admin bar)
#### HERE I WANT TO PUT CODE TO CHANGE THE BUDDYPRESS LANGUAGE ACCORDING TO THE VALUE OF $GLOBALS[‘Lang’] AS WELL!!!####
}
`Any help you could offer would be most appreciated. I’ve really bruised my brain trying to figure this out. Thanks.