Search Results for 'buddypress'
-
AuthorSearch Results
-
November 11, 2014 at 12:03 pm #228944
In 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 11, 2014 at 10:50 am #228941In reply to: Username not showing on profilepage
bassieappelman
ParticipantAll names are just wrong now.. it shows normal names on the profile page instead of usernames, same for in the forums at the ‘Freshness’.
I will just reinstall buddypress I think..
November 11, 2014 at 10:26 am #228940In reply to: Username not showing on profilepage
bassieappelman
ParticipantI set Usergroups in Buddypress Settings to active (no idea why I tried this, but I did), now it does show a name but a lot uglier than before..
November 11, 2014 at 10:18 am #228939In reply to: Username not showing on profilepage
bassieappelman
ParticipantI can not find page.php to be honest, nor know what to do with that if I do find it.
I found the home.php and it has the line
<div id="content"> <div class="padder"> <?php do_action( 'bp_before_member_home_content' ); ?> <div id="item-header" role="complementary"> <?php locate_template( array( 'members/single/member-header.php' ), true ); ?> </div><!-- #item-header -->That looks like it should work right?
But you say to replace the use of it with index.php, could you explain me how to?I am not running the older bp-default templates I guess, as I do not have that folder.
Might just backup my database and delete buddypress to do a clean install once again, will just have to save some of my custom functions then. Because I can not seem to find anything wrong anywhere. (Yes I am kind of a noob when it comes to this š )
November 11, 2014 at 10:09 am #228938In reply to: Username not showing on profilepage
Hugo Ashmore
Participantno it’s only a cache error if you had installed a caching plugin in the first place, unless you have tweaked your server in some arcane manner – get rid of the caching plugin they are a bloody nuisance, use it when you’re live if you really need to but then not for dynamic pages which BP’s mainly are.
BP uses page.php in theme compat mode where the user name is injected into the WP title() function – or you can override that template file with your own located under either ‘community’ or ‘buddypress’ in your theme root, further to that you can replace the use of /members/single/home.php with index.php and variations of that as explained in the codex; lastly you could be running the older bp-default templates in which case you may have /members/ in your theme root which BP will detect and assume an override of theme compatibility mode is required.
November 11, 2014 at 7:50 am #228865In reply to: CSS With custom template
Hugo Ashmore
ParticipantGoing to be hard to help when you provide so little information š
Be a little more or a lot more specific about what issues you are having generalisations aren’t too helpful on technical forums or on technical matters.
Theme in use ? Versions of installed apps?
How have you created this ‘Template’ is it a copy of a current page.php template from your theme?
BuddyPress css is specific to BP screens not any other template that may be created outside it’s knowledge, if I created a page ‘community.php’ and stuck a load of BP functions or loops in that they wouldn’t inherit any particular styling, however BP styles are pseudo namespaced with a ancestor token #buddypress so if you add that ID to an element in your template at a fairly high level such as just after something like #content you might then inherit some styles if rendered BP elements have the usual classes they need.
November 11, 2014 at 7:37 am #228863In reply to: Edit the Register (Registration page)
Hugo Ashmore
ParticipantPlease contact your host, about server user permissions this isn’t a buddypress or application issue. You could try logging into your hosting account and cpanel or similar control panel and perhaps trying this from whatever file editor it provides.
November 11, 2014 at 7:28 am #228862In reply to: Edit the Register (Registration page)
joetheboss1998
Participant@mercime I tried creating the directory but all it came up with is this:
Status: Creating directory ‘/wp-content/themes/semplicemente/buddypress’…
Command: CWD /wp-content/themes/semplicemente
Response: 250 CWD command successful
Command: MKD buddypress
Response: 550 buddypress: Permission denied
Command: MKD /wp-content/themes/semplicemente/buddypress
Response: 550 /wp-content/themes/semplicemente/buddypress: Permission deniedš
November 11, 2014 at 12:20 am #228851In reply to: All members tab / count
shanebp
ModeratorPlease use the
codebutton to format code you paste into this forum.To remove the count…
Assuming you aren’t using a language translation file, try this in your bp-custom.php file.function john_gettext( $translated, $original_text, $domain ) { if ( 'buddypress' !== $domain ) return $translated; switch ( $original_text ) { case 'All Members <span>%s</span>': return 'All Members'; default: return $translated; } } add_filter( 'gettext', 'john_gettext', 20, 3 );November 10, 2014 at 11:33 pm #228848In reply to: Buddypress tabs !!
mena__99
Participanti can learn a tutorial or too to get this part done .
ofcourse i have no idea what ajaxing means .. but no please no refreshing pages , if i see it poor everyone else will see it poor.
i already have shortcut plugin that i have mentioned above.
[Shortcodes Ultimate]this is how the shortcode look like for 3 tabs
[su_tabs][su_tab title=”Title 1″]Content 1[/su_tab] [su_tab title=”Title 2″]Content 2[/su_tab] [su_tab title=”Title 3″]Content 3[/su_tab][/su_tabs]i have 3 Titles and 3 COntents … i suppose to put title on those titles and maybe the function in the content parts …
it doesnt look so hard maybe i can do that in Bp-custom.php … and refer to the functions somehow , i will need some help with that tho please.
where to start ? what code i should try ?also i would like to check if bp_custom.php is working because i tried some couple of codes , the never work or gave any error or changes.
yes i have it in /wp-content/plugins … also in buddypress folder … but it doesnt seem to be doing anything at all ! .. please can we also make a test to check if everything is working correctly
???November 10, 2014 at 9:19 pm #228837In reply to: Edit the Register (Registration page)
joetheboss1998
Participant@mercime Thank you for replying
I dont understand what you mean by the child theme? I am using “semplicemente” so I click that folder in FTP then do I add a new directory named “buddypress” then add a another one called “members” and then in this folder/directory I add a file named register.php and copy over all the code from
ā/wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.phpā
Is this correct? @mercime
– Joe
November 10, 2014 at 8:39 pm #228836In reply to: Show content for specific BP Groups only
Tunn
ParticipantI was inspired a bit from here: https://svn.buddypress.org/branches/1.6/bp-groups/bp-groups-functions.php.
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 8:00 pm #228832mmaccou
ParticipantThis helps a lot thanks!! I tried activity plus, but I didnt like the way it posted to the activity feed. Just posting the URL into the activity form that is standard with Buddypress works great for audio or video, but for some reason image URLs do not post. I would also like the option for the user to upload images. I dont want them to upload video since I heard the size of the video can cause other complications. I will try rtmedia. Hopefully I can find a way to customize it to only allow the user to upload images – and still post video via youtube or another site.
Do you have any estimate for when mediapress will be available?
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 4:49 pm #228817In reply to: Total number of posts
Fugglet
ParticipantI don’t see anything with that directs me towards my avatar area in the forum.
I’d like to place it under the avatar.
Same deal for my website http://blazeplay.com/forums/topic/hi/Isn’t that something you should do inside the buddypress or bbpress files? It might just be me being a bit confused here.
Or can I see which file it’s in by using Firebug in Firefox or similar?
November 10, 2014 at 4:44 pm #228816In reply to: Total number of posts
Henry Wright
ModeratorNo. It goes into your template. So for example, if you wanted to display the count in your member profile header, then you’d put it in member-header.php.
Take a look at this article for more info on the BP template hierarchy for how to set up templates (if you don’t have them already).
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 1:20 am #228799In reply to: How do members create a forum topic and a group?
@mercime
Participant@kris35 You should still be able to create a group using the member dropdown menu on the right side of the admin toolbar Groups > Create assuming that the super/site admin enabled group creation in Settings > BuddyPress > Settings. Best place to ask is at the theme author’s forums as the theme is supposed to have BuddyPress support.
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 9, 2014 at 9:33 am #228792In reply to: Buddypress comment notification
mcpeanut
Participant@sbaglia i too would like to achieve this but have been so busy with doing other things that i have not even looked at how or if this could be done yet, so i +1 this request if anyone has any info on how to do this? it would be awesome if users received notification on blog post comments or for me especially custom post type comments. to me this would infact give complete social network functioning throughout my entire site this way and not just on the buddypress pages.
November 9, 2014 at 9:23 am #228791Hugo Ashmore
ParticipantBeauty of forums are their archives, the question has arisen a few times:
https://buddypress.org/support/topic/how-to-activate-existing-wp-users-as-bp-members-effectively/I needed a solution myself a few years back to activate imported users so ran a function up and uploaded to gist:
https://github.com/hnla/force-show-bp-usersJust updated it to reflect BP 2.0 changes to last activity to use ‘bp_update_user_last_activity()’ – it takes a slightly different approach in running only as admin and requiring that user runs the script by passing a get variable on the url ?action=force-active just to ensure script wasn’t run by accident or repeatedly also it checks and runs on a user id only if that user has no existing entry as I had existing users, I also didn’t want them all to have same time stamp so added in a delay on each iteration of the loop so each had a unique timestamp and just to allow breathing space between updates if loop particularly long.
Updates to script are untested at this time.
November 9, 2014 at 4:11 am #228787In reply to: 2.2 top features
donburikun
ParticipantLoving Buddypress 2.1.1. My only big request would be with regard to Private messaging:
1. Allow users to ignore (silently block) users from private messaging them. For example, if you receive a PM from a user you do not wish to converse with (troll, spammer or some other form of harassment) you can simply click “ignore” or “block” to block this user(s). The offending user is not made aware of this and future PM’s send by this person are simply not seen by the recipient while keeping the offender unaware.
Users can edit their block/ignore list to remove/add users from it.
2. Provide site admins the option to prevent users from PM’ing multiple users at the same time.
That’s pretty much it. A simple request that would have a positive impact IMO. Looking forward to the next release. TThanks.
November 8, 2014 at 3:34 pm #228593shanebp
Moderator>Buddypress is waiting for the first login of each user
At which point it will add a last_activity timestamp.
The easiest solution is to add those timestamps for everyone via a script.
Put this code in your bp-custom.php file, then open your site in a browser.
Then remove the code – or it will update the timestamp on every page load.function daten_add_last_activity() { global $wpdb; foreach ( $wpdb->get_col( "SELECT ID FROM $wpdb->users" ) as $user_id ) { bp_update_user_last_activity( $user_id, bp_core_current_time() ); } } add_action('bp_init', 'daten_add_last_activity' ); -
AuthorSearch Results