Search Results for 'buddypress'
-
AuthorSearch Results
-
danbp
ParticipantSalut,
the problem is that js is only loaded on the original modification page. To get the new UI, you have to use another filter.
https://buddypress.trac.wordpress.org/browser/trunk/src/bp-core/bp-core-avatars.php#L1833
Soufflé par @imath despite the heat (we :sweat: in Paris today)
function change_profile_picture(){ add_action( 'bp_template_content', 'change_profile_picture_screen_content' ); xprofile_screen_change_avatar(); } add_filter('bp_avatar_is_front_edit', 'filter_changeavatar_template');You would probably also remove the original Change Avatar tab from Profile subnav ? Use this:
function bpfr_remove_change_avatar_tab() { global $bp; bp_core_remove_subnav_item( 'profile', 'change-avatar' ); } add_action( 'bp_ready', 'bpfr_remove_change_avatar_tab', 15 );Have fun !
July 3, 2015 at 10:39 am #241414pryde1919
ParticipantHi yes, it was not buddypress code, what I wanted is to substitute the <i class=”fa fa-user”></i> with buddypress avatar, and I don’t know what code shall I put to make it buddypress avatar. and yes it was generated by a plugin, it show author’s postname.
July 3, 2015 at 10:26 am #241413Henry Wright
ModeratorI doubt
<i class=”fa fa-user”></i>is inserted by BuddyPress. Is it generated by a plugin?July 3, 2015 at 7:08 am #241405In reply to: Activation mail php file
danbp
Participant@nnc24 anything related to activities is in bp-activities directory.
Recommended method, and easiest way, to change BP’s messages is to use the language file.
July 3, 2015 at 5:42 am #241403@mercime
Participant@vinzen We apologize for the inconvenience to the lady and yourself. We try to follow accessibility guidelines and unfortunately some items fell through the cracks per our recent automated audits on the frontend and backend screens. The manual accessibility audits were to be done after the tickets above were fixed. Please be assured that we’ll let you know how to resolve the issue as soon as possible. Thank you for reporting the issue and for your patience.
July 2, 2015 at 3:32 pm #241397Rachel Vasquez
ParticipantAh nevermind! I’ve got it.
I custom downloaded an updated version of Modernizr and only put CSS3 and a few HTML5 things in the build. No JS or shivs. So something in there IS breaking the group avatars for future FYI in BuddyPress Groups – but for now, this is fixing my issue. Now if you need some JS or a more extensive Modernizr, then yeah, you may come across issues.
Hope it helps:
July 2, 2015 at 1:15 pm #241389In reply to: Query posts by custom field
shanebp
ModeratorDid you read the link re
author__in?
It uses ids, not country.As we’ve said, it’s a two-step process.
Look at
function my_custom_idson this codex page for an example of gathering ids from xprofile.Then pass the ids to
author__in.July 2, 2015 at 1:05 pm #241388danbp
ParticipantSorry for you, but this is a common open-source situation.
When you want something specific, you have to made it yourself or try to find another solution.
If you don’t know how to achieve what you want, you can learn or hire somebody to make it for you.This is only a support forum for BuddyPress maintained by volonteers, not a school or a ready to use solution platform for special demands. Hope you undestand ! 😉
July 2, 2015 at 12:55 pm #241387In reply to: Link name author to custom profile page
danbp
ParticipantRich and famous lazy solution try perhaps this add-on first:
http://themekraft.com/store/woocommerce-buddypress-integration-wordpress-plugin/
July 2, 2015 at 12:12 pm #241386In reply to: Link name author to custom profile page
whoaloic
ParticipantHi Dan,
I was expected the author name in BuddyPress pages (members, forums, activity) links to my Woocommerce Account page 🙂 not the other way.
But maybe I should consider adding some extra tabs in Buddypress profile page within I will put some Woocommerce informations (orders, billing address)…July 2, 2015 at 7:51 am #241380In reply to: Profile fields open URL in new tab (_blank)
danbp
ParticipantHi @swissprice,
the field type of “Website” should be URL.
The class who build this is defined here:
buddypress/bp-xprofile/classes/class-bp-xprofile-field-type-url.php
Function name isdisplay_filter()
The line to change is the…latest (161).Now be warned.
This function is not filterable ( but i may be wrong)
Modifying core files is not best practice as you will loose your change at next update.
Target _blank is kind of deprecated since many years now in favor of user decision. This one just in case you absolutely want to use target argument.July 2, 2015 at 7:00 am #241379In reply to: Activity tab switch compulsory
danbp
ParticipantSeems to be an Ajax conflict. Could come from the theme or a plugin.
First thing to do is to activate Twenty Fifteen or Thirteen and to activate debug mode in wp-config.
Then you deactivate all plugins but BuddyPress.If it is OK, you reactivate them one by one untill you find a culprit or get some warnings or php notice.
July 1, 2015 at 10:01 pm #241364In reply to: Adding Sidebar To All Dynamic Member Pages
danbp
ParticipantGuess you have to read Avada’s help support.
By default, BuddyPress use theme’s page.php
Try to assign a sidebar to page.php via Avada customizer.Or if you prefer to code your own template, WP function is
get_sidebar();See how to use it in page.php in Twenty ThirteenJuly 1, 2015 at 10:00 pm #241363In reply to: Stopping forum spam?
Robkk
ParticipantAkismet should help get most blog comment spam , and it also has integration with both BuddyPress and bbPress.
July 1, 2015 at 8:04 pm #241356In reply to: [Resolved] Redirect if user is already logged in
TrevorN
ParticipantNow
bp_core_redirect( get_option(‘home’) . ‘/members/’ )
works and sends it to the overall members page.
My question is, since those two pages (members and members profile) are BuddyPress pages, is that why it works on those two pages, but since /new/ is not a buddypress page, it redirect to that?
July 1, 2015 at 5:14 pm #241342danbp
ParticipantHow to create MT is explained above, and you’re lucky, as a brand new plugin was published a few days back by @offereins: BP XProfile Field For Member Types
Proof of concept for the implementation of member-type specific profile fields in BuddyPress.
https://github.com/lmoffereins/bp-xprofile-field-for-member-types
Successfully tested with my custom code(in bp-custom.php), BP 2.3.2.1 and WP 4.2.2
July 1, 2015 at 4:25 pm #241341In reply to: Stopping forum spam?
shanebp
ModeratorDid you enable anonymous posting?
Look at: …/wp-admin/options-general.php?page=bbpress > Anonymous postingbtw – this is the BuddyPress support site.
The bbPress support site is here.danbp
ParticipantHi,
did you allowed user registration in WordPress settings ?
http://www.wpbeginner.com/beginners-guide/how-to-allow-user-registration-on-your-wordpress-site/Are Register and Activation page created ?
July 1, 2015 at 8:52 am #241328In reply to: BP crashes Forumsearch
danbp
Participantbbpress is the plugin, by type was meant site wide forum or group forum.
can I provide you a link via pm or mail?
No ! You’re on a free help support, maintained by volonteers.
If you want private assistance, use the job board forum where you can hire a freelancer or a dev, but probably not for free.
July 1, 2015 at 7:42 am #241321In reply to: How can I change the Cropping size in profile page?
Alexlim91
ParticipantHi,
For your information, I no a professional web developer or web design, I still fresh and still learning. Because this buddypress is quite new for me. So, I need someone can teach me step by step. For the bp-custom.php, i need to create for it? because i would no found it
Thank You
July 1, 2015 at 7:38 am #241320In reply to: How can I change the Cropping size in profile page?
danbp
ParticipantWhy can’t you do that ?
Copy/paste this to bp-custom.php and adjust the size to your need (250 to whatever)
define( 'BP_AVATAR_FULL_WIDTH', 250 ); define( 'BP_AVATAR_FULL_HEIGHT', 250 );And use FTP to upload bp-custom
July 1, 2015 at 7:34 am #241319In reply to: Radio field with multi selection for search
danbp
ParticipantSee if this can help you:
https://buddypress.org/support/topic/men-woman-couple/Also some topics about multi search criteria, like this one
https://buddypress.org/support/topic/multiple-search_terms-displays-nothing/Note also that xprofile fields values are clickable by default. This let users get a list of members who entered same value.
Field name > Gender, when male is clicked you get all males list.
For more detailed result, you have to buid your own solution or to use a dedicated plugin. See
https://wordpress.org/plugins/buddypress-global-search/July 1, 2015 at 7:30 am #241318In reply to: How can I change the Cropping size in profile page?
Alexlim91
ParticipantHi,
For the cropping i still cannot do it, even i follow the buddypress codex. I still would no found the way to increase the cropping size.Thank You
July 1, 2015 at 7:19 am #241317In reply to: Profile Avatar picture Crop size
danbp
ParticipantPlease don’t double post the same question.
This was answered here:
https://buddypress.org/support/topic/how-can-i-change-the-cropping-size-in-profile-page/Topic closed as duplicate.
June 30, 2015 at 10:19 pm #241310In reply to: [Resolved] Site Privacy
Paul Bursnall
Participant* single plugin compatible with Buddypress
-
AuthorSearch Results