Search Results for 'wordpress'
-
AuthorSearch Results
-
July 6, 2015 at 7:30 pm #241505
In reply to: [Resolved] Unable to crop Profile pictures
danbp
ParticipantI have never used kendo, so i can’t help you about how it works, or not, with BuddyPress or with your theme.
But you can deregister a script or add more scripts into the theme…
Read here if it inspires you:
http://wordpress.stackexchange.com/questions/152559/wordpress-script-loading-unloading-wp-deregister-scriptjqueryJuly 4, 2015 at 9:39 pm #241450In reply to: Buddypress Login Plugin
Henry Wright
ModeratorTheme My Login will allow you to perform a redirect on login. You will need to add the social login button functionality separately. Search the WordPress Plugin Directory for one that works for you and is actively maintained.
July 3, 2015 at 9:19 pm #241434In reply to: Theme and Upload form issue
danbp
Participanthi @chilligrower,
i’m unable to reproduce your issue with P2 Categories. Out of the box installed, and avatar upload and cropping are working correctly.
The only thing i see, is that the drop area may need a little width adjustment. A percentage of 98% will show the right border.Default css
.drag-drop #drag-drop-area {
display: table;
height: 100%;
width: 100%;
}See screenshot
July 3, 2015 at 8:23 pm #241433danbp
ParticipantYou didn’t mention the theme you use, so it’s a bit difficult to help. Or where this code is placed.
Read here, and maybe you can get something
https://codex.wordpress.org/Function_Reference/get_avatarJuly 3, 2015 at 6:19 pm #241428In reply to: Fields Privacy Problem
danbp
ParticipantThis is a knowed bug, a bit forgotten over the time (2 years back !).
https://buddypress.trac.wordpress.org/ticket/4821@imath will look at this this week-end.
Follow the ticket to see progress, and eventually give feedback if asked for. Login on Trac uses same credentials as here.
That said, in your specific example, if a visitor knows the phone number of a registered user and try to search him on your site using that number, guess the relation between both is nearly familiar, so privacy is not a big problem, at least for them. 🙂
July 3, 2015 at 5:25 pm #241424In reply to: [Resolved] Problems getting started
danbp
ParticipantHi @nmschaller,
bbPress is a separate plugin and BuddyPress doesn’t manage bbPress. For questions about forum settings, you can use the bbPress support.
When you use BP groups component, you can add a forum to each of them. In this case only, you have to install bbPress. Of course you can also use bbPress as standalone on a BP install, or use bbPress with WordPress, without BP.
BP doesn’t use “pages” but templates, and the only pages created during installation are in for internal purpose. The “member” page is used to show the member directory, but also profiles or members activities. This dynamic content is displayed on different templates, depending the context, and using WP’s page system to fire all that via a same page slug (aka internal path).
your-site/members/some/thing/where/some/thing/is using his own template part displayed on “members page”.So far i understand you use bbPress and now you want a members directory, and eventually some additionnal fields on user’s profiles. And most of this should be private or “members only”, right ?
The main problem is that you want some custom behave that need some knowledge (you seem to have), but you cannot edit functions.php Unfortunately, this is the place where to add customisation. And what to tell about bp-custom, which is another crucial cusmisation file.
You want to drive and have no steering wheel ! Annoying… 😉
The question is Do you need BuddyPress or can you use another solution ? 🙂
Depends your project, really. Members directory or extended profiles can be done with separate plugins.
Read here:
http://chrislema.com/best-wordpress-membership-plugin-2014/Or digg into the Codex if you decide to use BuddyPress.
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 6:09 am #241404In reply to: Error 404 on all components of buddypress
@mercime
Participant@jdc2018 Have you set the WordPress admin panel > Settings > Permalinks to a configuration other than the default configuration. mod_rewrite must be enabled on your server for pretty permalinks to work.
If changing permalinks doesn’t work: WP/BP versions? What theme are you using? What other plugins are activated in your site? Where are you hosted?
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 1:56 pm #241394Aliveda
ParticipantDone.. but still dosent work 🙁 any other hints??
I update wordpress, Changed theme, unistall and install again, changed both permalinks, flagged group but nothing changed… that error keeps coming up.
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 11:05 am #241384danbp
ParticipantHi,
first, update WordPress to 4.2.2
Second, activate Twenty Fifteen or Twenty Thirteen theme
Third, review BP settings. If Group component is activated, you should have a page assigned to it. If you have some older Group page in trash, clear it. This page must be empty, without template or modell assigned. Just a title nd that’s all.
Fourth, go to permalinks settings and choose any option except “by default”. Save.
Five, activate wp_debug mode in wp-config.php
Finally, go to front-end, Group Directory and create a group.
July 1, 2015 at 10:47 pm #241370In reply to: Query posts by custom field
killabien
ParticipantSo should I put it somehow like this?
$args = array( 'numberposts' => -1, 'post_type' => 'post', 'authors_in => array('country=Spain')' );? I’m not really sure how to query against an xprofile field. Do I need to call something from the database? Or should I do it as in the example in the link you’ve provided me with?
$query = new WP_Query( array( 'author__in' => array( 'country=Spain' ) ) );Sorry for my limited knowledge, still learning how to use wordpress and bp.
Thank you
July 1, 2015 at 10:06 pm #241365In reply to: Query posts by custom field
shanebp
ModeratorPlease use the
codebutton when posting code.You’re querying against user_meta.
But the data is an xprofile field.You need to collect the user ids of all members who have a certain xprofile value re the country field.
Then use theauthor__inparameter inWP_Query
https://codex.wordpress.org/Class_Reference/WP_Query#Author_ParametersJuly 1, 2015 at 8:47 pm #241360In reply to: [Resolved] Site Privacy
Paul Bursnall
ParticipantThis works for me:
if( is_user_logged_in() ) { $page = get_page_by_title( 'Dashboard'); update_option( 'page_on_front', $page->ID ); update_option( 'show_on_front', 'page' ); } else { $page = get_page_by_title( 'Home' ); update_option( 'page_on_front', $page->ID ); update_option( 'show_on_front', 'page' ); }Added to functions.php if anyone else references this post.
I use My Private Site to keep the bulk of the site hidden from visitors / search engines – https://wordpress.org/plugins/jonradio-private-site/
Thanks for your help.
July 1, 2015 at 6:43 pm #241353In reply to: Stopping forum spam?
shanebp
ModeratorYou shouldn’t need to disable the activity stream commenting – but try it.
There are several plugins re bbPress spam, such as:
https://wordpress.org/plugins/stop-spammer-registrations-plugin/July 1, 2015 at 6:34 pm #241352Henry Wright
ModeratorThis isn’t possible by default. You’d likely need to custom code something like this. Alternatively, you may find a plugin that does something similar.
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 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/June 29, 2015 at 11:25 pm #241280In reply to: Comments notification doesn’t work
albydigei
ParticipantThanks, I did it and I applied the patch to the file and then I uploaded that to my wordpress folder, but nothing has changed and notifications still doesn’t appear…
June 29, 2015 at 9:38 pm #241272In reply to: I have an odd Code Snippet Issue
jugglenet
ParticipantHi.
The thing is I’ve got the same code working on another wordpress website which uses a different theme. So it has to be theme related. I was just wondering if anyone had come across this issue or similar before.
It really is odd.
I’ve tried putting the code snippet into the actual template file also but that didn’t work either.
June 29, 2015 at 6:31 pm #241264In reply to: Registration Page not working
danbp
Participanthi @whiskyharry,
it’s not a issue, it’s intended so.See here:
WordPress registration is explained here.
June 29, 2015 at 5:44 pm #241262In reply to: Comments notification doesn’t work
Henry Wright
ModeratorThe core handbook should show you how. Specifically, take a look at The Code Repository section.
June 29, 2015 at 2:20 pm #241256In reply to: Comments notification doesn’t work
albydigei
ParticipantI’m sorry but I haven’t wordpress folder in my pc. How can I do?
Thanks for all your support, notifications are really important for my site
June 29, 2015 at 1:29 pm #241254In reply to: Comments notification doesn’t work
Henry Wright
ModeratorTake a look at the Apply a Patch Using TortoiseSVN article. The article focuses on WordPress, but the same idea should apply to BuddyPress.
-
AuthorSearch Results