Search Results for 'wordpress'
-
AuthorSearch Results
-
June 20, 2016 at 7:46 pm #254886
shanebp
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/June 16, 2016 at 7:14 pm #254701In reply to: CV upload in Profile
danbp
ParticipantAdd a a new field group to profiles, call it CV, add some fields and options and you’re done.
As you certainly want to get this part a bit apart of the other profile fields, you can also use this plugin who brings a nice tabbed profile page.
June 16, 2016 at 6:21 pm #254691In reply to: Adding another Sublink Under Members/Groups?
r-a-y
KeymasterGroup Extension API only works for groups. Andrew is asking about member navigation.
There is currently no member extension API.
Check out the
bp_core_new_nav_item()andbp_core_new_subnav_item()functions inbp-core/bp-core-buddybar.php:
https://buddypress.trac.wordpress.org/browser/tags/2.6.0-rc1/src/bp-core/bp-core-buddybar.php?marks=15-38,369-399#L15You’d want to register your navs on the
'bp_setup_nav'hook.eg.
function my_custom_bp_nav() { // Fill this in from the documentation. $nav_args = array(); // Add nav. bp_core_new_nav_item( $nav_args ); // If you need to add another nav, copy and paste the block above and paste here. } add_action( 'bp_setup_nav', 'my_custom_bp_nav' );Check out this older example on the codex as well:
https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/Depending on your requirements, you could also use the BP Skeleton Component:
https://github.com/boonebgorges/buddypress-skeleton-componentHowever, that might be too much for what you need.
June 16, 2016 at 4:06 pm #254664sharmavishal
Participantif it helps following non bp errors with rc1
Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in wp-includes/functions.php on line 3897
Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). === Trace: #6 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(421): get_current_user_id() #7 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(31): Yoast_Notification_Center->retrieve_notifications_from_storage() #8 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(49): Yoast_Notification_Center->__construct() #9 wp-content/plugins/wordpress-seo/wp-seo-main.php(373): Yoast_Notification_Center::get() #10 [internal function]: load_yoast_notifications(”) #11 wp-includes/plugin.php(525): call_user_func_array(‘load_yoast_noti…’, Array) #12 wp-settings.php(277): do_action(‘plugins_loaded’) #13 /opt/www/hobbysocialnetwork.c in wp-includes/functions.php on line 3897
even with yoast seo disabled the site doesnt come up
June 16, 2016 at 2:21 pm #254640In reply to: I want to make sign up process like facebook
dhaval88
Participant@werose- thank you for your reply.
you say about facebook api plugin?
https://wordpress.org/plugins/facebook-api/
but i think this help only in send, share, follow, like button, comments etc…
can we make signup process like facebook using this plugin?June 16, 2016 at 1:16 pm #254636valuser
Participantsee
BuddyPress 2.6.0 Release Candidate 1…
perhaps best, if not already, to leave a ticket at
https://buddypress.trac.wordpress.org/newticket
hope you get it sorted.
June 16, 2016 at 12:37 pm #254630In reply to: @mention notification not working on blog posts
danbp
Participantnotification not working on blog posts.
It’s not implemented. See why on #4046
But you can eventually try the one or other plugin actually available on WP repository.
Particulary Mentionable, Email Mentioned or Mention comment’s Authors
June 16, 2016 at 10:29 am #254625In reply to: Adding Sub-groups
sharmavishal
Participantgo to pull requests
https://github.com/ddean4040/BP-Group-Hierarchy/pulls
exampe: check christianwach request…you would get the files he would have modified….
you can see the latest one would be for BuddyPress 2.6 which would release soon…
dont think so this would be merged in bp…the moderators would have better idea on this…but BP Group types is comming in BuddyPress 2.6..just wait for that if that would meet your requirements cause that would be in the core of bp…
June 16, 2016 at 7:40 am #254619In reply to: Problems with filtering the activity stream
Henry Wright
ModeratorCan you log in to wordpress.org?
danbp
Participantr-a-y
KeymasterContact the authors of rtMedia:
https://wordpress.org/plugins/buddypress-media/June 15, 2016 at 2:35 pm #254579In reply to: Solve Error 500
-
AuthorSearch Results