-
Henry Wright replied to the topic admin-ajax.php Failed to load resource in the forum How-to & Troubleshooting 8 years, 10 months ago
Have you restricted access to the admin area in any way? Stuff like the following would cause the admin-ajax.php resource to be inaccessible.
if ( is_admin() ) {
// Restrict access
} -
Henry Wright replied to the topic Warning After Install of Multisite Shared Menus in the forum How-to & Troubleshooting 8 years, 10 months ago
In the code snippet I posted, try replacing
initwithwp. If that doesn’t work then the problem would need some debugging. -
Sanket Parmar replied to the topic Share option for buddypress activity and group posts in the forum Requests & Feedback 8 years, 10 months ago
Hi @rafiamudasar,
You can try wordpress.org/plugins/bp-activity-share/, this plugin shares activity locally like FB does.
Let me know if it helps you 🙂
-
Henry Wright replied to the topic Warning After Install of Multisite Shared Menus in the forum How-to & Troubleshooting 8 years, 10 months ago
I hadn’t actually tested so it may be that the snippet doesn’t work. bp-custom.php is where it should go. You could try hooking to
wpinstead ofinit. -
New Body NewBody's profile was updated 8 years, 10 months ago
-
Henry Wright replied to the topic Warning After Install of Multisite Shared Menus in the forum How-to & Troubleshooting 8 years, 10 months ago
The warning is referring to a line in
bp_core_menu_highlight_parent_page(). The function adds CSS classes to the page. This is hackish but you could try this until you find a better solution.add_action( 'init', function() {
remove_filter( 'page_css_class', 'bp_core_menu_highlight_parent_page', 10, 2 );
} );Also you shouldn’t have
WP_DEBUG…[Read more] -
Amibe Websites replied to the topic Emails not sent in the forum How-to & Troubleshooting 8 years, 10 months ago
Okay, this worked… (I had tried it before but it had copy-pasted incorrectly)
add_filter( 'bp_email_use_wp_mail', '__return_true' );
Sending in text only, but that’s probably okay…
-
Amibe Websites started the topic Emails not sent in the forum How-to & Troubleshooting 8 years, 10 months ago
WordPress 4.8, BuddyPress 2.8.2
Network activated on 2nd Network of multisite sub-domain install using BP Multi Network 1.0.1Problem: emails not being sent.
Server does not provide SMTP – using SparkPost or WP Mail SMTP as alternative. Other emails are being sent fine, such as Lost password email and a Contact form.
Via Log Emails I can see…[Read more]
-
Ridima Das started the topic How To Check Drawback of My Website in the forum Creating & Extending 8 years, 10 months ago
Hello, friends, I want to check drawbacks of my website. So please tell me how to check it in a proper way. My website is http://cjtech.co.in/
-
Henry Wright replied to the topic How to position profile fields within members directory in the forum Creating & Extending 8 years, 10 months ago
In your template, there will be a line of code
do_action( 'bp_directory_members_item' );.This is what your
add_pf_to_members_page()function hooks to so the output of your function will appear at that exact point in the template. If you want to move the output you’ll need to move thedo_action()call or hook to another action.Hope this helps.
-
Ridima Das replied to the topic How can i create website on wordpress? in the forum Creating & Extending 8 years, 10 months ago
Thanks..
-
Henry Wright replied to the topic Show xprofile field in wordpress users list in the forum Creating & Extending 8 years, 10 months ago
@notlicht
manage_users_custom_columnandmanage_users_columnsare the hooks I would use so your approach looks good to me. There’s alsomanage_users_sortable_columnsif you want to sort users by data in your custom column. -
kmrckwae's profile was updated 8 years, 10 months ago
-
Ridima Das started the topic How can i create website on wordpress? in the forum Creating & Extending 8 years, 10 months ago
Hello friends, I want to create a website on WordPress just copy of this site http://cjtech.co.in/.
visit it and suggest me to create a website like it. -
Kinex Media Toronto's profile was updated 8 years, 10 months ago
-
Henry Wright replied to the topic Display Name Sync in the forum How-to & Troubleshooting 8 years, 10 months ago
It’s a possibility
-
Henry Wright replied to the topic Only enter to 1 group in the forum How-to & Troubleshooting 8 years, 10 months ago
You would need to keep a tally in user meta then when a user tries to join a group that tally will need to be checked. I believe the
groups_member_before_savehook could be what you need.Ref:
https://codex.wordpress.org/Function_Reference/update_user_meta
-
Muzammil Hussain's profile was updated 8 years, 10 months ago
-
Henry Wright replied to the topic Display Name Sync in the forum How-to & Troubleshooting 8 years, 10 months ago
Likely you have some custom code running which does that. Look in your active theme’s functions.php file, your bp-custom.php file and in plugin files you might have activated.
-
Henry Wright replied to the topic Display Name Sync in the forum How-to & Troubleshooting 8 years, 10 months ago
Likely you have some custom code running which does that. Look in your active theme’s functions.php file, your bp-custom.php file and in plugin files you might have activated.
- Load More