Forum Replies Created
-
dashboard – tools – buddypress – Reinstall emails (delete and restore from defaults)???
1. I think this is already possible by default see screenshot
2. that is also possible, use bbPress Notify (No-Spam)
I could reproduce your problem…. 🙂
An example: user A receives an email because someone responded to something from her/him.
User A must be logged in to use the unsubscribe link, this works correct.
User A can check this via the profile page – Settings – Email – Send an email notice when: etc.
But if you test this logged in under another username (not user A) then you get exactly the essage that you described.
Try this and see if this is the cause.
see – dashboard – Emails – BuddyPress Emails
@avaiya,
you do not have to be friends to send a private message.Choose – Messages – Compose and Send To (Username or Friend’s Name)
perhaps more convenient e-mail me at gunu at marius-siroen.com – I would like to help you further
I live in the Netherlands and now I have to do a few other things now.
Do you mind if we do that tomorrow? My morning … OK?
I saw your website, so this is especially for you!
http://www.poetryinternationalweb.net/pi/site/poem/item/7056/auto/0/THE-KEEPER-OF-SHEEP-XXXIX
You’re welcome 🙂
Try this
#buddypress ul.item-list li div.item-desc { color: #000000; font-size: 80%; }
Why not? What theme do you use?
Can you give me a link to a group page?
Try this in: – Customizer – Extra CSS
#buddypress div#item-header div#item-meta { color: #000000; font-size: 80%; }
Plugin “BuddyPress Activity Stream Bump to Top” Last updated: 6 years ago
I do not know if that still works. But I have found a working alternative.
Look here – http://techiescircle.com/move-new-commented-activity-stream-to-top/
After a lot of digging here I found this:
bp_message_notice_delete_link uses wrong action for nonce generation
I made this change in the source code: fix nonce for sitewide notice deletion.
Changed in source code from this file /buddypress/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php
<a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" aria-label="<?php esc_attr_e( "Delete Message", 'buddypress' ); ?>">x</a>
in this
<a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" title="<?php esc_attr_e( "Delete Message", "buddypress" ); ?>">x</a>
Now I see the delete button and can delete messages, but this goes wrong again after an update from Buddypress.
I would like to receive an advice.
ThanksAnother update.
I found the “code” link in the following file: plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php
I changed the following code:
<a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" aria-label="<?php esc_attr_e( "Delete Message", 'buddypress' ); ?>">x</a>
In this:
<a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" title="<?php esc_attr_e( "Delete Message", "buddypress" ); ?>">x</a>
Now the “delete message” link is visible, however if I click on it I get an WP error message.
“Are you sure you want to do this?” – No Yes or No button but a link back to the messages with the text “try it again”
Update:
When I look at the code with Firbug I see – inactive:
<a class="button" href="http://mystite.com/subfolder/members/member-name/messages/notices/delete/3/?_wpnonce=7b9fe1d26c" aria-label="Delete">x</a>
But this button is not accessible
okay, thanks I will take it into account
Aagrh!
I found that the reason it did not work —- ME!
There was a } too much in a place where it did not belong – Aagrh!
span.time-since { display: none; }
It works!
@henrywright
Thanks for your commentsI found this:
in – plugins/buddypress/bp-themes/bp-templates/bp-legacy/css there is a file named buddypress.css
In that file I found the following three references:
#buddypress a.activity-time-since { color: #aaa; text-decoration: none; } #buddypress table.forum td.td-freshness span.time-since { font-size: 80%; color: #888; } #buddypress a.activity-time-since:hover { color: #888; text-decoration: underline; }
I’ve copied this to the style sheet of my theme and in all three I tried the value display: none;
No effect.BUT with some experimentation I put this in the css of my theme:
#buddypress a.activity-time-since { color: #aaa; text-decoration: none; } span.time-since { display: none; } }
OOPS, now it works!
It only works if it is in that order in the style sheet.
I think so…. Using Firebug gives me
<span class="time-since">1 day, 1 hour ago</span>
The time stands at – uploaded the file: – 1 day, 1 hour ago
The time at active is gone with the activity code in the CSS