Search Results for 'wordpress'
-
AuthorSearch Results
-
November 17, 2014 at 2:21 pm #229124
In reply to: groups added to phpbb?
shanebp
ModeratorIntegrating phpbb with BuddyPress would be a lot of work and would require a good developer with strong knowledge of both BP and phpbb.
I’m not aware of any plugin that bridges phpBB with WP and BuddyPress.
November 17, 2014 at 8:27 am #229118In reply to: members list shows when not logged in..
gyfi
ParticipantThis one solved my problem:
https://wordpress.org/plugins/buddypress-members-only/November 16, 2014 at 10:19 pm #229107In reply to: move Bp scripts (js) to footer
JibsouX
Participantokey thanks in fact i will use the wonderfull plugin : BWP Minify π
November 16, 2014 at 3:33 am #229095In reply to: move Bp scripts (js) to footer
Henry Wright
ModeratorYou’ll have to deregister them and then re-register them ensuring the fifth param of wp_register_script() is set to true
https://codex.wordpress.org/Function_Reference/wp_register_script
Note: Careful things don’t break as a result of moving scripts to the footer.
November 15, 2014 at 8:23 pm #229090shanebp
ModeratorThere are several plugins for that.
Do a search for front end post.November 15, 2014 at 3:05 pm #229078In reply to: Unban from Group?
Skyrie
Participant@hnla I agree, especially since a lot of BuddyPress sites (including my own) prohibit a user from seeing the backend at all. We need an option in the actual frontend for the admin of a group to be able to unban, perhaps with a list of banned members. Right now my users have to contact a member of our staff to get someone unbanned from their group, which they shouldn’t have to do.
I’ve raised a ticket for this issue:
https://buddypress.trac.wordpress.org/ticket/6013November 14, 2014 at 11:27 am #229063In reply to: changing multisite to single WP site using BP
Paul Wong-Gibbs
KeymasterSwitching from multisite to normal flavour WordPress looks kind of complicated. I came across http://wpebooks.com/2010/09/how-to-enable-multisite-in-wordpress/ from a good source (see page 24 of the PDF).
Make backups of everything first. π
November 14, 2014 at 12:56 am #229053In reply to: Rename "Add Friends" and "Cancel Friendship Request"
modemlooper
ModeratorYou edit this text via a language file.
or wordpress.org/plugins/quick-localization/
November 13, 2014 at 7:43 pm #229044In reply to: How to list extended profile fields
wrify
ParticipantThank you for your reply. Maybe I didn’t explain myself well or maybe I am using the wrong approach.
What happens is as follows:
I have a set of categories listed on a page. These categories are for content purposes. Click on a category and get the list of post under that category. Just a regular WordPress thing.
However, I need to do the same thing for type of users.
For example:
Under arts, I list categories as Arts, Photography, News etc. (These are for content)
But the I need to list Artists, Photographers, Galleries (These are for users)
Thanks,
JoeNovember 13, 2014 at 2:12 pm #229026Hugo Ashmore
ParticipantCool thanks:
https://buddypress.trac.wordpress.org/ticket/6007Closing thread.
November 12, 2014 at 11:20 pm #229014In reply to: Comments not showing up in activity stream
ronia
ParticipantNovember 12, 2014 at 9:42 pm #229010In reply to: I can't upload a profile photo
marcmiquel
ParticipantI did! With no success…He doesn’t reply. I know that it must work with this combination of plugin + theme + wordpress because I tried it in an empty one. But I just cannot lose all the work done in this website.
Do you know of any ‘cleaner’ or restore to defaults for certain things? Thanks!Marc
November 12, 2014 at 5:09 pm #228997In reply to: I can't upload a profile photo
marcmiquel
Participant“Buddypress Upload Avatar Ajax” upload the pics in a folder during the registration as I checked right now. But then they don’t appear in the profile. Plus, the tab associated to user profile area “change…” does not appear. What could it be? I tried with a new wordpress and theme and it works, so it must something related to my specific combination. I deactivated all the plugins besides buddypress and this one, but still, it does not work. I am afraid using super cachΓ© before or any security plugin broke my wordpress…Any idea?
November 12, 2014 at 1:04 pm #228987In reply to: Comments not showing up in activity stream
jbird
ParticipantJust a little more info…
I’ve tried this with all plugins deactivated except buddypress and akismet, and also with the twenty thirteen theme. Still no blog comments are showing up in the Activity Stream at all in either scenario. I would think that should eliminate plugin or custom theme conflicts as issues.
I have WordPress multisite installed elsewhere on my domain, but this is installed in a fresh, single WordPress installation (4.0) in a different directory.
I’ve seen a bunch of old threads in this forum that talk about search engine blocking being a factor, but I’m not sure which settings are relevant to that in the recent version of WP.
I am desperate for some insight!
Cheers,
JasonNovember 11, 2014 at 8:34 pm #228970In reply to: members list shows when not logged in..
bp-help
Participant@gyfi
Or if you would like a quick and easy plugin solution I offer a couple of premium plugins for that. http://bphelpblog.wordpress.com/2014/09/27/private-bp-pages/
Submit Comments, Tips or Tricks, or Job InqueriesNovember 11, 2014 at 12:03 pm #228944In reply to: Buddypress tabs !!
mcpeanut
ParticipantI dont quite understand what you mean tbh about page refreshes when clicking a link or menu item? that is how web pages tend to work in general lol π
However i do understand what you are saying about what you want to achieve, but you have to realize one thing first, if something doesnt work as your brain imagines it to work out of the box it does not mean you cannot make it work that way, as hugo said you should be really looking towards ajaxing certain parts of your website to acheive what you asked (you said you have no idea what ajaxing is yet you only need to type it in google to find out and read a few articles on what exactly ajaxing does to find out), ajaxing basically will let you do exactly what you are describing, you can read about it here https://codex.wordpress.org/AJAX
There are quite alot of wordpress ajax plugins around i have messed around with myself with mixed results when used with wordpress and buddypress, i suggest reading the link above then searching for a few ajax plugins and try them out for yourself π
November 10, 2014 at 11:53 pm #228849In reply to: display member updated date?
Henry Wright
ModeratorHave you ever thought about a custom solution using user meta? Something like:
// Hook this to a particular action. update_user_meta( get_current_user_id(), 'active', current_time( 'mysql' ) );Then you’d get that for display using something like this:
// $last_active will be a date-time string. $last_active = get_user_meta( get_current_user_id(), 'active', true );Refs:
https://codex.wordpress.org/Function_Reference/get_user_meta
https://codex.wordpress.org/Function_Reference/update_user_metaNovember 10, 2014 at 9:38 pm #228838MBWD
ParticipantHaving the same issue. Still no help from the devs? This seems to be very common. I’ve tried all the solutions I’ve been able to find… no luck with any of them. Using WordPress 4.0 integrated with Bootstrap 3.3 on a local dev site.
November 10, 2014 at 8:35 pm #228835In reply to: Edit the Register (Registration page)
@mercime
Participant@joetheboss1998 First, please do not edit core files as these will be overwritten when you upgrade BuddyPress. Second, you’re looking at the wrong file.
Create a folder named
buddypressat the root of your active theme/child theme folder then copy over https://buddypress.trac.wordpress.org/browser/tags/2.1.1/src/bp-templates/bp-legacy/buddypress/members/register.php and place that within thebuddypressfolder created earlier following the directory structure, i.e., wp-content/themes/your-theme-folder/buddypress/members/register.phpNovember 10, 2014 at 6:26 pm #228825In reply to: Total number of posts
Henry Wright
ModeratorI must admit, the template hierarchy was slightly confusing at first for me too but once you get your head around it, it is a very powerful way of using templates. It works similarly to the WordPress template hierarchy if that helps.
November 10, 2014 at 5:37 pm #228819In reply to: Buddypress tabs !!
mena__99
Participantwell , thanks a lot for reading and replying to my post , i appreciate it.
also thanks alot for the tip that will save me a lot of time.
i am not a develober at all .. and i have very little interest in being one to be honest , i am an architect , but i want to make a very nice website for me and my friends ( since i have almost no money because i hadnt work yet – i decided to build it myself with wordpress plugins )
buddypress looks promising and that is what i like about it.
one thing i dont like about it so far …
when i press edit profile i see ( view, edit, change profile photo ) … when i ever click on anyone of them .. the whole page refresh like if i am visiting anther page .. which is really old ! … that is very bad.i want to make tabs for everything. so that whenever i click on any of them … everything stays the same (no page refreshing ) , faster , fewer time loading and look much better .
**sorry for my bad english , i am egyptian **
November 10, 2014 at 1:06 pm #228804In reply to: Restricting Content + BuddyPress
Henry Wright
ModeratorHi @enigmaweb
You have a couple of options regarding your requirements here.
1. You could try searching the Plugin Directory to see if anything is available that meets your needs. If nothing then you could try option 2…
2. Implement a custom solution yourself. Restricting content is fairly easy if you make use of some WordPress functions such as
current_user_can()andwp_redirect(). You’ll also need to make yourself familiar with hooks. Here’s a very basic example of how to restrict content depending on a particular user’s role.function my_restrict_content() { // Check if the current page is the group creation page AND the currently logged-in user is a subscriber if ( bp_is_group_create() && current_user_can( 'edit_posts' ) ) return; // If we get to here, the current user is not authorised to view this content so redirect them to the homepage. wp_redirect( home_url() ); exit; } add_action( 'init', 'my_restrict_content' );Helpful refs:
November 10, 2014 at 12:35 am #228798In reply to: Display memberlist
Henry Wright
ModeratorHi @htown
1. Will buddy press allow me to print out a list of members and customize it the way Iβd like?
BuddyPress may do. By default, BuddyPress provides a members directory which displays all active members (users that have activated their account). If you need more control over exactly which users are displayed then you’ll need to use the
WP_User_Queryclass provided by WordPress.Ref: https://codex.wordpress.org/Class_Reference/WP_User_Query
2. Will buddy press allow me to export users in a CSV file?
I’m not sure this is do-able out-of-the-box. However, there may be plugins available in the WordPress Plugin Directory that can help.
November 9, 2014 at 10:05 am #228794In reply to: Buddypress comment notification
mcpeanut
Participant@sbaglia i really dont have a clue about this but ive just noticed a recent update on a plugin that adds seperate social networking functions to wordpress that i have been watching for a while, now the idea i had a while ago was wondering if this plugin could infact be ran alongside buddypress just for the comment notifications within wordpress, meaning i was wondering if all other notifications and workings of this other plugin could be disabled and used just for this one specific task, this way users would have a seperate notification system for blog and custom post comments, i really dont know as i have not messed around with them together but i know that this plugin does achieve what we want but seperately to buddypress, maybee you want to have a mess with the idea i had? i just dont have time at the minute and dont know if it will work well with buddypress running too, the plugin is here https://wordpress.org/plugins/wp-notifications/
November 8, 2014 at 2:26 pm #228505vaperooms
ParticipantRight then folks just a little heads up to my now resolved issue.
I had initially installed WordPress through my hosting cPanel Softaculous script installer. This appeared to have caused the issues.
After reading the documentation and other forum posts it had become clear instead of using my hosting self install script I should download WordPress manually and install manually too. The same should be done with BuddyPress.
I can’t answer as to what causes this through using a self install script but I can confirm that it fully resolved it.
So yes OK I had to do a complete re-installation but at least my site was a fresh install in the first place to start again and repair.
Encountering this issue has given me the stance that I will manually install in future as opposed to cPanel self installation.
Thanks for an excellent BuddyPress and I hope I can become a valued member of these forums and BuddyPress!
Regards,
Gaz
N.B. This topic can now be marked as closed by the moderators please
-
AuthorSearch Results