Search Results for 'wordpress'
-
Search Results
-
Hi folks.
I’d like to have BP user xprofiles active only for a selected group of WordPress users.
Now, all my WP users will get a BP profile and will be displayed in the member page as soon as they login.
Is there a way to change this and let the admin choose who are BP members and who are just WP users?
Thanks!
I have installed BP on one of my site. But I get this error
The following active BuddyPress Components do not have associated WordPress Pages: Activity Streams, User Groups, Members
If I assign pages to them. They are not working. Also this is my site (alhelp.org) Please help me.
BP version-1.6.4
WP version-latestHello,
I’m trying to do a few things and having difficulty putting together plugins that will accomplish them.I’d like to hide everything from non-members except for Registration and Login functions. Registration is a page, but Login doesn’t seem to be? I can lock down the site pretty good, but no plugins that restrict people to the login screen will also allow them to see the Registration page. So, if they are not registers users, they have no way to join.
Is there a way to display Registration and Login together on one actual page that will:
Be my “home” page…
Be the only page available to logged-out members…
Be the target of redirection for anyone that tries to get to other pages directly via URL…??
Thank you all,
MYMWordPress version 3.5.1
BuddyPress 1.7
http://comms.asurvivalplan.comWordPress 3.5.1
BuddyPress 1.6.4The topic tells it all đ — I’ve installed BuddyPress but there’s no option for Admin to create forums or groups.
I’m using a Genesis framework and it requires the Genesis Connect Plugin for BuddyPress. This combination has worked fine for me in the past. HOWEVER on this new site I’m building — I’ve also installed the WPMU Dashboard. That’s the only thing I know I’ve done differently.
Please help me. thanks!
WordPress 3.5.1
BuddyPress 1.6.4The topic tells it all đ — I’ve installed BuddyPress but there’s no option for Admin to create forums or groups.
I’m using a Genesis framework and it requires the Genesis Connect Plugin for BuddyPress. This combination has worked fine for me in the past. HOWEVER on this new site I’m building — I’ve also installed the WPMU Dashboard. That’s the only thing I know I’ve done differently.
Please help me. thanks!
WP Install â 3.5.1
BP Install â 1.7 Beta
WPMU Enabled (Sub-folders) â BPMB Enabled
Domain Mapping Configured.
Network Root =Â http://www.cyber-networks.co.uk
Mapped Sub =Â http://cyber-chat.co.uk
Current BP Theme: Dynamix â http://themeforest.net/item/dynamix-premium-wordpress-theme/113901
Mapped sub – cyber-chat.co.uk  is managing to auto post BP updates (New avatar insertion etc) But I can not manually post any activity. I can also not delete any activity.
I have been speaking to Ron Rennick via the WordPress MU Domain Mapping support pages in relation to the current ajax issue I’m having.
To explain: Naturally the cyber-networks.co.uk Page source is showing the ajax url as http://cyber-networks.co.uk/wp-admin/admin-ajax.php
The problem being is that my mapped domains also have the same url within their source. Default browser security is therefore blocking BP posting within these mapped domains!
Ron suggested that I switch off Domain mapping plugin option -âRedirect administration pages to siteâs original domainâ
I’ve tried this but it resolves nothing and Ron seems to think that this ‘may’ be down to Buddypress, Quote; â Possibly the ajax url is being changed by BP to go back to the main siteâ ?
If this is the case, then I canât ever see a need for the enable bp multiblog function as it would surely fail in most case scenarios similar to my own?
I would truly appreciate all and any comments/replies that may further my progression with this build.Â
Thank you
Topic: Group site notification
Hello,
Im using the latest version of WordPress and Buddypress. I can’t find the option to activate the group site notification (does it exist?) so when some member of a particular group post something inside of it the other users get notified in the site notification system (not by email) How to make it work?
Thank you
I keep getting a redirect loop for the member profile on Buddypress. Here’s a link to the site: http://proudconservative.com
I tried switching to the buddypress default theme, deactivating all plugs, deleting buddypress, deleting buddypress tables from the database, and everything else I can think of and it is still happening.
This is the first time I have had this issue with buddypress. I really do not understand why this is happening.
1. Which version of WordPress are you running? WordPress 3.5.1.
2. Did you install WordPress as a directory or subdomain install? Directory
3. If a directory install, is it in root or in a subdirectory? Subdirectory
4. Did you upgrade from a previous version of WordPress? If so, from which version? No
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? Yes
6. Which version of BP are you running? Version 1.6.4
7. Did you upgraded from a previous version of BP? If so, from which version? No
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes – Contact Form 7, WooCommerce, Google Adsense. I have also tried with all plugins deactivated and I am still having the same problem.
9. Are you using the standard BuddyPress themes or customized themes? A customized theme built for buddypress and Woocommerce integration. Tersus. I have also tried using the dafault Buddypress them and the issue persists – no matter what.
10. Have you modified the core files in any way? No.
11. Do you have any custom functions in bp-custom.php? No.
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? BBpress installed automatically when I installed the forums. The forums are working fine.
13. Please provide a list of any errors in your serverâs log files.
14. Which company provides your hosting? 1and1
15. Is your server running Windows, or if Linux; Apache, nginx or something else? LinuxWP 3.5.1 BP 1.6.4 http://www.gumpolen.com
It would be great if BuddyPress would provide the option for the admin to enable “Open in new window” when a member clicks on another member’s sub site link — or when the Admin clicks on a sub site link. I don’t like using my browser back button, and sometimes I just want to look at something and not have to navigate back to my own site. This feature would allow members to easily have two sites/blogs open at the same time.
I don’t think you ever want someone to leave your site, and if it means another window opening to keep them at your site, so be it.
This could be a setting apart from WordPress itself. BuddyPress already personalizes WordPress, so how about an Admin feature to choose how windows open when any possible link would mean a person leaving the home site?
This is just an idea.
Thanks,
Kevin
Hi,
I want to use wordpress username in every field of my site instead of buddypress’ “Name”. Â Is it possible to disable the whole name system and use Username instead or to hide Name from every possible field and display Username instead.
I’m totally newbie to this whole coding stuff, found a code and managed to hide “Name” field in profile edit but this is only preventing from changing it. I need to disable it or change it’s usage to Username. (in Activity feed, mentions & comments at least)
—
In case anybody wonders what did I use for hiding Name from profile edit section;
`add_filter(“xprofile_group_fields”,”bpdev_filter_profile_fields_by_usertype”,10,2);function bpdev_filter_profile_fields_by_usertype($fields,$group_id){
//only disable these fields on edit page
if(!bp_is_profile_edit())
return $fields;
//please change it with the name of fields you don’t want to allow editing
$field_to_remove=array(“Name”,””);
$count=count($fields);
$flds=array();
for($i=0;$iname,$field_to_remove))
unset($fields[$i]);
else
$flds[]=$fields[$i];//doh, I did not remember a way to reset the index, so creating a new array
}
return $flds;`
Added this code to bp-members-functions.phpTopic: Limiting My Blog Content
Hi, I’m have WordPress 3.5.1 and using Buddypress Default Theme 1.6.4. Some of my blog content can run lengthy. I’m trying to find a way to limit the amount of characters for my blogs and allow a visitor to click a “read more” link but can’t seem to find how to do it with my theme. I noticed some themes have them. How can I do this without switching themes?
Topic: Buddypress Pages Problem
I have this site http://www.inandaboutdubai.com. Yesterday i installed buddypress on it.. Solved all the related issues but there seem to be some issues related to the page section. I have set this page for registration : http://www.inandaboutdubai.com/register But for some reason it bounces back to the home page. I dont know where exactly the problem lies. WordPress/ my theme newsetter or buddypress
Topic: Avatar issues ???!!??
Hello Everyone..
I have created a multisite, multiblog platform using BuddyPress that allows my users to create their own blogs on my network..
However I can’t seem to get the Avatars to carry over from the main blog (Where they register)
They also does not seem to be any place to update your avatar on the new blogs ???
Can anyone help please….. really stumped on this!!
Kind Regards
James
WordPress Version 3.5.1
BuddyPress Version 1.6.4
http://fitnessblogger.netHello, I’m hoping someone can help me or point me in the right direction. I am new to Buddypress (1.6.4) and WordPress (3.5.1). I was wondering if there is anyway in Buddypress to limit who a user can become friends with. For instance, a professor can be friends with anyone, students can be friends with each other and professors, and parents can only be friends with their child and professors. I have been doing quite a bit of research but haven’t found anything yet. Thanks in advance!