Search Results for 'wordpress'
-
AuthorSearch Results
-
August 13, 2015 at 10:56 am #243132
In reply to: No Change Avatar link and url
danbp
ParticipantNo thank you ! If you need someone to get the job, hire a dev. You could post at the official WordPress Jobs Board at https://jobs.wordpress.net and/or here at https://buddypress.org/support/forum/plugin-forums/bp-jobs-board/
August 13, 2015 at 6:59 am #243109atfpodcast
ParticipantYes sir the bar is there when are not logged on. I added show_admin_bar( true ); in a function plugin and that did not work. I tried the 2014 theme with the same results. no tool bar. THe one i deactivated was the one from stranger studios hid admin bar to non admins and and I deactivated that.
https://wordpress.org/plugins/hide-admin-bar-from-non-admins/August 12, 2015 at 10:30 pm #243100In reply to: Need urgent help with BP notifications
danbp
ParticipantPlease use the code button when you publish code !
First, you can’t use a function name twice. (setup_globals)
Second, it’s more easier to do after reading the correct documentation:And to find some answers once you have this information:
http://stackoverflow.com/questions/23148948/add-a-custom-notification-in-buddypressThe dev discussion around the new notification system:
https://buddypress.trac.wordpress.org/ticket/5148And the appropriate filter
bp_notifications_get_notifications_for_userwhich let non BP component hook into notification:
https://buddypress.trac.wordpress.org/changeset/7578August 12, 2015 at 10:27 pm #243099In reply to: Creating marketplace using buddypress
Henry Wright
ModeratorYou could try looking through the WordPress Plugin Directory first to see if any of the functionality you need has already been made available. Once you’ve exhausted the free options, recalculate your development requirements and hopefully the developer effort needed will have reduced somewhat.
August 12, 2015 at 10:02 pm #243098In reply to: Profile Pic upload failure
danbp
ParticipantHi,
i’m not familiar with bp-attachment yet, so sorry in advance.
First, I would check that BP is installed and setup correctly and test it with Twenty something theme, and all other plugins deactivated.An error occurred. Please try again later.is only used in one place:bp-core/bp-core-attachment.php
This error is related tobp_attachments_get_plupload_default_settingsfunction, which controls some default settings to get plupload to work on your install.Read through it to see what is checked by this function, and maybe you will have an idea of which plugin or theme is messing up the upload process. It’s probably nothing important (pictures are uploaded), but you see that message, which is weird, of course. A little js conflict perhaps. Or a plugin with some bad code or not correctly updated…
The other reason i tell you to re-check BP settings, is this URL to a profile.
http://www.adventureridingnz.co.nz/members/members-2/martin_worswick/
Can you explain why you use/members/members-2/and how you built it ?Usually, a profile URL looks like this: `http://www.adventureridingnz.co.nz/members/martin_worswick/
`
As the attachment API use js, it is possible that the uploader doesn’t find the correct way to end the upload, or something like that, due to this URL.Headlights call from a Guzzi. 😉
August 12, 2015 at 6:30 pm #243094In reply to: Creating marketplace using buddypress
djsteveb
Participant@olliecard – I’m sure there are many ways to accomplish this, however I am not sure that buddypress is easily adaptable to some of the requirements – privacy for certain things, restricting profiles and such. I hope someone can chime in an share methods for using BP in this way, I’d love to see those options.
You could play with things like s2member for some restrictions and payments even – but restricting BP stuff is a challenge I think. Using other member and restrictions plugins with regular wordpress is pretty solid.
I believe you may be able to achieve your goal using some other WP plugins – there are many others that get into profiles, membership, restrictions, classifieds and such.
It might be 50 hours of work to mash all the various components together in a perfect way – and if so you may want to look at what wpmudev has withe their “membership 2” plugin and others that mix with it. wpmudev peeps had quick answers and solutions for something similar I posted about there years ago. I think their prices are double what they should be – but the support there exists, and if you are looking at a serious project it may be best to get into a professional support system like that.
Of course you would mix and match some of the free plugins in the wp-repo and probably come out with something – press permit, profile plugins, s2member – custom fields, tweak some themes – maybe even go WP-MS multi site for some semi-separated static things – and you may achieve what you are describing as well.
I’d love to see others post about other options, and I’d love to see BP have more fine grained control over things – it’s moving in that direction with things like user levels and such so the future with bp is possible, I just don’t think it’s there yet, and likely won’t be playing well with others anytime soon – and getting code help with BP – even if you offer to pay for it – is not the easiest thing in the world.
2 cents from a random user – not an expert
August 12, 2015 at 4:49 pm #243091In reply to: Photo upload
chicho1969
ParticipantYou may try this pluging: BuddyPress Activity Plus, I am pretty sure that it doews what you are looking for. link; https://wordpress.org/plugins/buddypress-activity-plus/
August 12, 2015 at 4:33 pm #243090In reply to: Wp Photo Album Plus – works 100% with Buddypress!
Jenny
ParticipantHi there,
Unfortunately the website I used wp album plus on, is my client’s private social networking website,by invitation only, so I can’t share his website link here.However I assure you that it does indeed work properly with Buddypress. If you see this support thread below, I added a tinypic link in one of the posts there, which shows a screenshot of how albums look on the front end, using buddypress and wp photo album plus plugin. If you use the echo code in this support thread, then it will work with Buddypress, no problem.
August 12, 2015 at 4:01 pm #243087In reply to: Need urgent help with BP notifications
chicho1969
ParticipantOk, now I am trying this:
//function class function setup_globals( $args = array() ) { global $bp; $sr_notifications_test_slug = 'sr_notifications_test'; parent::setup_globals( array( 'id' => 'sr_notifications_test', 'slug' => $sr_notifications_test_slug, 'notification_callback' => array( $this, 'sr_format_notifications_test' ) ) ); /* Register this in the active components array */ $bp->active_components[$sr_notifications_test_slug] = 'sr_notifications_test'; // do_action( 'setup_globals' ); } //format notofication function sr_format_notifications_test( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) { switch ( $action ) { case 'my_test': $link = get_permalink( $item_id ); $text = 'Test Notification'; $return = apply_filters( $filter, array( 'text' => $text, 'link' => $link ), $link, (int) $total_items, $text, $link, $item_id, $secondary_item_id ); break; } do_action( 'sr_format_notifications_test', $action, $item_id, $secondary_item_id, $total_items ); return $return; } //Notification added to DB: bp_notifications_add_notification( array( 'user_id' => $user_id, 'item_id' => $activity->id, 'secondary_item_id' => $activity->user_id, 'component_name' => buddypress()->activity->id, 'component_action' => 'my_test', 'date_notified' => bp_core_current_time(), 'is_new' => 1 ) ); print_r ($bp->active_components[$sr_notifications_test_slug]);and this is the error I have: (still the same)
WordPress database error: [Table 'WP_db_funs.n' doesn't exist] SELECT * FROM n WHERE component_name IN ('activity') AND component_action IN ('my_test') AND is_new = 1 WordPress database error: [Incorrect table name ”] INSERT INTO (user_id,item_id,secondary_item_id,component_name,component_action,date_notified,is_new) VALUES (0,0,0,'activity','my_test','2015-08-12 15:57:21′,1)Please if anybody Knows about this I will apreciate any help 🙁
Table ‘WP_db_funs.n’ doesn’t exist how come?? table n ??
August 12, 2015 at 3:12 pm #243083In reply to: No Change Avatar link and url
djsteveb
Participant@amedic – check your permalinks.. wordpress ->settings -> permlainks – make sure they are not set to default.. maybe change them anyhow, save.. change to pretty permalinks (like /postname) save again.
MAke sure there is no notice at the bottom of that screen when you click save – some servers will have a notice at bottom of screen saying “wordpress can not write to your htaccess file, please copy this code and manually update your htaccess) –
August 11, 2015 at 9:36 pm #243060In reply to: [Resolved] Add Count Near Nav Menu
danbp
ParticipantI tested the snippet on Buddy theme, so i’m pretty sure you have a user menu. This menu is on WP’s Toolbar. You see it when you’re logged in.

To choose an item position, you have to do it differently, as explained here:
[Resolved] Position Notification Counter Bubble after Specific Navigation Tab ID
For more about menu handling and functions, see WP Codex, as this is not really related to BuddyPress. Now it’s your turn to work a little !
August 11, 2015 at 8:14 pm #243056In reply to: [Resolved] please help me change css in php
Quinn Goldwin
ParticipantSpecial thanks to Brajesh Singh at Buddy Dev for coming up with a solution!
August 11, 2015 at 6:50 pm #243050In reply to: Unable to start a fresh BP install
danbp
ParticipantCheck also that your site has the minimum requirements for WP and BP.
PHP version 5.2.4 or greater
MySQL version 5.0.15 or greaterphp_memory_limit 32 mo / 64 recommended if BP and some other plugins
htaccess must contain
RewriteEngine On
Much more here: https://codex.wordpress.org/New_To_WordPress_-_Where_to_StartAugust 11, 2015 at 5:31 pm #243046In reply to: Unable to start a fresh BP install
djsteveb
Participant@toggerybob – if you did all that and nothing is working – I would delete everything and do a fresh install of wordpress first. Then Bp..
you could backup your stuff you got now – zip files and such… but your site is basically blank right now – so a fresh install, deleting all your old wordpress files and connecting to a new blank database may be the easiest way to hash this out.
August 11, 2015 at 4:00 pm #243030In reply to: Unable to start a fresh BP install
djsteveb
Participant@toggerybob
change your permalinks to pretty permalinks in the wordpress settings,
then activate bp.. then go run through the config / page associations (https://codex.buddypress.org/getting-started/configure-components/ )should be good to go at that point.. you may need to create a few blank “pages” like activate and register – or they may populate…
August 11, 2015 at 12:22 pm #243017In reply to: how to use with asp.net
danbp
ParticipantThis is not a BuddyPress related question. Please read here:
https://codex.wordpress.org/Installing_on_Microsoft_IIS
http://www.microsoft.com/web/wordpressAugust 11, 2015 at 8:28 am #243004In reply to: Hide friendshp in sitewide activity stream
danbp
ParticipantCould it be possibly caused by other plugins?
Yes, it’s possible, but i doubt it’s the case. To get sure, you can deactivate all plugins except BP and track down a culprit.
If the page or the whole site is blank after adding custom code, it’s generally due to missing tags or a php error.
Errors can also be generated by software who modify the file format. For example if you use the WP editor to add something to bp-custom, and you’re on the visual tab, you get weird results. Same thing if you edit bp-custom locally with Word or other such text-editor….
More about this here.
August 10, 2015 at 10:13 pm #242988In reply to: requesting codex edit capability
danbp
Participanthaha, @hnla <3 the side effect of wp’s teaser:
One central account.
One unified admin area.
One click install.… how long whould it take to finally repair & make this forum and codex pages to work correctly, with a clear admin ?
2008 – BuddyPress is born.
2015 – shoemaker’s son always goes barefoot !August 10, 2015 at 11:40 am #242960In reply to: Disable auto E-Mail and activate users manually
Henry Wright
ModeratorTry the BP Disable Activation Reloaded plugin.
August 10, 2015 at 10:10 am #242959In reply to: requesting codex edit capability
herbmiller
ParticipantHi Hugo, I created bobbingwide and herbmiller on wordpress.org on 21st Dec 2010.
My other ID, vsgloik came later, on 30th Apr 2012.For each account I can see the Create New Page link, but it leads to
You attempted to access the "BuddyPress Codex" dashboard, but you do not currently have privileges on this site. etcThe Visit Dashboard link tells me
You do not have sufficient permissions to access this page.This smacks very much of WordPress TRAC 29714, a duplicate of 22895.
August 10, 2015 at 7:35 am #242945In reply to: Why BuddyPress activity stream No sharing?
djsteveb
Participant@lo133 – there are many, many reasons for NOT..
but in case you are looking to do such (a horrible thing for your site, your users, their privacy, crappy buttons cluttering up..)
A quick search via startpage.com shows there are several discussions about this and it appears that multiple people have discussed and come up with ways to do such a (n evil) thing..
including.. https://wordpress.org/plugins/buddypress-social/
discussions for doing this with various methods outlined from three years ago – https://buddypress.org/support/topic/share-activity-on-social-network/I would imagine there are some updated options as well, or it should be simply to tweak existing code that is already in the wild and gpl to do this today.
of course you could also search the forums here and find more info about that more than likely – and a search in the wp-repo may bring up some free options to test that may do exactly what you are describing.
I myself am glad this stuff is not included in core – as I would be searching for ways to remove every single last little bit of any third party code / assets and or dependencies..
kind of like what needs to be done with recent updates of wordpress core – removing google fonts, removing gravatar, third party emoji, blah blah. meh.
August 10, 2015 at 6:30 am #242943In reply to: Custom display of sitewide notices
chlab
ParticipantHey thunksalot
You have to upload widgets to your theme directory, never modify the contents of a plugin directory.
So e.g. add a “widgets” directory in your theme directory and upload it to there. Then you should see a “Smart BuddyPress Sitewide Notices” widget in the WordPress backend. Activate that and disable the default one.August 9, 2015 at 8:56 pm #242936djsteveb
ParticipantA similar recent thread with some info: https://buddypress.org/support/topic/create-new-login-widget/
So we are clear, a regular “wordpress login widget” IS a buddypress login when you have BP installed.. (99% sure on this)
August 9, 2015 at 8:39 pm #242933djsteveb
Participant@wpguru6
you MAY have a “bp login widget” under widgets in themes-appearance-widgets and not need to get into the actual php codes.. and there are plenty of other addons in the wp-repo as well ( https://wordpress.org/plugins/search.php?type=term&q=login+widget )add a custom post or video with another widget perhaps?
August 9, 2015 at 9:03 am #242923In reply to: Accidently deleted all buddypress pages
djsteveb
Participant@gioabove5k
Should be no big deal..
if you are sure you permanently deleted them (also emptied the trash in wp or whatever) – then just create a 5 new pages.. register, activity, groups, activate, members.each one blank – check to see if wordpress makes your new pages “register-2” or not – if so – you may have just deleted the page, and not actually permanently removed it via the trash thing…
then go into your components settings and make sure the things are linked there –
no big deal at all
-
AuthorSearch Results
