Search Results for 'wordpress'
-
AuthorSearch Results
-
June 23, 2016 at 3:21 am #254998
In reply to: Cannot create groups
r-a-y
KeymasterTurn off
WP_DEBUGinwp-config.phpand you should be able to continue using the “Re-order Group Tabs” plugin.As for BP Group Hierarchy, that probably requires an update to function properly.
BuddyPress 2.5.3 can be found here:
https://downloads.wordpress.org/plugin/buddypress.2.5.3.zipJune 22, 2016 at 10:22 pm #254988r-a-y
KeymasterTry switching your theme to a WordPress default theme.
If that doesn’t work, disable all unnecessary plugins. If that works, then re-enable your plugins one at a time to see which plugin is causing trouble.
June 22, 2016 at 10:17 pm #254987r-a-y
KeymasterSorry to hear you are experiencing trouble.
You could try adapting the friend count script:
https://buddypress.trac.wordpress.org/browser/tags/2.5.3/src/bp-core/admin/bp-core-admin-tools.php#L168Or, if you are familiar with wp-cli, you could convert that script into a wp-cli command:
http://wp-cli.org/docs/commands-cookbook/Then, you could run the script through wp-cli.
June 22, 2016 at 10:11 pm #254986In reply to: BuddyPress redirects to frontpage on registration
r-a-y
Keymaster@terpz – I think your problem is similar to this thread:
https://buddypress.org/support/topic/registration-and-edit-profile-issue/Try the recommendation listed here:
https://buddypress.org/support/topic/registration-and-edit-profile-issue/#post-254078I’ve listed this bug report here:
https://buddypress.trac.wordpress.org/ticket/7109June 22, 2016 at 8:31 pm #254983In reply to: how to shorten Buddypress activation key
Mathieu Viet
Moderator@djpaul that was to avoid breaking plugins playing with the user meta for regular WordPress install (non multisite).
You can skip it by using:
define( 'BP_SIGNUPS_SKIP_USER_CREATION', true );June 22, 2016 at 4:39 pm #254976In reply to: BuddyPress and Lighttpd
danbp
ParticipantSorry, i can’t help you for this, but i can advice you about this codex page containing some information about lighttpd. Don’t miss to read chapter 8. 😉
June 22, 2016 at 4:25 pm #254975In reply to: Buddy press for multilingual
danbp
ParticipantJune 22, 2016 at 11:34 am #254950danbp
ParticipantMany topics about this question are already on the forum. You can also read here to get an idea.
June 22, 2016 at 9:51 am #254938jowyds
ParticipantI believe it was not php error. Rather than the wordpress itself. The chunking still goes on and on. I checked the directory image was uploaded. But wordpress just give the error. Perhaps I need to reinstall and try again.
June 21, 2016 at 1:55 am #254892In reply to: Comments think it’s 2006
bryanbatcher
ParticipantI can’t see the date and time of the server, but the date and time in the WordPress settings page are correct.
June 20, 2016 at 11:17 pm #254888In reply to: Avatar URL
danbp
ParticipantSince WP 4.2, you can use
get_avatar_url. More on this discussion.Perhaps this may work too:
bp_loggedin_user_avatar( 'html=false' );June 20, 2016 at 7:46 pm #254886shanebp
ModeratorFor addresses, you may be able to use a single field.
BP xProfile Location – Get it from the WP Plugin Repo or on PhiloPressJune 20, 2016 at 11:58 am #254865In reply to: [Resolved] can’t find “Network Admin”
danbp
ParticipantHi @lemantico,
please use the correct publishing tool when you insert links to post. You can add a screenshot here, but it must be stored on a external site. For that, use<img>button and insert the URL of the picture.Also, don’t use Google’s search result URL witch is stripped, but the canonical one.
1) Installing a network locally is a bit more complex as a regular install. It depends first on how you setup your local server and the OS you use.
You tell about bbPress, are you sure of this ? It’s only a forum plugin and has nothing to do with network setup. And you’re here on the BuddyPress forum!
If the codex didn’t helped you, maybe this tutorial can.
Sorry to not help more, but it’s not possible to rewrite here what is already written on WordPress & BuddyPress codex.
June 19, 2016 at 7:23 pm #254849In reply to: Multisite with domain mapping
mvalex
ParticipantThis might be a bug. I’ve created a ticket: https://buddypress.trac.wordpress.org/ticket/7128
June 19, 2016 at 5:14 pm #254846In reply to: A question about @mentions
June 19, 2016 at 5:11 pm #254845In reply to: little thing with a big impact
danbp
ParticipantHallo,
enhancement demand should be made on Trac. Use same login credentials as here.
There is a TOS plugin which you could use:
https://wordpress.org/plugins/simple-terms-and-conditions-for-buddypress/
Another solution can be reached here:June 19, 2016 at 8:37 am #254835In reply to: Custom background for comments
danbp
ParticipantSuch a plugin doesn’t exist, sorry. Customizing (eg. insert css) starts here:
https://codex.wordpress.org/Child_Themes
Best place to get advice about your theme is here:
https://wordpress.org/support/theme/fashionistasThe file containing layout information is (your theme)/style.css
June 18, 2016 at 5:46 pm #254801In reply to: non admin capability for sitewide message
sharmavishal
ParticipantJune 18, 2016 at 8:13 am #254772danbp
ParticipantThe function tells gettext() to change a string to another. It use a switch called
$original_string. If not explicit enough, this means the original phrase or words you want to modify. You see it near ‘case’. And right of return, you can put your words.
The present example use only one case. But you can add more. (See php switch)function abcd_gettext( $translated, $original_text, $domain ) { if ( 'buddypress' !== $domain ) return $translated; switch ( $original_text ) { case 'STING YOU WANT TO MODIFY': return 'MODIFIED STRING'; default: return $translated; } } add_filter( 'gettext', 'abcd_gettext', 20, 3 );IMPORTANT
Why to use po/mo if this kind of function can be used ?
– because po/mo is much faster as only loaded once.
– using this function force gettext to recalculate all strings one by one at each string load. Imagine what will happen on your server if you translate all 1970(BP2.6) BP’s string like this!
– this function can be handy only in case you need to change a few words. I wouldn’t use it for more as 10 strings.
– it’s also handy if you already use a mo file, but need temporary a different word/string.So you’re warned. Best practice to change strings is to use po/mo files. See codex for details.
June 18, 2016 at 7:51 am #254769In reply to: Login redirects not working
sharmavishal
ParticipantJune 17, 2016 at 7:31 pm #254757danbp
ParticipantYou have to debug and for this, use a Twenty theme. Read more use ajax and can generate conflict with outdated theme or plugins, or simply not updated js files.
Actually there is a little JS notice:
OneSignal: Could not load iFrame with URL https://otoparkcom.onesignal.com/sdks/initOneSignalHttp. Please check that your 'subdomainName' matches that on your OneSignal Chrome platform settings. Also please check that your Site URL on your Chrome platform settings is a valid reachable URL pointing to your site.June 17, 2016 at 5:40 pm #254749navyspitfire
ParticipantJune 16, 2016 at 8:23 pm #254710navyspitfire
ParticipantEssentially my issue is I am trying to see a users profile/registration before I activate them because their registration process includes info/files that need to be vetted before activation. Now it appears there’s no way to do that under vanilla buddypress/manage signups menu, but per this thread I can see all that info under the BP registration plugin.
The issue becomes I need to activate/approve the user twice; once under manage signups, once under BP registration.
June 16, 2016 at 8:22 pm #254709danbp
ParticipantThat’s a question better to ask on BP Registration support forum.
June 16, 2016 at 8:06 pm #254707In reply to: CV upload in Profile
aamirpsy
ParticipantThanks, i found helpful plugin for solution.
Plugin Name:
BuddyPress Xprofile Custom Fields Type
https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/ -
AuthorSearch Results