Search Results for 'wordpress'
-
AuthorSearch Results
-
July 5, 2014 at 7:22 am #184816
notpoppy
Participantif you look in the wp_groups_groupmeta table at your group ID 26 and that 127650 value does NOT match the bbPress forum ID you expect it should match.
OK having checked the forum IDs in BBPress the value for this group should be 127650. When I check that in
wp_groups_groupmetaI find the same value next to group 26, which is correct. I had a look through all theforum_idsinwp_groups_groupmetaand they all seem to be correct.Also did you try updating via the ‘Group Forums’ Edit Screen UI?
Sorry I don’t know what the ‘Group Forums’ Edit Screen UI is. In the WordPress admin pages I have menus for Groups (/wp-admin/admin.php?page=bp-groups), Forums (/wp-admin/edit.php?post_type=forum), Tools>Forums (/wp-admin/tools.php?page=bbp-repair) and Settings>Forums (/wp-admin/options-general.php?page=bbpress), but I can’t see anything for ‘Group Forums’.
However I do note that on the forums page although the ‘Edit’ button shows the correct forums_id values for each forum, the ‘View’ button shows an incorrect link for the problematic forum.
July 5, 2014 at 1:32 am #184813@mercime
Participant@giorgosnl Next time, please start a new topic as moderators could miss your post.
But when I click on upload image it redirects to my profile and will change admins image??
When I checked the issue you posted, the avatar was correctly changed in user’s profile but the update did redirect after completion to the Site Admin’s profile page. The issue was also posted at https://buddypress.trac.wordpress.org/ticket/5580 and fix is slated for BP 2.1.
If your issue is not resolved with the patch after changing to one of WP Default themes and deactivating all plugins except BP to exclude conflicts, please feel free to create a new trac ticket using your WP username and password to log in.
July 4, 2014 at 5:17 pm #184807shanebp
ModeratorYou’ll probably get a better answer using the support forum for that plugin.
My guess would be that you are hooking too early and the remove_action calls fire before those add_actions exist.
Maybe try a hook other than ‘plugins_loaded’.
Have you tried ‘bp_include’.July 4, 2014 at 1:56 pm #184803In reply to: Remove add_friend button
shanebp
ModeratorFilters have to return something.
You’re only returning if a condition is met.
So no buttons will appear.And you aren’t passing the $arg, so you can’t return it.
Try:
function hideAddFriend($button){ $caps = get_user_meta(bp_get_member_user_id(), 'wp_capabilities', true); $roles = array_keys((array)$caps); // Hide friendship buttons if(in_array("inactive", $roles)){ return ''; } return $button; } add_filter( 'bp_get_add_friend_button', 'hideAddFriend');also – are you sure that your get_user_meta approach to retrieving ‘inactive’ is working?
July 3, 2014 at 12:17 pm #184770In reply to: [Resolved] Changing the default mystery man avatar
Abidemi
ParticipantThe way I achieve this is by using wordpress blank avatar and css.
In wordpress dashboard Settings -> Discussion, change default avatar to Blank.
In your css file add this (after uploading the image you want to use ->.avatar {background:url(image/custom_avatar.png) 0 0px no-repeat!important;background-size:100%, 100%!important;}
July 2, 2014 at 11:03 am #184677In reply to: Disable posting to users profiles
jeremiahward
ParticipantThanks for that clarification. All of my other modifications have been done through CSS and saved to the stylesheet of my WordPress child theme.
Anyway, the second questions still stands, when I downloaded the file the lines must be different as there are a bunch of blank lines and line 9 is <head>. Can you specify what I should be removing?
July 2, 2014 at 1:16 am #184655In reply to: Activity stream not showing comments
Dainismichel
Participanti think this setting is on the options-reading.php page in WordPress 2.0.1 and is now called:
Search Engine Visibility Search Engine Visibility Discourage search engines from indexing this site It is up to search engines to honor this request.…not 100% sure though…
July 1, 2014 at 5:21 pm #184642In reply to: Disable posting to users profiles
@mercime
ParticipantShould the child theme be under themes or templates?
@jeremiahward I assumed that you created a child theme of your theme so that whatever modifications you make won’t be overridden when you upgrade your theme. As noted in WP codex, the child theme should be in the same folder as your parent theme is, i.e., wp-content/themes/your-child-theme-folder. Thus, if you go the child theme route, that index.php file mentioned above would go into wp-content/themes/your-child-theme-folder/buddypress/activity/index.php – so should the other BP files you modifiedJuly 1, 2014 at 11:03 am #184626In reply to: I need help please (Urgent)
Jrzwv
ParticipantThanks for the quick response sir. God bless you. Sir you did not respond to the issue that is solely related to buddypress:
my all member count showing 1322 and Viewing member 1 to 20 (of 1,325 active member). I have just 14 users, please how do i correct this?
i have used buddypress repair tool which did not fix it. Sir Please help.
wordpress version: 3.9.1
buddypress version 2.0.1
http://seenloud.com//members/seenloud/July 1, 2014 at 11:01 am #184625In reply to: [Resolved] Remove RSS Feeds
onesheep
ParticipantSo this plugin seems to do the trick.
https://wordpress.org/plugins/private-community-for-bp-lite/
July 1, 2014 at 10:21 am #184619In reply to: Activity stream not showing comments
Dainismichel
Participanti am still having this problem and have updated to the latest versions of buddypress and wordpress…
July 1, 2014 at 6:07 am #184616karlajw
ParticipantHi @mercime, thanks for the suggestions.
I finally had a chance to create a test site where I could deactivate and re-activate everything without worry.
Turns out it’s the NextGen Gallery plugin that is not playing nice with BuddyPress
https://wordpress.org/support/topic/does-not-work-with-buddypress?replies=7#post-5743296No fix for it yet. I will just have to keep NextGen Gallery deactivated until there’s a fix or replace it entirely.
Karla
July 1, 2014 at 1:59 am #184611In reply to: [Resolved] Treating groups like users?
@mercime
Participant@godavid33 some links which could help you
– https://wordpress.org/plugins/buddypress-groups-extras/
– https://buddypress.org/support/topic/how-to-add-fields-to-group-creation-with-group-extension-api-please-read/page/3/
– http://buddydev.com/buddypress/blog-categories-for-groups-plugin/
– https://wordpress.org/plugins/bp-groupblog/
– https://wordpress.org/plugins/external-group-blogs/July 1, 2014 at 1:32 am #184609In reply to: Disable posting to users profiles
@mercime
Participant@jeremiahward copy over https://buddypress.trac.wordpress.org/browser/tags/2.0.1/bp-templates/bp-legacy/buddypress/activity/index.php to your child theme folder following directory structure of your-theme/buddypress/activity/index.php and remove lines 7 through 11
June 30, 2014 at 9:17 pm #184599In reply to: Activity Meta Buttons show up Vertically
mixtapela
Participant@3rdEyeGuam I posted that fix last week in this thread.. Unfortunately, the styling code didn’t fix my alignment or functionality of the meta buttons. Buttons such as “Delete” “report user” and “Share” are still showing up vertically until I click on “Load more”.
Theme support has suggested a complete fresh install of the database and wordpress even after I did a clean install of the theme.
June 30, 2014 at 4:17 pm #184589In reply to: Make "Registration" page full-width
@mercime
Participant@avfregeau go to Pages > All Pages, click to edit the Register page. When the register page panel opens up, choose the one column template which the theme you’re using seems to have per theme tags https://wordpress.org/themes/fruitful
June 30, 2014 at 4:10 pm #184588@mercime
Participant@dainismichel Please make sure that any commercial theme you purchase is compatible with the latest version of BP. If it claims it is compatible with latest BP version, then they should fix the issue/s you have encountered.
Re child theme of the BP Default Theme: if you find that after adding
add_filter( 'bp_do_register_theme_directory', '__return_true' );to your theme’s functions.php file that there are still issues, please post a ticket with all relevant information at https://buddypress.trac.wordpress.org/newticket by logging in with your WP username and passwordBuddyPress is compatible with nearly all WP themes which do not replace the_title and the_content with their own proprietary/framework tags.
June 30, 2014 at 2:35 pm #184584In reply to: Register Page redirects to wp-admin page
@mercime
Participant@canadadre Please do confirm with woo first about compatibility with BP. As for Genesis themes, they have https://wordpress.org/plugins/genesis-connect-for-buddypress/ but it’s always best to confirm with them first
June 30, 2014 at 10:42 am #184575Dainismichel
Participantfor one site, i just used bp-default directly because i figured it would always be there and would always work.
but i did find this:
If you are already using bp-default, either directly or as a parent theme, don’t worry.
at the link you recommended…
right now, i am less interested in making buddypress look and feel the way i want it to — than in just using wordpress community software that actually works.
with BuddyPress, over the years, i noticed that the best strategy is just to leave it alone and not try to do anything with it, because then it’s just going to break in unforseen ways — and not even “configuration,” but just implementation can and will be riddled with errors and problems and headaches.
so, for one site, yes, i used a child theme, but for the site in question, i didn’t. i just figured some form of “buddypress default” would always be there — and it would always work.
if “it” changed, i would just configure it — but i would not need to dig around and search for errors and fix things and ask at the forum and have peoples’ emotions flare just cuz i am interested in having the software work — etc.
i also figured it would be a theme buddypress would always maintain and upgrade — and improve. for example, have you ever seen the activity stream in twentytwelve? while there may be classier activity streams around — for 2012 — it was easily one of the nicest looking activity streams available. so — i figured buddypress would notice that — and just continuously improve whatever the “buddypress default” theme was…
i “might” make a child theme now — but i have now looked around at some commercial themes — so maybe i’ll buy one of those.
really — it is about immediate functionality and convenience. it needs to work, first and foremost, and it needs to “look good” as well (but it needs to actually work — first).
anyway — what this development at BuddyPress did — is it sent me searching for a commercial theme to upgrade to. not sure if that was the intended result, but it’s what it did in my case.
best and blessings and thanks for all the work you do, let us know if you ever plan on releasing a kind of “default theme” in the future ok?
sincerely,
dainisJune 30, 2014 at 1:17 am #184564In reply to: Multi Select Box in Profile fields doesn't work
elihub
ParticipantI did the same research as @kansas3d – multiselect only saves the last of multiple fields on the xprofile edit screen. I am running BP 2.0.1 (WP 2.9.1), and have confirmed that rolling back to BP 1.9 (not BP 2.0) fixes the issue. I disabled all plugins and experienced the same problem in my custom theme (built on Bones, not TwentyFourteen-derived).
Converting multiselect to checkboxes allows for multiple value saving, but is not optimal. I have tracked down some similar tickets (#2176 from BP 1.2 and there’s another somewhere…)
Update – it appears there is an open ticket (#5672) related to this:
https://buddypress.trac.wordpress.org/ticket/5672June 29, 2014 at 6:09 pm #184554In reply to: Different profile types and different user roles
kamillamonkey
Participant@noizeburger i have followed all the instructions. I don’t get any errors. My problem is the User Role doesn’t change upon new registration. It wont change it from the DEFAULT ROLE set in WordPress/Settings/General/New User Default Role [Author]. Any Suggestions?
June 29, 2014 at 1:41 pm #184551In reply to: Buddypress members/group map/locations
shanebp
ModeratorI’ve done several maps:
Wordpress posts, based on editable location field: http://www.newspebbles.com/map/
BuddyPress members, based on signup / profile field: http://www.deeptimejourney.org/members-map/This does markers just for groups: https://github.com/naton/bp-group-location
The issue with a distributed plugin is the time-based limits imposed by various geocode web services. So it’s a scaling issue. There are ways to get around that for per-site custom plugins.
June 29, 2014 at 10:38 am #184544In reply to: Buddypress members/group map/locations
jayce103
ParticipantI have seen this in action already on another site, I am just not sure whether it is a buddypress site or even a wordpress thing.
All the evidence looks like it is as it has activity/groups, etc but it is a privately built website so not sure.
http://www.rvillage.com is the site and the accounts are free if anyone as 5 mins to go and have a look at the explore page on the site. This is the page that has the functionality
Jayce
June 29, 2014 at 8:43 am #184543In reply to: Plugin to add extra "social layer"?
djouonanglandry
BlockedI think what you are looking for is this pkugin:
https://wordpress.org/plugins/bp-group-hierarchy/
Please check it. This plugin allows group creators to create groups under groups.
June 29, 2014 at 4:06 am #184537In reply to: Buddypress not loading on installation
innovationinitiator
ParticipantThanks @mercime. It does seem to be a theme problem. I’m using Divi by Elegant themes. I guess I’ll need to create a subdomain and a separate installation of WordPress to make this work.
Best,
-
AuthorSearch Results