-
modemlooper replied to the topic Are those functionnalities available with BuddyPress?Looking for advices in the forum How-to & Troubleshooting 10 years, 11 months ago
I would google wordpress appointment plugin
There seems to be some options, you don’t necessarily need BuddyPress
-
modemlooper replied to the topic Activity Stream member links modification in the forum How-to & Troubleshooting 10 years, 11 months ago
The action is hardcoded, there are a few different functions for linking to profiles, this filter will change profile links but there may be links not using bp_core_get_user_domain.
apply_filters( ‘bp_core_get_user_domain’, $domain, $user_id, $user_nicename, $user_login );
-
modemlooper replied to the topic Activity Stream member links modification in the forum How-to & Troubleshooting 10 years, 11 months ago
the file entry.php is an individual activity item.
How to override bp templates https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
-
modemlooper replied to the topic Activation Key not working in the forum How-to & Troubleshooting 10 years, 11 months ago
is this site already active with users? You might need to reinstall everything fresh.
Read this thread, its probably the same issue, has some suggestions. https://buddypress.org/support/topic/new-user-registration-problem-invalid-activation-key/
-
modemlooper replied to the topic Activation Key not working in the forum How-to & Troubleshooting 10 years, 11 months ago
is this site already active with users? You might need to reinstall everything fresh.
-
modemlooper replied to the topic Activation Key not working in the forum How-to & Troubleshooting 10 years, 11 months ago
You said you installed WP from hostgator? Did you create a database manually, use FTP to upload WP or did you log into hostgator admin and click a button to install WP?
-
modemlooper replied to the topic Activation Key not working in the forum How-to & Troubleshooting 10 years, 11 months ago
so you didn’t download wp and install? Hostgator is notorious for borked WP install from their interface
-
modemlooper replied to the topic Activation Key not working in the forum How-to & Troubleshooting 10 years, 11 months ago
so you didn’t download wp and install?
-
modemlooper replied to the topic Update 2.2.2 in the forum Installing BuddyPress 10 years, 11 months ago
are you getting a white screen or just blank page when you visit /activity ?
-
modemlooper replied to the topic Help editing BP Column theme in the forum How-to & Troubleshooting 10 years, 11 months ago
its my theme but its so old and outdated I suggest not using it
-
modemlooper replied to the topic Activation Key not working in the forum How-to & Troubleshooting 10 years, 11 months ago
if you are comfortable access a database and editing php search here on the forums, there was a previous issue where a db column was missing. but that issue was a while ago.
Are you on multisite? also did you use a one click WordPress installer that a web host provides?
-
modemlooper replied to the topic Associating fields with groups and subgroups in the forum Showcase 10 years, 11 months ago
I’m not sure this can be done but it would require complex coding. You would most likely need to hire a developer.
-
modemlooper replied to the topic Activation Key not working in the forum How-to & Troubleshooting 10 years, 11 months ago
first did you deactivate plugins and change theme to rule those out?
-
modemlooper replied to the topic Help to put Favorit button in blog post page in the forum How-to & Troubleshooting 10 years, 11 months ago
post on support forum for like plugin and ask developer to add that feature
-
modemlooper replied to the topic where do I find hooks for actions? in the forum How-to & Troubleshooting 10 years, 11 months ago
-
modemlooper replied to the topic Changing "Add friend button" (ajax) in the forum How-to & Troubleshooting 11 years ago
You should use a language file to edit strings https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/
-
modemlooper replied to the topic Help to put Favorit button in blog post page in the forum How-to & Troubleshooting 11 years ago
The code above is only for activity stream, try another plugin https://wordpress.org/plugins/buddypress-like/
-
modemlooper replied to the topic how to add new members to groups automatically? in the forum How-to & Troubleshooting 11 years, 1 month ago
did these plugins not work?
https://wordpress.org/plugins/buddypress-groupomatic/
https://wordpress.org/plugins/buddypress-auto-group-join/or function
function automatic_group_membership( $user_id ) {
if( !$user_id ) return false;groups_accept_invite( $user_id, $group_id );
}
add_action( 'bp_core_activated_user',…[Read more] -
modemlooper replied to the topic how to add new members to groups automatically? in the forum How-to & Troubleshooting 11 years, 1 month ago
did these plugins not work?
https://wordpress.org/plugins/buddypress-groupomatic/
https://wordpress.org/plugins/buddypress-auto-group-join/function automatic_group_membership( $user_id ) {
if( !$user_id ) return false;groups_accept_invite( $user_id, $group_id );
}
add_action( 'bp_core_activated_user', 'automatic_group_membership'… -
modemlooper replied to the topic how to add new members to groups automatically? in the forum How-to & Troubleshooting 11 years, 1 month ago
did these plugins not work?
https://wordpress.org/plugins/buddypress-groupomatic/
https://wordpress.org/plugins/buddypress-auto-group-join/ - Load More
@modemlooper
Active 7 months, 3 weeks ago