Search Results for 'buddypress'
-
AuthorSearch Results
-
December 28, 2014 at 5:00 am #231113
In reply to: Load More or Pagination for activity stream
Security
ParticipantHi@mmaccou the issue is related to trigger(content) used in js only as far as i remember may be this thread comes handy for you,btw which version of buddypress and wordpress you are using i hope its latest one.
ThanksDecember 27, 2014 at 11:04 pm #231110In reply to: How to add ads in activity streem
Henry Wright
ModeratorThe activity directory template is /buddypress/activity/index-directory.php so you will need to make sure you have that created in your theme. The Template Hierarchy article will explain everything in more detail so be sure to check that out. Then you could use the code I provided in the thread you mentioned to insert adverts in the stream.
Hope that helps?
December 27, 2014 at 9:11 pm #231106emidio007
ParticipantI am sending the code, if someone is looking for such solution.
I added a line to the Filter. I wanted to modify directly the text “Only Me”.
$levels['adminsonly']['label'] = _x( 'only visible for me', 'Visibility level setting', 'buddypress' );function bpfr_remove_visibility_level( $levels ) { global $bp; if ( isset( $levels['loggedin'] ) ) { unset( $levels['loggedin'] ); } if ( isset( $levels['public'] ) ) { unset( $levels['public'] ); } $levels['adminsonly']['label'] = _x( 'only visible for me', 'Visibility level setting', 'buddypress' ); return $levels; } add_filter( 'bp_xprofile_get_visibility_levels', 'bpfr_remove_visibility_level' );December 27, 2014 at 7:39 pm #231103In reply to: [Resolved] admin bar mobile css
danbp
ParticipantIf you want help, you must give details: about what you did and how, theme name,…
That said, the Toolbar belongs to WordPress.
Some ideas here:
BuddyPress use only a few and very minimalistic CSS. See at the end of /bp-templates/bp-legacy/css/buddypress.css for some styles applying to smartphones.
December 27, 2014 at 5:51 pm #231100danbp
ParticipantIs it possible to override the function as usual ?
No, not as usual. setup_globals function is part of a class, you have to extend the class.
See better in bp-xprofile-function.php to get some filters.
If the goal is to define user types, you can try this plugin or at least study his code to find a way to achieve your customization.
Or much more simple, define the visibility level and disallow changes.
December 27, 2014 at 1:29 am #231090In reply to: Men Woman Couple
danbp
ParticipantAnother approach maybe.
See if this topic can help you.Female members are served a directory of males and male members are served a directory of females.
Adding an if statement for couples wouldn’t be to difficult. 😉
If not, use gravity forms who, i believe, allows such conditionnal forms.
December 27, 2014 at 12:38 am #231087In reply to: Access to BP functions in external code via wp-load
johnmontfx
ParticipantThanks Dan — while they are separate plugins I’m sure you’ll agree that they are very much joined at the hip (as bbPress even includes BuddyPress functions). What was really nice was the ability to bring in extended Vbulletin profile information over to to BuddyPress extended profiles at the same time as importing to bbPress. Took some custom coding, but the code in both plugins made it fairly clear about how to accomplish it. Makes it easy to use in both plugins.
As far as what I’m trying to do with BuddyPress, it’s basically the issue in the first post. I’ve traced the code a bit more and my main issue right now is simply figuring out if I could get access to the xprofile_get_field_data function. wp-load.php doesn’t seem to call the bp-xprofile-loader.php, so $bp->profile->table_name_fields is empty.
In the meantime, I’ve just issued some mysql db calls to grab the info…but I’d love to use the built in functions if I could.
December 26, 2014 at 8:46 pm #231082In reply to: Buddybar issues with wordpress 4.1
Vibral
ParticipantYes, I spent quite a lot of time in the past coding in php/mysql, but never did anything in wordpress before. So I’m fine with digging around php code, and know what to look for if I can just get to the file which has the menu setup. I have done a little bit of editing; you can see on my site now if you log in, you get a few more things happening than usual for the login widget.
I reposted this question here .
Thanks again for the help on the main question!
December 26, 2014 at 8:12 pm #231080In reply to: how to remove comments in profile stream?
danbp
ParticipantThis is not a BP issue but a user setting error.
Go to Dashboard > Pages > Members – quick edit > deactivate Allow comments.
Do the same thing for all other activated components page.Check your WP & BuddyPress comments settings.
Check also your theme docmentation as it could be that he use a custom setting for comments.
If you don’t know or find, activate one of wp’s twenty theme and see if the issue is still there.December 26, 2014 at 7:40 pm #231076In reply to: Buddybar issues with wordpress 4.1
Vibral
ParticipantYes, I was just playing around – I don’t intend using it – I was actually looking for the theme that’s currently used on the buddypress.org site – this theme with the red bar on top – would you happen to know where I can find it? I like it since the buddybar isn’t right up top, so it’s more noticable.
I’ve also been looking for a way to extract the menu that you get from the buddy bar so as to use it as a sidebar widget. I have used the “(Buddy Press) Log in”, but when you log in, it doesn’t show the other options that you get with buddy bar, i.e. activity, profile, …, settings with the nice submenus.
I did try trawling the php code but I haven’t found it as yet. Is there an easy way to extend the Buddy Press login widget so that once you log in you get these other options as well?
Apologies if this is now going into another subject area – should I repost the new question as a new topic?
As to the original question, I think you solved it way back when you asked me to empty the pages trash and to rename the slugs. I still don’t know why my FF doesn’t work. I suspect that it is just not accpeting my log in, and that’s why I don’t get the bar. Also would explain why the login and register options don’t change. Perhaps the reason it doesn’t accept logins because I do all my wp admin through firefox? Anyway I’m prepared to live with it since it seems only the firefox on my local machine doesn’t get the bar.
Many thanks for all your help
December 26, 2014 at 7:07 pm #231070danbp
ParticipantYou’re question is more server oriented and a bit over the scope of this support. Anyway….
You can put different tables in different db on the same server, but how are you going to make WordPress aware of where each table is ?
In standart usage, multisite with BuddyPress is working with one WP, one DB and one BP plugin and as many sites you want (preferably as sub-domains).
To manage multiple db’s, try perhaps HyperDB.
Can’t help you more. Sorry. 😉
December 26, 2014 at 6:49 pm #231069In reply to: Access to BP functions in external code via wp-load
danbp
ParticipantYou’re welcome !
bbPress and BuddyPress are TWO separate plugin, and you’re here on the BuddyPress support. 😉If you have questions related to bbP, please visit their support for better chance to get the right answer.
As it is a bit unclear what you’re doing with buddypress for the moment, see here about vbulletin import into bbPress.
December 26, 2014 at 3:32 pm #231060In reply to: Access to BP functions in external code via wp-load
johnmontfx
ParticipantGrr…the subject should have been:
“Access to BuddyPress functions in external code via wp-load?”
December 26, 2014 at 3:20 pm #231059In reply to: Buddybar issues with wordpress 4.1
Vibral
ParticipantThere’s some progress now; I tested in IE and the bar looks great!
However, it won’t show in Firefox or my (windows) phone. Do you know why this is?
I suspected it was an out of date flash player, but I updated and still can’t see it.
The strange thing is that I can see the bar in wp-admin (in firefox), but not from the main site.Also, in firefox, on the pages that I can access, i.e. the groups etc, when I open those pages, I don’t get the same look as I get when I open in IE. In firefox, these pages don’t let me add new groups etc.
Also, when I log in with firefox, the login/register links are still there after login, whereas in IE after I login, the option becomes ‘logout’Clearly, with certain browsers, most of the buddypress functions are just blocked.
Did you test my sit eon IE or on Firefox?
December 26, 2014 at 1:08 pm #231054In reply to: Buddybar issues with wordpress 4.1
danbp
Participanthxxp://vibral.co.za/wp-login.php?action=register. This is correct and not an issue.
On the Toolbar (now that it is correctly showing), from left to right
WP logo icon with some related wp site and stuff in sub-menu
BuddyPress Admin menu (or network admin), and if multisite, access to the different other dashboards. As super-admin you will see all probably.
Note when network is activated, you have by default 2 dashbords anyway. The mainsite or network dashboard and WP’s dashboard.
Edit menu – depending your role on the site you access from here to new post, comments and so on.
And on the right, the howdy menu aka usermenu. Where sit a login/logout menu and all the access links to your buddypress profile, messages, groups, etc
So far, so good. But what do you want to achieve now ?
December 26, 2014 at 10:51 am #231050In reply to: Buddybar issues with wordpress 4.1
Vibral
ParticipantApologies, I was trying out a few things so I had re-checked the toolbar for logged out user.
I’ve unchecked it now.
I can see the login/logout button on the left sidebar; please have a look and see if the site is as it should be.If this is how it’s supposed to be, I would still much rather have the kind of toolbar that I get in wp-admin, or on this buddypress.org site. Is that possible?
Thanks in advance
December 26, 2014 at 4:19 am #231047In reply to: Buddybar issues with wordpress 4.1
Vibral
ParticipantThanks for replying @danbp
I’ve acted on all your notes, but there are still some issues. First in terms of what I did:
1. I did go ahead and upgrade the theme, but I also switched the theme to twenty-fourteen as I saw a buddypress video where this theme was in use and gave good results in terms of buddy press.
2. I’ve removed the definition as per your ticket link
3. I’ve refreshed my pages removing duplicates
4. I’ve deactivated the ‘Show the Toolbar for logged out users’The issues I still have:
1. The buddybar that I want is in my wp-admin, but not on my site. In fact there is an even better buddybar right here on this page (look up) which has the link to buddypress.org and “My Sites” which is needed for me since I’m running multisites. How can I get this bar on my site?
2. Having followed your instructions, there’s no toolbar at all, which is not what I want; I do want users who aren’t logged in to be able to do so without my added links in the site itself to a log/reg pagePlease advise; thanks in advance
December 26, 2014 at 12:36 am #231044In reply to: multi communities in one website
valuser
ParticipantTry bp multi network https://wordpress.org/plugins/bp-multi-network/ AND Networks + from http://wpebooks.com/networks/
Networks+ is a “premium” (small) plugin written by one of the authors of bp-multi-network and numerous (about 30) other plugins in the WordPress repository and it is fully supported.
Using buddypress and bbpress together with those two plugins you will be able to have separate communities with separate activity streams, forums, groups and blogs all in one wordpress installation and in one database. Membership is shared.
There may be other combinations of plugins that may work. The combination above does work.
December 25, 2014 at 10:05 pm #231037In reply to: Restriction for registering
surenpillai
ParticipantThank you. I went through the second round! installed even the one mentioned above
confronted “do not have associated wordpress pages” problem
searched for help and came up with https://buddypress.org/support/topic/do-not-have-associated-wordpress-pages/It all sounds very complicated to me. Is there somewhere a clear HOWTO to install this.
I have deactivated and deleted the plugin.(all sorts of spams including viagra!! were present on the pages)cleartalk blocked 80 spams! Thankfully I installed the spam blocker on time
December 25, 2014 at 9:24 pm #231036In reply to: Buddybar issues with wordpress 4.1
danbp
ParticipantTempera theme was recently updated and normally you haven’t to use the old buddybar.
So the define is of no utility… (see ticket)BP use now the WordPress Toolbar.
It looks also that you have 2 activity pages, 2 members page and 2 groups page. There should be only one. See if you have deleted pages, and clear the trash.
Also set up the pretty permalinks (anything but default), or at least re-save that setting page.Finally, make a test with one of wp’s default theme, bring anything to work, before activating Tempera.
I use another theme of the same author, and if like i suspect, there is the same theme customization tool in Tempera, you must be carefull with that theme settings.
In BP settings, you have an option to show/hide the toolbar to logged out user. Deactivate it.
And read the theme doc attentively ! 😉
December 25, 2014 at 6:27 pm #231033In reply to: Force a avatar
December 25, 2014 at 1:50 pm #231026In reply to: How to add ads in activity streem
UgoDimma
ParticipantYes i have it, https://buddypress.org/support/topic/add-ad-code-into-activity-stream/ you gave an instruction there, but please help me on where exactly i should put the code you mentioned and how best i can use it. Am not good in coding, but i can copy and paste code in the right place with right instruction.
thanks for the reply.
December 25, 2014 at 6:11 am #231022In reply to: Spam Issues
Security
ParticipantHi @atomonfire have a look at this thread which is quite related to your issue https://buddypress.org/support/topic/spambot-users/#post-230739
apart from that try plugins such as wanguard,bp security question.
I hope this helps
ThanksDecember 24, 2014 at 10:13 pm #231017In reply to: Pinterest Style Gallery
danbp
ParticipantDecember 24, 2014 at 4:27 pm #231010In reply to: [Resolved] ALL activity by user
Security
ParticipantAnd if that doesnt works try activating site tracking component from dashboard>>settings>>buddypress>>components tab and then check for logs from new Activity tab in your dashboard this will help you see all the activity of your site users from dashboard like who wrot new blog post etc
Note:I think the blog posts written after following the steps given in 1st post above will only appear in activity of your site and old blog posts will not appear
Thanks -
AuthorSearch Results