Search Results for 'wordpress'
-
AuthorSearch Results
-
April 26, 2017 at 6:22 pm #265629
In reply to: Ephemeral Messages
Henry Wright
ModeratorYou’d need to build a custom solution because I don’t think there’s anything available, at least for BuddyPress.
Take a look at the WordPress Transients API. That might help.
April 25, 2017 at 12:20 pm #265616In reply to: Changing Editing Activation Email
eslunite
Participantto change the email wordpress@ use
Easy WP SMTP plugin
April 25, 2017 at 11:57 am #265615Henry Wright
ModeratorDid you move WordPress? If so, check out the Moving WordPress article.
April 25, 2017 at 11:32 am #265614In reply to: Best gallery to use in BP
Henry Wright
ModeratorThere are a few to choose from. I haven’t tried lately myself but these seem to be popular:
April 25, 2017 at 11:27 am #265613In reply to: Solved – Customize the login page of wordpress
Henry Wright
ModeratorIf you’re having problems with Theme My Login, try Customizing the Login Form instead.
April 25, 2017 at 8:43 am #265611danbp
ParticipantSorry for you, but you have to debug.
Also, activate a default Twenty theme and deactivate all plugins exxcept BP.
WP+BP should work correctly with a Twenty theme before activating any other plugin or custom theme.If you use some custom code in your theme (or child theme), deactivate it provisory. Same thing if you use bp-custom.php
https://codex.wordpress.org/Debugging_in_WordPress
Search also the forum as they are many related topics for debuging BP.
April 25, 2017 at 7:13 am #265608danbp
ParticipantHi,
WP’s toolbar is not part of BP, and not part of your theme. This bar belongs to WP.
I suggest that you don’t remove(or deactivate) the whole bar, but only remove any menu item belonging to WP, except the “howdy” menu where BP install his sub-menu items.
To do this, you have to use some custom functions related to wp_admin_bar class.
Use
$wp_admin_bar->add_nodeor$wp_admin_bar->remove_nodeCodex reference:
https://codex.wordpress.org/Function_Reference/remove_node…and a little tutorial, in case of!
April 25, 2017 at 2:03 am #265600zsauce
ParticipantThis is the bar and menu I am trying to get rid of:

While this is the bar I’m trying to maintain, but all of these options disappear when I hide the WordPress Admin Bar above:
April 24, 2017 at 12:08 pm #265580In reply to: Changing Editing Activation Email
giilour
Participantalso how to change who the email is sent from? at present its wordpress@
April 23, 2017 at 6:09 am #265567Marc
ParticipantHi Jeff,
Sorry I don’t remember, but keep in mind that wp-login and the password reset function of WordPress doesn’t get translated by WPML. The only way around is to use another login and password reset mechanism (that is compatible with WPML), most premium themes have that and certain plugins have it as well.
Best,
MarcApril 21, 2017 at 9:26 pm #265547In reply to: Using wp_mail and emails
Henry Wright
ModeratorYou can change the content type of WordPress emails using the
wp_mail_content_typefilter:add_filter( 'wp_mail_content_type', function( $content_type ) { $content_type = 'text/html'; return $content_type; } );April 20, 2017 at 7:12 pm #265524In reply to: verification email link needs https
r-a-y
KeymasterIf you’re talking about this specific instance where a user has registered a site during registration:
Then, I’ve added a fix for this here:
https://buddypress.trac.wordpress.org/attachment/ticket/7508/7508.01.patchApril 20, 2017 at 6:34 pm #265522In reply to: verification email link needs https
r-a-y
KeymasterYou should use HTTPS throughout your site if you want to force the email to use SSL links.
Or force HTTPS on individual pages like the registration page so activation email links will use SSL.
The other alternative is filtering the email tokens to use HTTPS:
https://buddypress.trac.wordpress.org/browser/tags/2.8.2/src/bp-core/bp-core-functions.php#L3120If you’re a WordPress developer, hook on to the
'bp_after_send_email_parse_args'filter and do checks against the'tokens'array key.For more info on the
'bp_after_X_parse_args'filter, see:
https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/April 20, 2017 at 6:25 pm #265521r-a-y
KeymasterThis is not a BuddyPress problem; this is a bbPress problem, which is scheduled to be fixed in bbPress 2.6.
See:
https://bbpress.trac.wordpress.org/ticket/2690Until then, you can manually apply the following change:
https://bbpress.trac.wordpress.org/changeset/5857April 20, 2017 at 4:57 pm #265517r-a-y
KeymasterI’ve created a report for this on our bug tracker here:
https://buddypress.trac.wordpress.org/ticket/7508Update – Here’s a fix:
https://buddypress.trac.wordpress.org/attachment/ticket/7508/7508.01.patchThis will be added for BP 2.9.
April 20, 2017 at 4:08 pm #265516In reply to: verification email link needs https
danbp
ParticipantHi,
if you already have an SSL certificate, you need to add a line of code to wp-config:
define ( 'FORCE_SSL_ADMIN' , true);
and to change the site permalinks: Dashboard > General and to add some redirection rules to your htaccess file.
More details here.April 20, 2017 at 3:39 pm #265514In reply to: Buddy Press plugin leads to 508 error. What to do?
danbp
ParticipantHi,
you need to install BuddyPress where your WordPress is installed.
Note that BuddyPress does not work on installations where you give WordPress its own directory.If WP is at the site (europsms.com, you install BP there.
If WP is in the sub directory (sms-landing), you install it there.You could also read the complete install guide if this is unclear.
April 19, 2017 at 10:57 pm #265497In reply to: Sorry, you are not allowed to access this page.
r-a-y
KeymasterIs BuddyPress network-activated or not?
If not, this bug exists if BuddyPress is only activated on one site instead of network-wide:
https://buddypress.trac.wordpress.org/ticket/7472If you are able to, try adding this fix to
bp-xprofile/bp-xprofile-admin.php:
https://buddypress.trac.wordpress.org/changeset/11520If you don’t want to modify the lines manually, you can replace the file with this:
https://raw.githubusercontent.com/buddypress/BuddyPress/master/src/bp-xprofile/bp-xprofile-admin.phpApril 18, 2017 at 3:11 pm #265464jomo
ParticipantHi, I didn’t have a chance to get back to this, but I remember seeing something on the WP codex about how to add columns to admin screens… if custom code is required then I’d probably do a custom solution rather than use Admin Columns.. so I could then give it back to the community… .. this should be core rather than depending on 3rd party paid component.
I mean in the same way that WordPress shows Posts column linking to Posts in the User screen /wp-admin/users.php I would expect that for sites which are mainly using bbPress and BuddyPress that the equivalent columns Forum posts, Activities, Group membership should be of interest to all..
If you have got anything that will help, please post it!
April 14, 2017 at 5:18 pm #265427In reply to: where is the register end point
r-a-y
KeymasterFor example i have the exact same contact form as the register page on the site so if i submit the form post data to site.com/register will it register?
The registration URL is whatever you have set in the WP “Pages” menu. Look for the “Register” page to double-check, but the default is
site.com/register.Did you try POSTing to
site.com/registerURL? If so, what happens?Basically how would i register a user from outside the site in code
You can just use
wp_insert_user()if you need to register a user into WordPress.If you want to use BP’s signup function, use
bp_core_signup_user().April 14, 2017 at 4:29 pm #265426In reply to: Privacy Help
Venutius
ModeratorIf you install https://wordpress.org/plugins/wpfront-user-role-editor/ you will find that you have the option to display menu items to logged in users only.
April 13, 2017 at 7:52 pm #265406r-a-y
KeymasterI think this is caused because we attempted to fix the upload button issue with the Microsoft Edge browser, but it affected mobile browsers as a result.
To keep track of this bug, see:
https://buddypress.trac.wordpress.org/ticket/7416April 10, 2017 at 6:47 pm #265355In reply to: Problems with special characters: é è ç ü etc
Henry Wright
ModeratorI believe
remove_accents(), viasanitize_user(), is converting those characters to ASCII. You could open a ticket for this on Trac?April 8, 2017 at 7:49 pm #265336In reply to: How to create a dynamic link to “my friends”
matopsiadm
ParticipantThank you, thank you 🙂 I have tried so many ways to point dynamically to a user’s profile in a url for custom links. I am very new to wordpress and buddypress.
April 6, 2017 at 10:53 pm #265297Henry Wright
Moderatorwp_trim_words() can do that. See this article
https://codex.wordpress.org/Function_Reference/wp_trim_words
-
AuthorSearch Results

