Search Results for 'wordpress'
-
AuthorSearch Results
-
February 15, 2015 at 6:45 pm #234529
In reply to: Buddypress 2.2.0-bp-languages doesn't work
r-a-y
Keymasterdanbp –
You’re right. My technique will work, but would get overwritten when translations are automatically updated.I just checked and WordPress saves automatic translations to
/wp-content/languages/plugins/so we should be safe if custom BP translation files are saved to/wp-content/languages/buddypressor/wp-content/languages.WordPress might say that there is a new BuddyPress translation, but if you’re using the custom method, then you can ignore the notice as BuddyPress will keep using the custom translation file.
To tell WordPress to stop fetching automatic translations for BuddyPress, see:
https://buddypress.org/support/topic/disable-automatic-translation-updates/#post-234528February 15, 2015 at 5:55 pm #234523In reply to: Profile pages disappeared after upgrade to 2.2
r-a-y
KeymasterSee:
https://buddypress.org/support/topic/version-2-2-0-and-is_page/#post-234315I would recommend applying this simple one-word patch to WP until WP 4.2 is released:
https://core.trac.wordpress.org/attachment/ticket/24674/24674.2.diffFebruary 14, 2015 at 9:30 pm #234497In reply to: what is "Pending" mean?
djsteveb
Participant@jessiewordpress
I would assume they are listed as pending because they did not get click an activation in email yes.Now does that mean that your server sent an email correctly and they actually recieved the email? Who knows.. sometimes my bp emails get auto-blackholed for some email services and users will never get an email from my bp site if they have say “gmail” or yahoo or something… (there are different methods for sending email via wordpress, some are less “flagged-as-spam-automatically” than others.. sometimes users do get the emails but they end up in a junk folder..
sometimes it’s spammers trying to setup a fake account and they never will click on activate…
if you start to get a lot of these, you might want to look into how your wp install is sending emails, what the headers look like, and see if you can adjust with something like a “wp mail via smtp” plugin or something.. and if you need to manage a bunch of pending users you might want to see if https://wordpress.org/plugins/unconfirmed/ is working with current bp version..
random thoughts, hope they help.
February 14, 2015 at 9:16 pm #234494In reply to: what is "Pending" mean?
@mercime
Participant@jessiewordpress in a way yes. Either because the activation email got caught in their spam folder, or they have not clicked on the activation link, or they did click on the activation link but did not log in yet.
February 14, 2015 at 12:11 pm #234476In reply to: Welcome email customize?
Henry Wright
ModeratorDo you know where that text comes from? I can’t find it anywhere in BuddyPress or in WordPress cores.
February 14, 2015 at 12:33 am #234462In reply to: Preventing spam registrants?
djsteveb
Participant@jessiewordpress – might want to check out either “good question” (change default question / answers!) – or ‘buddypress humanity’ as well. They have made a huge impact on the spam registration issues we used to deal with.
February 13, 2015 at 10:09 pm #234448In reply to: Preventing spam registrants?
Henry Wright
ModeratorPersonally, I’ve found the honeypot approach to be quite effective. Try Justin Tadlock’s Registration Honeypot plugin.
February 13, 2015 at 8:15 pm #234430In reply to: Pagination links have same href [Resolved]
r-a-y
KeymasterThe issue that the OP is referring to is member pagination.
I can confirm that this is fixed in BP 2.2.0.
danbp’s issue is related to pagination on notification pages:
https://buddypress.trac.wordpress.org/ticket/6205February 13, 2015 at 5:31 pm #234414In reply to: version 2.2.0 and is_page() [Resolved]
r-a-y
Keymaster@hnla – It’s related to this changeset:
https://buddypress.trac.wordpress.org/changeset/9322This issue was also noted on the following ticket about buddypress.org:
https://buddypress.trac.wordpress.org/ticket/6108#comment:2In BP 2.2, I tested
is_singular()on BP pages and it returnstrue.bp_is_user()also works as expected.If there are any other issues outside of
is_page(), please let me know specifically what the issues are, as I do want to address these.February 13, 2015 at 7:44 am #234388In reply to: Custom Profile menu
barodscheff
ParticipantThank you but your solution is outdated. I’ve found it also while searching.
And thats the big problem with buddypress. There was an update about one year ago and everything changed. So nearly all common customizations do not work any more.Thats the reason why the plugin ‘buddypress custom profile menu’ also doesn’t function anymore.
Fortunately I found the solution. It looks like this:
function profile_new_nav_item() { global $bp; bp_core_new_nav_item( array( 'name' => 'Contact Athlete', 'slug' => 'contact_athlete', 'default_subnav_slug' => 'extra_sub_tab', 'position' => 160, 'screen_function' => 'view_manage_tab_main' ) ); } add_action( 'bp_setup_nav', 'profile_new_nav_item', 10 ); // = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = function view_manage_tab_main() { add_action( 'bp_template_content', 'bp_template_content_main_function' ); bp_core_load_template( 'template_content' ); } function bp_template_content_main_function() { if ( ! is_user_logged_in() ) { wp_login_form( array( 'echo' => true ) ); } } // = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = function profile_new_subnav_item() { global $bp; bp_core_new_subnav_item( array( 'name' => 'Extra Sub Tab', 'slug' => 'extra_sub_tab', 'parent_url' => $bp->loggedin_user->domain . $bp->bp_nav[ 'contact_athlete' ][ 'slug' ] . '/', 'parent_slug' => $bp->bp_nav[ 'contact_athlete' ][ 'slug' ], 'position' => 10, 'screen_function' => 'view_manage_sub_tab_main' ) ); } // = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = add_action( 'bp_setup_nav', 'profile_new_subnav_item', 10 ); function view_manage_sub_tab_main() { add_action( 'bp_template_content', 'bp_template_content_sub_function' ); bp_core_load_template( 'template_content' ); } function bp_template_content_sub_function() { if ( is_user_logged_in() ) { bp_get_template_part('my-contact-form'); } else { wp_login_form( array( 'echo' => true ) ); } }I hope it helps anyone.
Finally I’d like to say that I have never seen such a bad documentation in development as in buddypress. I know buddypress is free but WordPress is free too and they have a great doc.
February 13, 2015 at 12:14 am #234375In reply to: Buddypress Settings Won't Save?
Mathieu Viet
ModeratorVery strange.
Have you tried to deactivate all plugins except BuddyPress to see if that wasn’t a problem with another plugin ?
Have you tried to activate a WordPress default theme to see if it wasn’t a problem with the active theme ?
Do you have custom function in bp-custom.php, if so try to remove them temporarly.
If all of the above is not changing anything to your trouble, if you deactivate BuddyPress is the problem still there (you can actually begin by this step, if you prefer) ?
February 12, 2015 at 5:27 pm #234357In reply to: Activation Email Name edit?
jessiewordpress
ParticipantI mean the login page looks like WordPress. Not the registration page. That looks great ๐
February 12, 2015 at 5:25 pm #234355danbp
Participanthi @jessiewordpress,
do you use a cache ? If yes, clear it.
February 12, 2015 at 5:11 pm #234351In reply to: Activation Email Name edit?
jessiewordpress
ParticipantThank you for that plugin! I’ll use that for now ๐
What would be great is a plugin that helps with that AND editing the activation email AND changing the register/login page to not look like WordPress.
For instance, this is a wordpress website and has this register/login page: https://www.ziibra.com/signup/
Any suggestions for a workable plugin that accomplishes all of this?
February 12, 2015 at 2:23 am #234330In reply to: Media plugin: rtmedia or buddybossmedia ?
disha76
ParticipantMediapress does not work with multisite and when multi blog mode is enabled – even using the updated version. I have tested with Multisite (non subdomain – define(‘SUBDOMAIN_INSTALL’, false);)
Rtmedia works smoothly without any problem, only thing is that the activity stream entries look ugly due to centrally placed thumbnails in a column.
The p2 theme has a form that can directly add media or albums from user’s wordpress core media but there is no plugin to plug this into buddypress in a responsive theme. Sad!
February 11, 2015 at 8:04 pm #234319In reply to: bbPress Error after updating BuddyPress
r-a-y
KeymasterI would also recommend turning debug messages off in a production environment.
Set
WP_DEBUGto false inwp-config.php:
https://codex.wordpress.org/WP_DEBUGDebug notices should only be turned on in a dev environment.
February 11, 2015 at 6:55 pm #234315In reply to: version 2.2.0 and is_page() [Resolved]
r-a-y
KeymasterIn BuddyPress 2.2.0, we set all BP pages to page ID of zero.
This showcases the “
is_page( 'ANYSLUG' )returning true” bug in WordPress when the page ID is zero:
https://core.trac.wordpress.org/ticket/24674I would recommend applying this simple one-word patch to WP core temporarily:
https://core.trac.wordpress.org/attachment/ticket/24674/24674.2.diffOr you can use
is_buddypress()to test if you’re on a BP page as well.February 11, 2015 at 4:41 pm #234309In reply to: Sahifa theme Permalinks
theboc
Participant1. Which version of WordPress are you running? 4.1
2. Did you install WordPress as a directory or subdomain install? directory
3. If a directory install, is it in root or in a subdirectory? root
4. Did you upgrade from a previous version of WordPress? If so, from which version? NO
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. YES
6. Which version of BP are you running? 2.2.0
7. Did you upgraded from a previous version of BP? If so, from which version? NO fresh install
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? YES; akismet, contact form 7, hello dolly, instagramy, taqyeem, ” ” add on, ” ” predefined Criteria, and woocommerce. I deactivated all plugins except for buddy press and the buddypress pages still are not displayed. when i go to the url domain.com/members
9. Are you using the standard BuddyPress themes or customized themes? Sahifa 5.0+ wordpress theme which is compatible any help is appreciated.
10. Have you modified the core files in any way? NO
11. Do you have any custom functions in bp-custom.php? NO
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? N/A
13. Please provide a list of any errors in your serverโs log files. N/A
14. Which company provides your hosting? arvixe
15. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache
February 11, 2015 at 4:26 pm #234307In reply to: How to exclude hidden field from search
srucwebmaster
ParticipantI also encountered the issue reported by @asitha above and have opened a new ticket on trac as I couldn’t find an ticket referring to this.
February 11, 2015 at 4:25 pm #234306bp-help
Participant@saish_neugi
This tutorial might help to get you going in the right direction.How to Build a Facebook-Style Members-Only WordPress-BuddyPress Site
February 11, 2015 at 1:15 pm #234300In reply to: Activation Email Name edit?
chatty24
ParticipantIf the code is not working for you then you can try the following plugin
WP Change Default Email —-> https://wordpress.org/plugins/wp-change-default-email/
Hope it helps ๐
February 11, 2015 at 12:44 pm #234299In reply to: bbPress Error after updating BuddyPress
shanebp
ModeratorThe BBP_Forums_Group_Extension issue is known and there is a fix.
See this ticket and link to patch.February 11, 2015 at 11:49 am #234293In reply to: version 2.2.0 and is_page() [Resolved]
Toby
ParticipantThanks @Hugo. Appreciate your time on this. I’ll have a look and see what I can do.
I’m trying hard not to think about the original code at the moment. I took over the site in May last year and knew php/mysql but had very limited experience with WordPress and hadn’t even heard of Buddypress. It’s been a steep learning curve, and I’ve managed to work out a lot and fix a bunch of stuff and even make some timid suggestions here, but a thorough re-factoring of the code is a step too far both time and probably skill wise at this point unfortunately.
February 11, 2015 at 9:47 am #234280In reply to: version 2.2.0 and is_page() [Resolved]
Hugo Ashmore
Participant@tobyhawkins
Not sure how you’re running your checks, where or to what end, but I wouldn’t use is_page() where BP is concerned, but it sort of depends on what exactly your theme is trying to do, BP has template tags such as bp_current_component() & bp_current_action() that can provide very specific checks for screens.This ticket and the links to a a sister ticket might help in understanding how is_page() is working and the changes effected a while back, of course this doesn’t rule out the possibility there is something else wrong that needs further investigation.
https://buddypress.trac.wordpress.org/ticket/5307
Having said all that is_page() will return true, is_page(‘blah-blah’) will return false if for example your running that on the members directory screen, bp_current_component() will return ‘members’
What templates are you working with, theme compatibility?
February 10, 2015 at 11:44 pm #234251In reply to: Buddypress Member Filter Search
shanebp
ModeratorHave you tried BP Profile Search ?
-
AuthorSearch Results
