Search Results for 'buddypress'
-
AuthorSearch Results
-
October 8, 2013 at 11:54 pm #172504
In reply to: Using BuddyPress as a Professional Social Network
Henry
MemberBuddyPress with the help of the right plugins from the WordPress plugin repository (https://wordpress.org/plugins/) can do everything you’ve mentioned.
11. Projects: Members can start projects and invite other members to join (kind of groups)
This is the one point I’m not sure about off the top of my head. It may need some custom code as I’m not aware of a plugin that does this.
October 8, 2013 at 10:39 pm #172500In reply to: How can I change the text to make it literate?
SK
Participant@mercime Using Tortoise SVN.
Tried importing https://buddypress.svn.wordpress.org/trunk/ but getting
Error: POST of ‘/!svn/me’: 403 Forbidden (http://buddypress.trac.wordpress.org)
@idavidson I apologize for hijacking your thread.October 8, 2013 at 10:22 pm #172498coutain
ParticipantI’m also having the same issue. I even installed a fresh wp 3.6.1 and a fresh version of 1.8.1 with no other plugins.
Under BuddyPress pages this is no Register or Activate page available.
October 8, 2013 at 9:56 pm #172496Henry
Member@hnla apologies should have explained that a bit better – i’m not assuming, I think BP does the assuming. Take a look at the last line of Boone’s post:
BP Theme Authors: make sure your theme registers 'buddypress' support
October 8, 2013 at 6:19 pm #1724903rdaxis
ParticipantI think i spoke to soon about that working. In the front end the link looks good, but i had my own twitter account in place and so it looked like Twitter:(with my twitter name) when i would click that and thought it worked because i was already signed in.
Once i place a new twitter name in the profile, the front end looks right, “Twitter: chevrolet” just pulled one out of a hat, or any other twitter account, it goes right to my own profile or to twitter home page if not signed in.
So messing about i cam up with this ugly but working solution based on what was posted here.
it now bring the name in from the xprofile field into the url. Before it was grabbing a field from the wordpress profile.<?php if ( $string = xprofile_get_field_data( 'Twitter', get_the_author_meta('ID') ) ) { ?> <a href="https://twitter.com/<?php if ($string =xprofile_get_field_data( 'Twitter', get_the_author_meta('ID') ) ) { echo $string;} ?>" target="_blank">Twitter: <?php echo $string; ?></a> <?php } ?>October 8, 2013 at 6:02 pm #172489Hugo Ashmore
Participant@henrywright-1 Why are you choosing to work that way rather than running with theme compat template files? You do have a choice no way is right or wrong though if running the older style template approach you would need to have declared
add_theme_support( 'buddypress' );to ensure js/ajax unlinked, there is an issue with this though in that BP tries to get this value too early so fails to bail out of the theme compat class, so it needs to be positioned outside of a hook such as ‘after_setup_theme’ to be run early enough for bp.October 8, 2013 at 3:26 pm #172484Hugo Ashmore
ParticipantWell for starters kill any plugins that might interfere with a registration process e.g facebook login ones – to test issues it’s always the instruction to disable all plugins working them back in until problem one is found.
Other than that it’s hard to say there’s too little information. As far as BP 1.8.1 goes on a trunk install I appear to have no issues registering.
October 8, 2013 at 1:02 pm #172475jamesdonegan
ParticipantThank you for the response. It didn’t fix my problem, though. Registration still not working, unless the user registers with Facebook.
http://finisjhung.com/Streaming/create-an-account
HELP!?
October 8, 2013 at 12:53 pm #172474In reply to: Limit the maximum images uploaded
SK
ParticipantIโm using these plugins combined: bbPress, BuddyPress and BuddyPress Media (rtMedia).
I wish that the maximum image files uploaded in โalbumโ (bp-album, I guess) …
I think itโs not from rtMedia
It’s getting a bit confusing. You need to figure out which plugin is creating the album that you want to modify and then you need to ask that plugin’s author for support. BuddyPress does not provide any media capabilities by default, though that has been requested.
P.S. rtMedia (previously known as BuddyPress Media) does create a Media tab. And it creates various albums under that tab.
October 8, 2013 at 12:15 pm #172470In reply to: Limit the maximum images uploaded
kakilo
ParticipantHi @sooskriszta,
I’m using these plugins combined: bbPress, BuddyPress and BuddyPress Media (rtMedia).
I am also using a plugin to control membership access (PaidMemberShipPro), which give me codes to restrict content to only allowed users groups.In that case, I wish that the maximum image files uploaded in ‘album’ (bp-album, I guess) defined to a default value if the user is not from the member group allowed to have a higher number of images uploaded. (I know how to do that, but where can I define the maximum number of pics that a user can upload? (ike the max public images, max private images…)
Thanks in advance,
Appreciate any help.October 8, 2013 at 10:44 am #172469In reply to: Members page visibility
pelasO
ParticipantIt was as simple as turn the restrict access to BuddyPress components to members only off located in the Cbox Theme Options.
Once I identify the problem, I just add what I want to the maybe_redirect() in class.php function and problem solved.
OLE MIS WEVOS PELUDOS!!October 8, 2013 at 6:09 am #172461October 8, 2013 at 5:41 am #1724593rdaxis
ParticipantMuch thanks to you @bphelp. That bit of code worked like clockwork. Yeah, i see the issue with having the wrong name in the field, but i will have instruction to double check and hopefully the authors will take note.
October 8, 2013 at 5:02 am #172458In reply to: Cannot Get Registration page using headway theme
@mercime
Participantclosing this duplicate of https://buddypress.org/support/topic/registration-page-issues/
October 8, 2013 at 4:40 am #172456bp-help
Participant@3rdaxis
The problem is it would require that the username the user entered in the profile field to match their twitter id exactly. If not it may take them to god knows where. Anyway, this is untested but you can give it a whirl!<?php if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?> <a href="https://twitter.com/<?php echo get_the_author_meta('display_name'); ?>" target="_blank">Twitter: <?php echo $string; ?></a> <?php } ?>October 8, 2013 at 4:18 am #1724513rdaxis
ParticipantThanks for your reply @bphelp I tried both codes and the second works to a point at where i need to be.
The thing im trying to do is call the xprofile field which would be where the author would place their twitter, google+ or facebook id and show it as a link.
The second code you gave me give the result Twitter:(and the user name i placed in the xprofile field) and as you would know takes me to twitter but not to the profile.
Is there a way that you know that would replace “username” with that actual username?
much thanks.
October 8, 2013 at 3:56 am #172450bp-help
ParticipantOr:
<?php if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?> <a href="https://twitter.com/USERNAME" target="_blank">Twitter: <?php echo $string; ?></a> <?php } ?>October 8, 2013 at 3:36 am #172449bp-help
Participant@3rdaxis
Untested but maybe something like this would work, in this example you would need to change “USERNAME” at the end of the URL to the persons twitter name. To get other URL’s to work you should just change the URL etc.<?php if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?> <a href="https://twitter.com/USERNAME" target="_blank" alt="twitter"><?php echo $string; ?></a> <?php } ?>As @henrywright-1 already stated “Replace BIO with your field name.”
October 8, 2013 at 2:54 am #1724463rdaxis
ParticipantI really appreciate your help. Thats the first bit of code that has worked to display the xprofile fields and iv tried allot.
Im not sure if you could help me with this one aspect. I would like to also call something like google+, twitter or facebook links that I created in the xprofile fields.
I can call those fields with the code posted here, but im wondering if @henrywright-1 or anybody stopping by this post could help with the code needed to make the called data as a link with alt text so it looks like Twitter, Google +, Facebook.
Thanks for any help or pointers
October 8, 2013 at 1:45 am #172444protechs2
ParticipantThis was all that showed on the Theme Check run:
Notice: Undefined index: page in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 15
Notice: register_widget_control [x 7 exact occurrences of this line] & register_sidebar_widget [x 6 exact occurrences of this line] is deprecated since version 2.8! Use wp_register_widget_control() instead. in /home/xyz/public_html/blog/wp-includes/functions.php on line 2900
Notice: Use of undefined constant ace – assumed ‘ace’ in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 310
Notice: Use of undefined constant ace – assumed ‘ace’ in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 310
Deprecated: Assigning the return value of new by reference is deprecated in /home/xyz/public_html/blog/wp-content/plugins/bp-moderation/classes/bpModeration.php on line 118
Notice: Undefined index: action in /home/xyz/public_html/blog/wp-content/themes/fusion/functions.php on line 120
Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /home/xyz/public_html/blog/wp-includes/functions.php on line 2998
————–I don’t know which one would cause the problem in BuddyPress Users/Friends page.
October 8, 2013 at 1:04 am #172443In reply to: How can I change the text to make it literate?
@mercime
Participant@sooskriszta https://make.wordpress.org/core/handbook/submitting-a-patch/
instead of downloading https://core.svn.wordpress.org/trunk/ via SVN, you’d need to download via SVN client https://buddypress.svn.wordpress.org/trunk/Then after you’ve tested the changes you’ve made in your test installation, log in and create a new ticket in https://buddypress.trac.wordpress.org/ and upload that patch.
October 8, 2013 at 12:50 am #172442In reply to: Compatible Forums that work with Buddypress
October 8, 2013 at 12:39 am #172440In reply to: [Resolved] How to redirect bp users to activity page
tse11
ParticipantGot it working now, thanks anyway. In case anyone is wondering how, I changed the log in to /wp-admin instead of /wp-login.php in the user email when a user creates a new site and this page will not redirect anyone to a buddypress page.
October 8, 2013 at 12:23 am #172439In reply to: Headway theme – Registration page and other issues
@mercime
Participant@politiclear Since we don’t have access to this premium theme, pending the response of someone who has used Headway theme with BuddyPress, I recommend that have you check Headway theme forums if the theme is compatible with BuddyPress and/or if you need any modifications in the theme to make it compatible with BuddyPress. I have changed the title of this post to include Headway.
October 7, 2013 at 11:14 pm #172437In reply to: [Resolved] How to redirect bp users to activity page
tse11
ParticipantMy site is not yet live, @bphelp I am using a post page as homepage. I don’t know if this will help but as I stated earlier, my site is an MU and I am using sub-domains. So when a user logs in from theirsitename.mysite.com/wp-login.php with any redirect codes I’m using, they too are redirected to a buddypress page which is confusing for the user since they are logging in to edit their site. I basically just need a condition that works properly where I can add if_user_is_admin DON’T redirect or if_user_is on subdomain login page don’t redirect. ๐
-
AuthorSearch Results