Forum Replies Created
-
Another solution which is easier and works perfect (but you lose the lightbox feature)
1) Increase the thumbnail size by adding this line to your wp-config file: define(‘BPFB_THUMBNAIL_IMAGE_SIZE’, ‘640×640’);
(I’ve chosen 640×640 for the maximum thumbnail size, since lightbox is lost)2) Go to your plugins\buddypress-activity-plus\lib\forms folder and edit the images_tag_template.php file and delete this section: ” class=”<?php echo $use_thickbox; ?>” rel=”<?php echo $rel;?>” <?php echo $target; ?> >
(This will restrict opening your original uploaded image in a lightbox when you click on it – this is important since you will be deleting the original in the next step)3) Lastly, setup a cron, maybe once a week, to delete all files over a certain size in the bpfb folder (this is the folder where all the uploaded & thumbnail images are stored)
I’ve set my cron to delete all images over 150kb. Here is the command line for my directory:
find public_html/wp-content/uploads/bpfb/* -size +153600c -type f -delete(note: 153600c is bits, which is 150kb)
I’m having this same problem. Anyone know of a way to shrink images in the activity stream? I’m also using Buddypress Activity Plus… Any suggestions? Or do I need to contact author directly? Any insight is much appreciated.
thanks
Thanks for explaining in detail how the roles operate
If anyone has any advice, it’s much appreciated… if I can better explain:
I want authors of groups to add/delete members to their group, but they disappear on the dashboard (when not Admin)
Update: When logged in, I am replicating the problem due to the toolbar appearing in the header. The solution above works when a user isn’t logged in. Furthermore, “responsive mode” doesn’t have these issues.
I was having the exact same problem (BuddyPress 1.8.1 & WordPress 3.6). I found a solution: I turned off “Show the Toolbar for logged out users” under the Buddypress settings. It seems that the image mapping for menus may get misaligned when that setting is activated (or possibly some other conflict)
All of my menus work again on the iPad & iPhone 🙂 It should work for you too.