-
hnla posted on the forum topic Stable(ish) release of BuddyPress Group Email Subscription (with digests!) in the group BuddyPress Group Email Subscription: 15 years, 11 months ago
I guess ideally it would be neat to have as a backend option highlighted as a means of testing for a limited number of people. I’m annoyed as I was almost there but simply couldn’t work out how to get to the user ID from within the plugin files π
-
hnla posted on the forum topic Stable(ish) release of BuddyPress Group Email Subscription (with digests!) in the group BuddyPress Group Email Subscription: 15 years, 11 months ago
It was my intention to upload to the production site this morning but had wanted to run as a limited trial so to that end I set about creating an array of allowed_users and was going to try trapping the final add_action? of the plugin with (in_array(“$this_user”, $allowed_users): but crashed and burned trying to get […]
-
hnla posted on the forum topic Small change to BuddyPress Default 1.2.3 theme in the group Creating & Extending: 15 years, 12 months ago
Did you pick up on the fact that this new page opening function was only to relate to pages being opened from an RSS feed? Absolutely! Note the reference to the li.feed above. The RSS item that I looked at was set with this token what the script does is look for all instances of this […]
-
hnla posted on the forum topic How to I edit the CSS? in the group CubePoints Buddypress Integration: 15 years, 12 months ago
Ah hadn’t come across that pluging before wp-minify Yes I like the approach Lester Chan takes. To some extent there is still room for improvement in this area, devolving better control in some manner – I see glimpses of how when working but never get a chance to formulate my thoughts. One thing is true […]
-
hnla posted on the forum topic Stable(ish) release of BuddyPress Group Email Subscription (with digests!) in the group BuddyPress Group Email Subscription: 15 years, 12 months ago
Somewhat difficult to test for, if it were activated for buddypress.org it might be a valid test of a fairly busy site, would Andy be prepared to let you test and crash their server? π
-
hnla posted on the forum topic Small change to BuddyPress Default 1.2.3 theme in the group Creating & Extending: 15 years, 12 months ago
tbh it’s considered a bad thing for developers to do, the opening of new windows is a browser issue and as such it’s considered impolite to force your wishes on the end user. It is my decision as to how I deal with links not yours, if you try and disrupt my browsing habits I’m […]
-
hnla posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 12 months ago
The only time I ever used a cpanel editor I recalled in horror from it and never tried it again π In seriousness though why do I have the vaguest recollection that there are issues that can arise with editing in that manner, something about how it can save text or code or make a […]
-
hnla posted on the forum topic Stable(ish) release of BuddyPress Group Email Subscription (with digests!) in the group BuddyPress Group Email Subscription: 15 years, 12 months ago
Just downloaded and had a quick glance, this looks excellent and extremely useful, the three of you should be commended, I don’t see any real issues for users, yes there will be those that simply don’t get having email notifications in various places but then they are the ones who tend to reply to NOREPLY […]
-
hnla posted on the forum topic Stable(ish) release of BuddyPress Group Email Subscription (with digests!) in the group BuddyPress Group Email Subscription: 15 years, 12 months ago
I was thinking more along the lines of members/joepublic/settings/notifications as there obviously is already a series of email notifications all set to on by default and including a set of group activity notifications. My worry is that general users run scared when/if they get too confused by settings, in an ideal world there needs to […]
-
hnla posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 12 months ago
If you have played around with anything other than defaults with things like db prefixes then things will likely go wrong (or would they? I’ll have to check that when there’s time to run a fresh install), it relies on a defined constant set in iirc wpmu-settings.php the variable $wpmuBaseTablePrefix is set to the variable […]
-
hnla posted on the forum topic Stable(ish) release of BuddyPress Group Email Subscription (with digests!) in the group BuddyPress Group Email Subscription: 15 years, 12 months ago
Sounds very interesting, this one passed me by but digests of activity sounds very sophisticated and grown up π I’ll test this when I’m allowed 2 mins breather. Out of interest how does this play with the existing email notifications in a members account area, guess it’s up to them to ensure they don’t receive […]
-
hnla joined the group BuddyPress Group Email Subscription 15 years, 12 months ago
-
hnla posted on the forum topic Remove Member joined group messages from stream in the group How-To and Troubleshooting: 15 years, 12 months ago
So far the only method I have found to control activity stream entries is to work of bp_get_activity_type() having found the activity type – in this instance it’s joined_group you can simply wrap the loop that’s in /activity/entry.php with something like:
if ( 'joined_group' !== bp_get_activity_type()) :this now means that the activity loop will […] -
hnla posted on the forum topic Buddypress/Site broken in internet explorer 7 in the group How-To and Troubleshooting: 15 years, 12 months ago
Difficult to help further than saying validate your layout, it’s very badly mal formed. CSS is parsed and applied to the DOM if the DOM is broken then CSS can not be applied correctly or struggles to know where elements start and end. Lots of things can stall the correct construction of a complete page, […]
-
hnla posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 12 months ago
At the moment can’t see what is going wrong here, could you paste a copy of your copied block or maybe whole file to pastebin?
-
hnla posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 12 months ago
Revised the variable $db_prefix so that it should work for either a single WP install or a WPMU install
-
hnla posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 12 months ago
Here’s the function block that needs replacing in pastebin (the variable to set the new DB prefix is required in addition)
See if that helps?
-
hnla posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 12 months ago
It enables the widgets and shortcodes that print the lists nothing in cubepoints that needs to access users or usermeta tables will work as on WPMU it prepends the incorrect table prefix to the user and usermeta tables. I’m sure this can be sorted in a much more friendly fashion though all I need is […]
-
hnla posted on the forum topic How to I edit the CSS? in the group CubePoints Buddypress Integration: 15 years, 12 months ago
@r-a-y really the issue is not with one particular plugin but with the overall notion of plugin authorship. if it isnβt too many lines that is ; minimal, under 20 lines Yes but this is not under your control? By and large a satisfactory implementation of WP or WP/BP will end up relying on a fair number of […]
-
hnla posted on the forum topic How to I edit the CSS? in the group CubePoints Buddypress Integration: 15 years, 12 months ago
It’s very straightforward, but it occurs the way I’ve used it is probably very pared down so better to study a more thorough implementation so I’m sure Boone won’t mind his being shown as an example π
function invite_anyone_add_by_email_css() { global $bp; if ( $bp->current_component == BP_INVITE_ANYONE_SLUG ) { $style_url = WP_PLUGIN_URL .…[Read more] - Load More
@hnla
Active 7 years, 10 months ago