Search Results for 'wordpress'
-
AuthorSearch Results
-
April 5, 2017 at 6:01 pm #265273
In reply to: BP CSS not loaded in header
Henry Wright
Moderatorwp_add_inline_style()is likely used to add the inline styling. Try searching for instances of that in Twenty Fifteen.Ref https://codex.wordpress.org/Function_Reference/wp_add_inline_style
April 5, 2017 at 6:55 am #265257In reply to: Adding Email functionality in buddypress
danbp
ParticipantThere is nothing like that, and to be honest, it wouldn’t be a great idea to send an email to each profile visitor. How could you be sure that the visitor is a site member and not a robot ? And what will happen if a profile is visited 500 times by a same visitor ? Do you send 500 mails to the profile owner ? In brief, it is not simple to handle. And imho, it is not here that you will get the best answer for such a complicated tool…
That said you have a few plugins who make similar things:
https://buddydev.com/plugins/recent-visitors-for-buddypress-profile/ (premium)April 4, 2017 at 5:23 pm #265244In reply to: Adding a full buddypress page to a new page
r-a-y
KeymasterWhen you set up BuddyPress, you have the option to map BuddyPress components to WordPress pages:
So basically, if you mapped the Members Directory page to
example.com/members, you can go to your WordPress Pages menu in the admin dashboard, find your Members Directory page and rename the slug frommembersto whatever you wanted likepeople.April 4, 2017 at 12:35 am #265211In reply to: Adding a full buddypress page to a new page
r-a-y
Keymaster> Can i call a complete bubbypress page on to a new page ?
Short answer is no.
You can however, change the slug of a BuddyPress page via the WP admin’s “Pages” menu. If you can change the location of the slug, this should satisfy most use-cases.
> with php maybe? or create a shortcode?
Yes, anything is possible with code! It depends what you want to show though.
There are some plugins out there that show BP content via shortcodes. One of them is this one:
April 3, 2017 at 9:19 pm #265198In reply to: Login page dont responsive
r-a-y
KeymasterIt’s responsive for WordPress default themes like one of the Twenty themes.
@hnla – Perhaps we should extend responsive support for the registration screen to bp-legacy / bp-nouveau directly instead. I know breakpoints will be an issue, but we could probably settle on a width.April 3, 2017 at 2:49 pm #265184In reply to: Log In and Registration
David Cavins
KeymasterThe log-in page is a WordPress page. There is a guide on how to customize it:
https://codex.wordpress.org/Customizing_the_Login_FormThe registration page is created by BuddyPress and can be modified in many ways. You’ll need to understand theme compatibility and overriding templates:
So you could create your own copy of
buddypress/members/register.phpin your theme to make big changes, or potentially hook into the actionbp_before_register_pageto just add some html to top of the BP page.Best of luck.
April 3, 2017 at 2:32 pm #265181In reply to: Homepage not loading after Plugin Activation
David Cavins
KeymasterI believe that there are conflicts between BP and Paid Memberships Pro. If you activate BP and deactivate Paid Memberships, does the page load?
What does your debug log say? https://codex.wordpress.org/Debugging_in_WordPress
March 31, 2017 at 3:54 pm #265104In reply to: ?No Sidebar on Profile Page?
danbp
ParticipantHi,
BuddyPress pages are not ordinary WordPress pages. These pages should be blank, without any template assigned. BP pages exist only for internal purpose and to have their own slug (and the benefit of permalinks). The content is always dynamic and change depending the context.
That is also the reason why you shouldn’t use a “page builder” for them untill you’re very comfortable with code and design.
If you need a full width output or a sidebar, you adjust that in your theme settings or preferences. You can easely do that with WP’s Customizer. Or course reading your theme documentation can also help.
If it is not possible that way, i recommand you use a child-theme, and add him any necessary part you’re actually missing. But ensure first that these parts are really missing !
BuddyPress comes with a few CSS rules who normally fit with any correctly coded theme. This means that it actually can be used with almost any existing theme.
BuddyPress has no sidebar
BuddyPress can be viewed on any existing device
BuddyPress fit to any screen size
This means that you have to adjust your theme first, and not BP.For more details, read from Codex
March 31, 2017 at 3:38 pm #265103In reply to: ONE word I can’t find/translate.. Please help?
danbp
ParticipantHi,
open your buddypress-nk_NO.po file with a text editor (notepad++ or so) and check you have a plural form for the untranslated string.
The’re several strings containing “members” with a count, but it will be easy to find if you search for “msgid_plural”.
At least, you should find something constructed like this:#: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:34 msgctxt "Group member count" msgid "%d member" msgid_plural "%d members" msgstr[0] "%d medlem" msgstr[1] "%d medlemmer"Again, note that it is only an example, you may find other strings containing “medlem” that you have eventually to adjust.
The important thing to control is the existence of “%d” and naturally, the presence of the plural form string in the translation.
If you still have trouble after controling/repairing/modifying, it could be possible that it is your theme. To ensure, do the same check in your theme translation.
Other thing to take in account
I’m not 100% sure, but so far i remember, the norvegian buddypress version is not completely translated.
Unfortunately, translate.wordpress.org is actually down and it is impossible to access the plugins translations at this time…What i expect is that you have an old po file, fully translated, but perhaps not with the most recent changes and updates, which could explain that even if you have plural forms in your translation, they won’t show up in some places.
For ex. because the plural code changed from %s (in your version) to %d or something like that.
To avoid this, you can download the most recent pot file and rename it to buddypress-nk_NO.po.
Then you rename YOUR current version to .pot(with a T), import it to the new file, and adjust or complete the missing strings.March 29, 2017 at 9:18 pm #265072mikeboltonca
ParticipantI’ve submitted an enhancement Trac here: https://buddypress.trac.wordpress.org/ticket/7489#ticket.
In the meantime, I’ve implemented the following hack to allow non-members to post on a group’s activity stream:
In/plugins/buddypress/bp-groups/bp-groups-functions.php, comment out lines 1215 and 1216.Original:
if ( !bp_current_user_can( 'bp_moderate' ) && !groups_is_user_member( $user_id, $group_id ) ) return false;Hacked:
//if ( !bp_current_user_can( 'bp_moderate' ) && !groups_is_user_member( $user_id, $group_id ) ) //return false;This removes the check for “Is this an admin or a group member?”, allowing anyone to post.
March 27, 2017 at 9:02 am #265014In reply to: register – log in /password email
Henry Wright
ModeratorIs WordPress or the plugin sending the email?
March 26, 2017 at 4:10 pm #265004In reply to: Resize member avatar error
snookerist
ParticipantThank you for advice!
I have created issue on Trac
https://buddypress.trac.wordpress.org/ticket/7484#ticketMarch 26, 2017 at 3:44 pm #265002In reply to: Resize member avatar error
Henry Wright
ModeratorMarch 24, 2017 at 3:07 pm #264983In reply to: 403 error when trying to delete user field
Henry Wright
ModeratorA 403 response usually indicates the resource you requested is forbidden. Something like this could happen for various reasons. The first place to start is your .htaccess file; check there’s nothing crazy going on inside that. A basic WP .htaccess file with no customisation should look like this:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressMarch 24, 2017 at 9:06 am #264976In reply to: Mediapress help
danbp
ParticipantHave you tried with another theme, like Twenty Fifteen ?
You wwill have more chance if you ask on the mediapress support.March 23, 2017 at 12:54 pm #264948In reply to: Add New Tab Private to each user
danbp
ParticipantCopy the whole content of that example file into bp-custom.php.
You can also transform it into a mu-plugin by just adding it some header information.
Once done, you can test the tabs and try to understand how they work. And then apply your own preference.
March 23, 2017 at 12:45 pm #264947In reply to: Automatically activate users added by administrator
danbp
ParticipantHi,
just in case you want some other options, consider these plugins.A premium one and a free one (wasn’t updated for a while but is probably still working).
Happy testing!
March 23, 2017 at 5:27 am #264937In reply to: Anyone Know How I can Get Buddypress version 2.8.1
March 22, 2017 at 6:28 pm #264913In reply to: Invalid Password
March 22, 2017 at 12:16 pm #264894Topic: Profile Visibility Not showing Dropdown
in forum How-to & TroubleshootingDroidism
ParticipantEnvironment:
PHP 7.0.3
Apache webserver
MySQL v5.5.49
WordPress v4.7.3
BuddyPress v2.8.2
Theme: Emmet Lite v1.5.0
Other plugin: noneHi,
I have installed BuddyPress on a fresh local install and used the Emmet Lite theme.
My problem is that when I create a user, login to the site using a completely different browser, with the cache purged and browsing history removed on start, and go to the user profile, I do not have the option to change the profile visibility. The dropdown for the Name is not showing at all.
Please see settings-profile-visibility on the BuddyPress codex.
When you view the image you will see “Base -> Name” and “Visibility -> Everyone” in a dropdown. In my install the “Visibility -> Name” is not a dropdown and not selectable attall.
Thanks in advance for helping me figure this one out.
March 22, 2017 at 10:44 am #264893In reply to: hide members list on opening directory
Henry Wright
ModeratorIn that case there’s a few options. You could try to find a plugin. If a plugin isn’t available you could suggest the feature. Alternatively you could hire a developer.
- https://en-gb.wordpress.org/plugins/
- https://wordpress.org/ideas/
- https://buddypress.org/support/forum/plugin-forums/bp-jobs-board/
Hope this helps!
March 21, 2017 at 1:32 pm #264871In reply to: Disable User to Create or Upload Media?
Henry Wright
ModeratorJust disallowing file uploads probably won’t work because BuddyMedia is likely to have extra functionality that needs to be disabled (such as albums)
Try asking this same question on their support forum:
March 21, 2017 at 12:56 pm #264867Henry Wright
ModeratorI’ve used the Ban Hammer plugin successfully for this in the past.
March 16, 2017 at 10:07 pm #264771In reply to: Profile matching feature
Venutius
ModeratorTake a look at https://wordpress.org/plugins/match-me-for-buddypress/ I think this is a good start.
March 16, 2017 at 6:31 pm #264767shanebp
ModeratorYou need to contact the creator of that plugin: buddypress-who-clicked-at-my-profile
-
AuthorSearch Results