-
Henry Wright replied to the topic [Resolved] Site Privacy in the forum Requests & Feedback 9 years, 5 months ago
It’s probably worth giving it a shot and then just open a new topic for any specific coding questions you have.
-
Henry Wright replied to the topic [Resolved] Site Privacy in the forum Requests & Feedback 9 years, 5 months ago
Ah OK. Deadlines are always a pain! If a plugin isn’t available, you can do all of those things relatively easily with PHP. How is your PHP knowledge?
-
Henry Wright replied to the topic [Resolved] Site Privacy in the forum Requests & Feedback 9 years, 5 months ago
Would it be possible to include features that would enable site admins to make their sites accessible to logged-in users only?
It certainly would be possible but even though such features have been requested lots of times here in the forum, it doesn’t mean everyone would want, or welcome that particular functionality. This is a great example that…[Read more]
-
Henry Wright replied to the topic Send notification email to user when he change his general settings in the forum How-to & Troubleshooting 9 years, 5 months ago
Regarding 1, have a read of the Template Hierarchy article. This will give you an overview of how templates work.
You’ll need to know PHP in order to do point 2.
-
Henry Wright replied to the topic Send notification email to user when he change his general settings in the forum How-to & Troubleshooting 9 years, 5 months ago
1) You will need to make sure the
template_notices
hook is in your template.2) I’m not sure if an email is sent on settings change by default, but if not, the general approach would be to hook a custom function to
bp_core_general_settings_after_save
. Within your custom function you should usewp_mail()
to send the email. -
Henry Wright replied to the topic Comment attachment like Image and other type of media in the forum Creating & Extending 9 years, 5 months ago
Media commenting isn’t available in core so you will need to find a plugin. Two popular media plugins I know of are rtMedia and MediaPress. Alternatively, you could build something yourself using the new BP Attachment API
-
Henry Wright replied to the topic Comments notification doesn't work in the forum How-to & Troubleshooting 9 years, 5 months ago
You should note the ticket is still under development, which means the patch provided may not fully work. If you notice something not working then feel free to provide feedback directly in the Trac ticket.
-
Henry Wright replied to the topic Comments notification doesn't work in the forum How-to & Troubleshooting 9 years, 5 months ago
You should note the ticket is still under development, which means the patch provided may not fully work. If you notice something not working then feel free to provide feedback directly in the Trac ticket.
-
Henry Wright replied to the topic Buddypress Profile Styling Issue in the forum How-to & Troubleshooting 9 years, 5 months ago
This is theme-related. You should use Chrome dev tools to investigate whether that particular nav item’s CSS or HTML is different from the rest of the nav items (or it may just be that they don’t fit in the horizontal space). Alternatively, you could contact the theme author for support.
-
Henry Wright replied to the topic Buddypress Profile Styling Issue in the forum How-to & Troubleshooting 9 years, 5 months ago
This is theme-related. You should use Chrome dev tools to investigate whether that particular nav item’s CSS or HTML is different from the rest of the nav items. Alternatively, you could contact the theme author for support.
-
Henry Wright replied to the topic Comments notification doesn't work in the forum How-to & Troubleshooting 9 years, 5 months ago
The core handbook should show you how. Specifically, take a look at The Code Repository section.
-
Henry Wright replied to the topic Substantial changes to layout of buddypress profile in the forum How-to & Troubleshooting 9 years, 5 months ago
CSS and HTML are the things you’ll need to use in order modify the page. The BuddyPress Template Hierarchy article will show you which files you’ll need to modify. Note, you may have to create the templates if your theme doesn’t already have them.
-
Henry Wright replied to the topic Comments notification doesn't work in the forum How-to & Troubleshooting 9 years, 5 months ago
Take a look at the Apply a Patch Using TortoiseSVN article. The article focuses on WordPress, but the same idea should apply to BuddyPress.
-
Henry Wright replied to the topic Registration issue (Forbidden, Please Enable Javacript) in the forum How-to & Troubleshooting 9 years, 5 months ago
No idea. Try checking if you have JavaScript disabled.
-
Henry Wright replied to the topic Registration issue (Forbidden, Please Enable Javacript) in the forum How-to & Troubleshooting 9 years, 5 months ago
Do you have JavaScript disabled?
-
Henry Wright replied to the topic Button Display Problem in the forum Installing BuddyPress 9 years, 5 months ago
Theme-related issues can be solved with CSS. Alternatively you could write to the theme author asking them for help.
-
Henry Wright replied to the topic Auto Join specific group in the forum How-to & Troubleshooting 9 years, 5 months ago
Are you interested in a plugin solution?
Try BuddyPress Auto Group Join. It looks as though it’ll do what you need.
-
Henry Wright replied to the topic Mark Particular Messages as Read in the forum How-to & Troubleshooting 9 years, 5 months ago
The
messages_mark_thread_read()
function will mark a message thread as read. It accepts the thread ID. So, to mark read all new private messages if they have a given subject, you could do this:function creativesinside_mark_read( $message ) {
// Be sure we're working with an array.
if ( is_object( $message ) ) {
$args = (array)…[Read more] -
Henry Wright replied to the topic I have an odd Code Snippet Issue in the forum Miscellaneous 9 years, 5 months ago
That’s odd. All I can think of is it must be your text editor. Try doing the same thing in something like Sublime Text or Atom and see if the problem occurs.
-
Henry Wright replied to the topic BuddyPress pages not full width in the forum How-to & Troubleshooting 9 years, 5 months ago
A few options spring to mind:
Ask the theme author to make their templates BuddyPress-compatible
Create your own BuddyPress templates. See the Template Hierarchy articleMaking a theme BuddyPress-compatible is something many theme authors would consider doing because it opens the door to 2,000,000+ BuddyPress sites, so it’s probably worth a…[Read more]
- Load More
@henrywright
Active 8 months, 2 weeks ago