Search Results for 'wordpress'
-
AuthorSearch Results
-
March 31, 2018 at 10:51 am #271674
In reply to: changing default avatar – codex info not working
March 30, 2018 at 11:36 pm #271663In reply to: Forgotten Password
Venutius
ModeratorHi there,
Regarding point 1) This could be to do with the source address that is being used for the emails WordPress is sending. it’s pretty old now but I use CB Change Mail Sender to set an appropriate mail sender address.
Regarding point 2) I suggest this must be down to a plugin conflict or some other problem, as I can’t replicate your issue. have you tried it with just BuddyPress running?
March 30, 2018 at 6:26 pm #271658In reply to: Shortcode question [bp_profile_url]
Venutius
ModeratorI’ve been looking at that, it seems it’s not possible to use that shortcode and create a link with it from a wordpress post, I tried several ways and none delivered the required result.
I’m trying to contact the plugin developer at the moment as I’ve written some extensions to this, I think creating a short code that returns a link to the user name would be quite simple, I could look at this later and let you know how I get on.
March 30, 2018 at 10:09 am #271648Venutius
ModeratorHave you looked at overloading your BuddyPress pages?
This is the process of getting BuddyPress to load your costomised pages instead of the default pages. For example, the page that loads the “What’s new” section and post form is located in
plugins/buddypress/bp-templates/bp-legacy/buddypress/activity.posts-form.phpIf you copy this file to
themes/your-child-theme/buddypress/activity/posts-loop.phpyou can edit this file and remove the “What’s new” section. You would need to know php to do this.More information on overloading bp templates is located here: https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
A plugin that tries to make the management of your overloads easier is https://wordpress.org/plugins/bp-template-overloader/
March 29, 2018 at 6:30 pm #271640In reply to: Enfold + BudyyPress= Responsive Issues
Venutius
ModeratorWhat I’m doing at the moment is running a mobile specific theme, my main wordpress theme just does not scale down right. By running a theme switcher I’m able to have a mobile specific setup that works a lot better overall.
Regarding mobile devices in particular the button styles used in the current BuddyPress template set is not ideal, I’m hoping this will improve with Nouveau. What I do on the mobile side is I tend to place all the main bp options in the main menu, which with my theme works pretty well.
I think you have to be very careful with what features you offer on mobile, the bbPress forums for example don’t work that well, you can get the basic members pages to work, have chat, basic groups with activity feeds but trying to do much else gets very difficult with mobile.
March 29, 2018 at 4:04 pm #271637In reply to: Using header cover
Venutius
ModeratorI think what you are looking for is the ability to place a shortcode on a page, that displays the members header on a page of your choice for any given member id.
There isn’t such a thing, however https://wordpress.org/plugins/buddypress-profile-shortcodes/ comes close in that it allows you to display most of the components of the members header on a page.
BuddyPress Profile shortcodes is a pretty simple plugin, I think it should be possible to combine VapVarun’s contributed code with BP Profile Shortcodes in order to create a shortcode that does something similar to what you are looking for.
March 29, 2018 at 3:31 pm #271636In reply to: Using header cover
Venutius
ModeratorIf you want to get to know the structure of the BP overload files, could I suggest you try installing https://wordpress.org/plugins/bp-template-overloader/ this maps out all of the overload files, it’s pretty daunting the sheer number of files you can modify, but if you look for that one file you can view it’s contents.
Also the link I mentioned but forgot to include about overloading BP is here. https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
March 29, 2018 at 11:15 am #271626In reply to: Change url links on members loops
Venutius
ModeratorOne possible way of achieving this could be to implement custom rewrite rules for the URL, I’ve not tried it but here’s a page that describes how it’s done:
March 29, 2018 at 6:55 am #271622In reply to: Adding a tab to the Users->Your Profile Section
Venutius
ModeratorThat’s a WordPress page so you might be wise to ask in the WordPress Forums as well. I don’t knw, hopefully someone will come along who knows?
March 28, 2018 at 9:43 pm #271616Venutius
ModeratorHave you enabled the wordpress debug and log file? I think that’s where I’d start looking, see if there are any errors shown. I’d also install Debug Bar and Query Monitor.
Query Monitor will allow you to see if the WP query is failing.
March 26, 2018 at 6:38 pm #271593Venutius
ModeratorMarch 26, 2018 at 12:06 pm #271581In reply to: Can’t find registered user in backend?
Slava Abakumov
ModeratorMake sure, that you are looking in a correct place for a registered user.
In case of WordPress Multisite – user can be listed in Network admin area, but NOT listed in individual sites Users.March 26, 2018 at 9:23 am #271576In reply to: Group Members Pagination – All site members
Graham
ParticipantFound the solution in this post:
https://buddypress.trac.wordpress.org/ticket/7704
Go to:
/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress-functions.php
Around line 807, Find:
// The template part can be overridden by the calling JS function. if ( ! empty( $_POST['template'] ) && 'groups/single/members' === $_POST['template'] && 'group_members' === $object ) {Change “group_members” to just “members”:
// The template part can be overridden by the calling JS function. if ( ! empty( $_POST['template'] ) && 'groups/single/members' === $_POST['template'] && 'members' === $object ) {Fixed.
March 20, 2018 at 11:09 pm #271504In reply to: Why aren’t user ids recycled after deleting users?
Venutius
ModeratorI still think it’s the database that is dishing out the unique keys so it is what’s controlling the user id’s not WordPress itself. BuddyPress just uses the WordPress User Id.
March 20, 2018 at 12:43 pm #271485In reply to: Upload Avatar in registration page
Venutius
Moderatorduring initial registration, WordPress has yet to create a user_id for the member, so can not save the avatar, only after the user has confirmed their email address will WordPress be able to save the avatar and reference it to that user.
March 20, 2018 at 7:11 am #271478In reply to: Media Library not displaying images after BP Update
Venutius
ModeratorI mean the debug log in WordPress.
March 20, 2018 at 5:15 am #271477jonleesky
ParticipantThanks for your help. but it didn’t work, the screen prompt: ERR_TOO_MANY_REDIRECTS
I’m using the wordpress 4.9.4 and buddypress 2.9.3, don’t know what to do…o(╥﹏╥)o
March 19, 2018 at 8:15 pm #271474In reply to: Is there not a list of shortcode anywhere?
Steve
ParticipantThanks, I did do a quick search at WordPress.org. But thought BuddyPress would have some already built within their own system.
Nothing inherent within BuddyPress?
March 19, 2018 at 5:44 pm #271469In reply to: Is there not a list of shortcode anywhere?
Venutius
ModeratorThere’s a few plugins that provide shortcodes, take a look at the BP Activity Shortcode and also Shortcodes for BuddyPress in wordpress.org.
March 19, 2018 at 3:18 pm #271464mcpeanut
Participant@jonleesky I posted the solution to this nearly two years ago, I have not tested this code recently but you can try it out.
function my_disable_bp_registration() { remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); remove_action( 'bp_screens', 'bp_core_screen_signup' ); } add_action( 'bp_loaded', 'my_disable_bp_registration' ); add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page"); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . '/wp-signup.php'; }What you will need to do is first create a bp-custom.php file (make sure you add the opening and closing tags at the top and bottom ) and put it in your plugins folder, then paste the code between the PHP opening and closing tags and save.
This should disable BuddyPress registration and let you use WordPress registration as default, hope this helps.
March 17, 2018 at 8:03 pm #271441In reply to: Creating Tutor website
owen2
ParticipantA good example of a WordPress based “Tutor website” is the mgrmusic.com Music Teacher Database.
Using the Geo My WordPress plugin users can search the database for music teachers local to them. The can also filter the teachers dependant on instrument or level, so this achieves two of the aims you mentioned in terms of the “search page”.
As for sign-ups; tutors submit information via a Contact Form 7 plugin form on a Sign-Up page and receive enquiries in a “Community” area of the website where enquiries are send to teachers, enabling them to respond to the students. I am not sure about how this website facilitates payment from either the teachers or students, however, I am sure you could add some type of Paypal payment facilitation that creates the release of a download file upon payment, in the file a student could find a teacher’s contact details. The whole website is ran on WordPress so it is certainly achievable to create a tutor website based only on WordPress achieving the aims that you set up above.
Hope this helps, I would research the plugins and theme options out there.
March 17, 2018 at 7:24 pm #271440jonleesky
ParticipantI just want the original wordpress registration page. After I installed buddypress, It becomes a new registration page. is there any way to stop it? ((o(^_^)o))
March 16, 2018 at 8:44 pm #271431In reply to: Embed Groups
Venutius
ModeratorHold the presses! I’ve found a plugin that promises to deliver what you need!
If you install this one, it seems to have a group list shortcode where you can specify the id of the user that each group will belong to.
For example [groups-listing user_id=1]
I think this should in the least show all the groups you are a member of, WBCOM, the plugin author are also quite active and may add a feature for an admin= option.
March 16, 2018 at 7:54 pm #271423In reply to: Link is not embedding
Jonas
ParticipantYou could give Iframely a shot, it should convert any useful link into a rich snippet embedded post.
March 16, 2018 at 11:14 am #271410In reply to: Link is not embedding
Venutius
ModeratorIs the link one that is supported by embed? my understanding is that only links with supported URL’s will embed, one such link would be https://wordpress.org/plugins/buddypress/
-
AuthorSearch Results