-
aljuk started the forum topic Editing the subject of system emails in the group How-To and Troubleshooting: 13 years, 7 months ago
I need to edit the subject line of system emails, specifically to get rid of the site name in square brackets that appears before the subject. I’ve spent a good few hours today trying to find a solution on the wordpress forums and via google without success.
Can anyone help?
-
aljuk posted on the forum topic php errors in profile / settings / notifications in the group How-To and Troubleshooting: 13 years, 7 months ago
Solved.
-
aljuk started the forum topic php errors in profile / settings / notifications in the group How-To and Troubleshooting: 13 years, 7 months ago
On users’ profile, in settings / notifications, the following php error is output:
Warning: call_user_func_array() : First argument is expected to be a valid callback, 'bp_core_screen_notification_settings_title' was given in /path-to-root/wp-includes/plugin.php on line 395
Is anyone else experiencing this? Can anyone recommend a course of…[Read more]
-
aljuk posted an update 13 years, 7 months ago
@coffee2code @coffee2code I left a comment on your blog re. some issues I found with ‘Restrict Usernames’
-
aljuk joined the group Restrict Usernames 13 years, 7 months ago
-
aljuk started the forum topic No closing php tags in buddypress core files? in the group How-To and Troubleshooting: 13 years, 7 months ago
There are a bunch of php pages in Buddypress that have no closing php tag. Is there any particular reason for this? It came to my attention after upgrading WordPress today, which threw a number of errors traced back to improper whitepsace in various plugins, so I went for a mass audit and have come […]
-
aljuk started the forum topic How to remove author name from To: field in messages? in the group How-To and Troubleshooting: 13 years, 7 months ago
In the ‘Sent Messages’ display, the author name is returned in the To: field.
Is there any way to change this behaviour so that the To: field only shows the users the message was sent to and not the author as well?
-
aljuk posted on the forum topic Overriding ajax.php in the group How-To and Troubleshooting: 13 years, 7 months ago
@marto – in the functions.php of bp-default, change:
require_once( TEMPLATEPATH . '/_inc/ajax.php' );
to
require_once( STYLESHEETPATH . '/_inc/ajax.php' );
-
aljuk started the forum topic id="_wpnonce_new_activity_comment" ?? in the group How-To and Troubleshooting: 13 years, 7 months ago
Quick question to anyone in the know…
id="_wpnonce_new_activity_comment"
Does any functionality actually rely on this ID? Can I safely strip it from the markup? (ok, that was 2 questions… 😉 )
-
aljuk joined the group BuddyPress Moderation 13 years, 7 months ago
-
aljuk posted on the forum topic Anyone interested! Show your support for extra Embed Services as paid addons. in the group BuddyPress Links: 13 years, 8 months ago
I’d pay for a premium version of this plugin gladly, so long as users can edit and delete their links, and edit their links’ privacy settings.
-
aljuk posted on the forum topic 'Edit Activity' page – which template? in the group How-To and Troubleshooting: 13 years, 8 months ago
bump.
-
aljuk posted on the forum topic How to change "Search anything…" in the group How-To and Troubleshooting: 13 years, 8 months ago
For anyone reading this thread, definitely do as suggested above, not as I did, which led to some unforseen complications.
-
aljuk posted on the forum topic How to change "Search anything…" in the group How-To and Troubleshooting: 13 years, 8 months ago
Awesome, thanks @r-a-y .
-
aljuk posted on the forum topic How to change "Search anything…" in the group How-To and Troubleshooting: 13 years, 8 months ago
@gunju2221 Thanks, I saw that, but as far as I can tell, that’s for the hint text if searching using ajax (?) What I’ve done is replaced the appropriate strings in : bp-blogs/bp-blogs-templatetags.php bp-core/bp-core-templatetags.php bp-forums/bp-forums-templatetags.php bp-groups/bp-groups-templatetags.php which appears to have done the trick.…[Read more]
-
aljuk started the forum topic How to change "Search anything…" in the group How-To and Troubleshooting: 13 years, 8 months ago
I’d like to make “Search anything…” more accurate.
ie. “Search Members…”, “Search Groups…”, “Search Group Forums…”
Is there an easy way to do this without hacking core?
-
aljuk started the forum topic 'Edit Activity' page – which template? in the group How-To and Troubleshooting: 13 years, 8 months ago
I can’t work out which theme template file is outputting the ‘edit activity’ page.
Can you help?
-
aljuk posted on the forum topic [Resolved] Change ’wrote a new blog post’ text. in the group How-To and Troubleshooting: 13 years, 8 months ago
I adapted it a little, to display a link to the category the post is in (assuming one category, and category slug of ‘category’) : `class PJW_Translation_Mangler { function filter_gettext($translation, $text, $domain) { global $post; $category = get_the_category($post->ID); $cat_slug = $category->slug; $category = $category->cat_name;…[Read more]
-
aljuk posted on the forum topic How to pull blog category in activity loop? in the group How-To and Troubleshooting: 13 years, 8 months ago
Got it:
global $post;
$category = get_the_category($post->ID);
$cat_slug = $category->slug; // gets the slug
$category = $category->cat_name; // gets the name
$postslug = basename(get_permalink()); // gets the post permalink -
aljuk started the forum topic How to pull blog category in activity loop? in the group How-To and Troubleshooting: 13 years, 8 months ago
In the Activity stream, blog post activity displays as “XYZ wrote a blog post” I’d like to display “XYZ wrote a blog post in ” followed by the name of the blog category containing the post (I’m using one cat to a post). I’ve tried various syntax including
get_the_category($post->ID)
and declaringglobal $post
but the […] - Load More
@aljuk
Active 3 months ago