Forum Replies Created
-
Thanks mate, thanks God notification is finally working on here
you can follow this article
http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
@jamie771, yes you can do it with a plugin called (BuddyPress Automatic Friends)
http://wordpress.org/extend/plugins/bp-automatic-friends/
the plugin is still working.
Naijaping
Ans 1, you can hide it with simple css in your theme by using :
#wp-admin-bar-wp-logo>.ab-item .ab-icon {display:none ! important}
I dont understand the question 2
Naijaping
Hi @iphonedev46,
If what you need is to have your email sent out from noreply@yourdomain.com, check the below code and put it in your functions.php.
Naijaping
@shanebp, great work. thanks
You cant ban @yahoo.com, because of all other innocent people.
Like i said before, i have 3 sets of code.
the code will Ban username@yahoo.com and not the whole yahoo.
Are the spam from the same domain or different domains? anyways I can give you some code which you can put in your functions.php and they will be blocked from your registration.
The code can block
domain extension e.g .pl .ru etc
or the full email e.g spam@yahoo.com
and or just domain e.g wesell.com
If you are interested i can put the code in githhub.
regards
@discdemo, if you are using child theme or buddypress default theme you can simply use css to hide it.
something like: .activity-list div.activity-meta a.acomment-reply {display:none;}
@shanebp, No progress about this plugin on github anymore.
Great work @shanebp, the future of BP is very very bright.
Thanks
You will need to adjust the width / line-height and margin in the below css accordingly. I think that should solve the rest.
#members-dir-list a.friendship-button.add
#members-dir-list a.friendship-button.is_friend.remove {
#members-dir-list ul.item-list li div.item-title, #members-dir-list ul.item-list li h4, #members-dir-list ul.item-list li div.item-meta
{If you are using css tutorial from wpmu and your theme is default buddypress template/child theme, Remove “#buddypress” from all the css. I think it should do the trick.
or better still a link to your site so that i can try and solve it for you.
Thanks
@bphelp, how good are you in coding? i think have shared how to implement the custom notification menu somewhere on the forum. please let me check
regards
@synaptic, here is a premium plugin which does what you want.
Note: I have no connection with the plugin
I mean file which says: Mention this user in a new public message, this will send the user a notification to get their attention.
Ok @hnla thanks, I mean where it says :`<a href="” title=”">`
Not the functions. I have checked member-header.php but not there.
what am trying to do is list mention and private message under Add friend button as li .
I know how to do it but dont know where to locate the file anymore.
Regards
@imath, I must say welldone on this plugin, dont even know there is reshare plugin like this until now. what a great plugin.
For anyone looking for same snippet, put the following code in your functions.php
/*remove email addresses from private messages*/
function wdw_remove_email_from_private_msg($message){
$replacement = “[Warning: Contact removed]“;
/*if you dont want any replacement text, replace the above line with
$replacement = “”;
*/
return preg_replace(“/[^@\s]*@[^@\s]*\.[^@\s]*/”, $replacement, $message);
/*the code is short and works in most cases but not full proof. Check */
}
add_filter(‘messages_message_content_before_save’, ‘wdw_remove_email_from_private_msg’);
add_filter(‘messages_message_subject_before_save’, ‘wdw_remove_email_from_private_msg’);
@mercime, thanks so much . I just test it and it worked but the only setback is we dont have control over the size of width and height anymore as it assign the same size to width and height.
regards
@nanetteturner, if you are talking about video embed as that is what i can see on you site, You can change the height and width by going to your dashboard
>settings
>Media. then you wiil see embed section where you can set width and height.Regards
Hi all, as promised i will share the code this weekend as am a little bit busy, i have the custom notification menu working for message – general notifications and Friends request.
I.e friend request notification show up on friend icon
message notification show up on message iconand general notification on general icon.
something similar to facebook
you can see it in action
username : demo
password : demo@shawn38, @designnz, @yeshourun, i am so so sorry, have not been checking this thread as i receive no notification at all. i will share this code when am back next week. I have been working on my Main site : http://goo.gl/4OqMP
username : demo
password : demoI think i should be able to share how to make the notification work something similar to facebook.
once again apology
@rhondaramsey,Use a good faq or q and a plugin, create a new page add the faq short code provided by the plugin and write your q and a accordingly. then redirect your user there at their first login.
Thats what i did on one of my website.
Regards
@shawn38, give it a class in the header where you placed it something like
``
and put this in your style.css #top-links ul li:hover ul { /* lists nested under hovered list items */
left: 0px;
}Adjust it accordingly.
Regards