Search Results for 'buddypress'
-
AuthorSearch Results
-
August 31, 2017 at 7:38 pm #267811
In reply to: Registration page not working in mobile devices
ulferlingsson
ParticipantI’m leaning now towards suspecting the register page in buddypress. It has a text, and below that a form element, and within the form there are two sections, div. These divs have their respective sizes but these sizes are not inherited (or whatever it’s called) up to the form, so the form appears with no vertical extension.
This leads to that when the right sidebar moves to a relative position, its div will cover the form, and it becomes impossible to click the fields to type.
August 31, 2017 at 6:56 pm #267810In reply to: Registration page not working in mobile devices
ulferlingsson
ParticipantI tried now generating a page with a form, and it displays properly. So I’m convinced the solution is by editing something in the buddypress code that generated the registration page.
August 31, 2017 at 12:14 am #267802In reply to: How to leave a review for the buyer
franckw
ParticipantHi
My website is multi vendor and use buddypress.
If a buyer click the vendor store name (Baby Shop) in this page: https://atbuz.com/product-category/heepster-good/media/, then the buyer will go to this page: https://atbuz.com/members/baby/ , the name “baby” is a vendor store name, but how the buyer can return on the vendor (baby shop) shop page with all products? Because I don’t find any button to let the buyer return to the vendor shop page.
Can you show me how to do or how to setting please?
Thank
Franck
August 30, 2017 at 9:09 pm #267797r-a-y
KeymasterYou mention forums specifically.
If that is the case, you should use bbPress conditional functions.
See this page for more details:
If you have more questions, post on the bbPress forums as BuddyPress is not bbPress:
– BuddyPress = community
– bbPress = forumsAugust 30, 2017 at 9:06 pm #267796darrylmit
ParticipantThank you for replying. I have 7,800 members on the active site. Are there pre-existing import script that parse my old database tables to match the BuddyPress DB schema? I am thinking of simply importing the (1)user name, (2)password, (3)associated email address and (4) profile photos and then asking each user to answer the slightly different questions on their profiles on the new BP site. Is there a plugin or some script that could help with that?
August 30, 2017 at 8:03 pm #267794In reply to: BP styles & .js files missing
r-a-y
Keymasteradd_theme_support( 'buddypress' )is for custom BuddyPress themes not relying on theme compatiblity.I would remove that line from your theme’s
functions.phpand then load a BuddyPress page to see if the default BP styles show up as expected.August 30, 2017 at 8:02 pm #267793r-a-y
KeymasterYour developer would need to write an import script to parse your old database tables to match the BuddyPress DB schema.
No way around it, unless you manually create each user and fill in each user’s data one-at-a-time. This would be painful if your existing site is quite large.
August 30, 2017 at 7:53 pm #267792r-a-y
KeymasterYou shouldn’t rely on PHP conditionals for CSS targeting.
Use your browser’s developer console and check the various
bodyCSS classes and then target the ones you want to use in your CSS stylesheet.Why not use something like?
body.forums .YOUR-SELECTOR {color:red !important;}If you must use PHP conditionals, use the ones that BuddyPress provides:
https://buddypress.trac.wordpress.org/browser/tags/2.9.1/src/bp-core/bp-core-template.php#L2034View the list of functions in that file for all the ones you can use.
August 29, 2017 at 9:46 pm #267775In reply to: bp-custom.php in folder?
Henry Wright
ModeratorHow are you trying to delete the buddypress folder?
August 29, 2017 at 7:36 pm #267772In reply to: bp-custom.php in folder?
Carsten Lund
Participantcopying the buddypress folder containing the members-loop.php to my child theme leaves my page blank.
And now the folder can’t be deleted from the child theme…“buddypress” could not be deleted, because an error (22126) occurred.
August 29, 2017 at 7:23 pm #267770In reply to: bp-custom.php in folder?
Carsten Lund
ParticipantI mean, the buddypress folder in bp-templates/bp-legacy
August 29, 2017 at 7:15 pm #267768In reply to: bp-custom.php in folder?
Carsten Lund
ParticipantCopy, and at the same time leave the original buddypress folder under plugins?
August 29, 2017 at 7:00 pm #267767In reply to: bp-custom.php in folder?
Henry Wright
ModeratorYou can find all of the templates in a buddypress folder here: bp-templates/bp-legacy.
Step 1. Copy the buddypress folder to your theme. You should then have something that looks like this: wp-content/themes/your-theme/buddypress
Step 2. Edit the files inside the buddypress folder.August 29, 2017 at 1:51 pm #267764In reply to: bp-custom.php in folder?
Carsten Lund
ParticipantThanks, I have read the page about Template Hierarchy, can see this is very complex, at least to me.
I looked to the buddypress directory which looks different:
wp-content > plugins < buddypress > bp-members > ?
members_loop.php does not exist, is this aam I in the wrong directory?
I have tried to ad a buddypress.php file to both my theme and child theme directory, but this will prevent my site from loading?
August 29, 2017 at 12:58 pm #267761In reply to: bp-custom.php in folder?
Henry Wright
ModeratorWhich template are you referring to in 1.?
Check out the Template Hierarchy article. The file you’d need to copy and then modify is buddypress/members/members-loop.php.
can both code snippets be placed either in functions.php or bp-custom.php?
2 can but 1 isn’t a code snippet (you’re copying and then modifying a file).
August 29, 2017 at 11:47 am #267760In reply to: bp-custom.php in folder?
Carsten Lund
ParticipantI am looking at the thread “Adding profile fields to members directory”
https://buddypress.org/support/topic/adding-profile-fields-to-members-directory/You wrote:
There’s 2 ways of doing this.
1. You could modify the members-loop template (see the BuddyPress Template Hierarchy for details on how that’s done). See here. You would just add bp_member_profile_data( ‘field=the field name here’ ); to the template.
2. Add this to your theme’s functions.php file:
function add_info_to_members_loop() {
echo bp_get_member_profile_data( ‘field=the field name here’ );
}
add_action( ‘bp_directory_members_item’, ‘add_info_to_members_loop’ );Which template are you referring to in 1.?
can both code snippets be placed either in functions.php or bp-custom.php?August 29, 2017 at 9:07 am #267750In reply to: The post has disappeared. Please help me.
mika69400
ParticipantHello,
I have the same problem as you. Here is my message:
It is incomprehensible that no solution is found …
August 29, 2017 at 9:02 am #267749In reply to: Error! User gets deleted from database
mika69400
ParticipantHello,
I have the same problem as you. Here is my message:
It is incomprehensible that no solution is found …
August 28, 2017 at 2:15 am #267725In reply to: Username URL
ezekielloves
ParticipantYes, fortunately BP does provide a one-line solution!
add_filter( 'bp_core_enable_root_profiles', '__return_true' );Thanks @modemlooper
https://buddypress.org/support/topic/dynamic-urls-for-buddypress-user-profiles-friends-etc/August 26, 2017 at 11:49 am #267715In reply to: registration page styling
Henry Wright
ModeratorYou can edit the layout of the registration page. buddypress/members/index-register.php is the template you’ll need to edit. See the Template Hierarchy article for more information.
August 25, 2017 at 2:56 pm #267710In reply to: registration page styling
ghosting4u
ParticipantI have the same problem with the registration page. It’s unusable … an absolutely embarrassment if you look at screen capture of the desktop layout:
https://image.prntscr.com/image/10859QPiSTaGvw7pDQg9hw.png
and the tablet layout:
https://image.prntscr.com/image/wGzGFTgOTDeq01OxaAbGbQ.png
I am running on Divi theme, and there is no way that I can use Divi theme to edit the layout of the registration page because it’s done at the backend of the BuddyPress plugin.
Is there a plugin out there that can resolve this ?
Regards.
August 25, 2017 at 1:20 pm #267708In reply to: How to hide / remove the General tab under Settings
lenasterg
ParticipantHi. I made a minor change in the code @danbp suggests (basically the $args[‘subnav_slug’] and now I believe it works as expected.
So I guess it’s not a BuddyPress bug.Please, try the following
function bpex_change_profile_settings_default_tab() { if( bp_is_active( 'xprofile' ) ) : $access = bp_core_can_edit_settings(); $slug = bp_get_settings_slug(); $args = array( 'parent_slug' => $slug, 'subnav_slug' => 'notifications', 'screen_function' => 'bp_settings_screen_notification', 'user_has_access' => $access ); bp_core_new_nav_default( $args ); endif; } add_action( 'bp_actions', 'bpex_change_profile_settings_default_tab' ); function bpex_remove_general_item_on_usermenu() { global $wp_admin_bar; if ( bp_use_wp_admin_bar() ) { $wp_admin_bar->remove_node( 'my-account-settings-general' ); } } add_action( 'wp_before_admin_bar_render', 'bpex_remove_general_item_on_usermenu' ); function bpex_remove_profile_settings_general_tab() { if( bp_is_active( 'xprofile' ) ) : bp_core_remove_subnav_item( 'settings', 'general' ); endif; } add_action( 'bp_actions', 'bpex_remove_profile_settings_general_tab' );August 24, 2017 at 12:56 pm #267692In reply to: There was a problem cropping your profile photo.
press786
ParticipantI am still facing this issue, even after giving all the permission & uploading an image with a small name.
Using
Buddypress 2.8.2
wordpress 4.7.5
Please provide a resolution to this, I want to have an upload avatar option in the register page.
I am using “Buddypress avatar upload ajax” plugin for this.August 23, 2017 at 10:14 pm #267685In reply to: Seeking Solution
shanebp
ModeratorbbPress is the only real option for forums.
Depending on what features you need, this may suffice: BuddyPress Simple Events
You can also get it here: PhiloPress – BuddyPress Simple Events
August 23, 2017 at 11:04 am #267667In reply to: error after message customization on activate.php
Henry Wright
ModeratorThe following code won’t cause the parse error:
<p><?php printf( __( 'Your account was activated successfully! You can now log in on the sidebar with the username and password you provided when you signed up.', 'your-theme-domain' ), wp_login_url( bp_get_root_domain() ) ); ?></p>Parse error: syntax error, unexpected ‘else’ (T_ELSE) in /home/admin/public_html/wp-content/themes/Divi-Child/buddypress/members/activate.php on line 47
This is referring to an
elsestatement on line 47 of activate.php. What do you have on line 47? -
AuthorSearch Results