dspilka
Forum Replies Created
-
Forum: Plugins
In reply to: [Heartbeat Control] No works on MultisiteI made some minor updates in an effort to make the existing version of the plugin multisite compatible. If you want to check that out, I’m putting it here: https://github.com/danspilka/heartbeat-control
Forum: Plugins
In reply to: [Heartbeat Control] No works on Multisite@jeffmatson I’d like to help with making Heartbeat Control multisite compatible if you don’t mind. I had a need for it and have it working now and would like to share it with you to see if you’d like to incorporate it into your plugin. Let me know.
Thanks,
DanForum: Plugins
In reply to: [New User Approve] Confirmation EmailActually, ‘new_user_approve_request_approval_message’ is for the email message to the admin. It’s ‘new_user_approve_approve_user_message’ to the email to the user.
Forum: Plugins
In reply to: [New User Approve] Confirmation EmailFrom looking within the plugin code, there appears to be a filter you can use to customize these emails named ‘new_user_approve_request_approval_message’. If you’re familiar with using WordPress filters, it appears you can use that.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Delete CreditsI’ve customized the twitter message with two twitter account names. But the addtoany code seems to take only the last/second one and then append the ‘addtoany’ twitter username. Is that expected behavior? If so, how can that be changed in order to setup multiple twitter accounts to follow (not including the addtoany account)? Is there another way to configure the twitter ‘related/data-related’ property for recommended accounts?
Thanks!
Forum: Plugins
In reply to: [WPFront Notification Bar] Multisite setup to apply across network?I should correct myself. These two functions would need to be split up some. The redirect portion can go in functions.php but the override function would need to be in a plugin.
Forum: Plugins
In reply to: [WPFront Notification Bar] Multisite setup to apply across network?A possible workaround I wrote up with that I might try (without modifying the plugin code) that can be put in functions.php or another functions library of sort.
This would force the settings page to use data from the root blog (blog id 1) in a multisite setup. It would also redirect the settings page to the root blog settings page.
/* * Override for WPFront notification bar plugin for sharingdata from wp_1_options for site wide settings */ add_filter('option_wpfront-notification-bar-options', 'override_notification_bar_blog_options'); function override_notification_bar_blog_options() { remove_filter('option_wpfront-notification-bar-options', 'override_notification_bar_blog_options'); $new_value = get_blog_option(1, 'wpfront-notification-bar-options'); return maybe_unserialize($new_value); } /* * Redirect for WPFront notification bar plugin to root blog settings page for site wide settings */ global $blog_id, $pagenow; if( is_admin() && $blog_id != 1 ) { /* Check current admin page. */ if($pagenow == 'admin.php' && $_GET['page'] == 'wpfront-notification-bar') { wp_redirect(get_admin_url( 1, '/admin.php?page=wpfront-notification-bar', 'http'), 301); exit; } }Forum: Plugins
In reply to: [FeedWordPress] wp_links table doesn't existI’m seeing a similar issue with WP 3.5.1. The link manager functionality apparently has been removed and FeedWordPress has some sort of dependency from what I can tell.
You can use this plugin to re-enable the link manager and it fixes the issue for me. Here is the plugin: http://ww.wp.xz.cn/extend/plugins/link-manager/
I did find a workaround to this. You can hook into and overide the update count callback for the ‘category’ taxonomy. Your custom function can do whatever count tallying you need across multiple blogs and then update the term_taxonomy.count column with that count.
So the google cdn now has jquery-ui version 1.8.21. So I’m using that version for MarkLL’s fix instead of 1.8.18, like:
if ( 'jquery-ui-' == substr($name, 0, 10) && '1.8.20' == $ver ) { $ver = '1.8.21'; }I just tried this plugin. Thanks for your fix, MarkLL.
Any ideas when Google will get 1.8.20 and 1.8.21 on their CDN?
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] activate issueJust an update to my post from yesterday. I tried again today to activate wp-pagnavi and now it worked network wide. I’m stumped. Wondering if it was cache related (W3 Total Cache). Strange!
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] activate issueI’m having the same issue, which just started happening today strangly. I had been using it on a multisite network with no problems for a while. Then I started getting the following error in my error logs a little while ago:
PHP Fatal error: Class 'PageNavi_Core' not found in /path/to/wp-content/plugins/wp-pagenavi/wp-pagenavi.php on line 54That was causing a white screen everywhere. So I manually decativated it by renaming the wp-pagnavi directory. After that I was able to get into the WP Admin since that deactivates it. Then I tried to reactivate it and the message in the WP Admin just says it triggered a fatal error.
I’m using version 2.82 with WP 3.3.2 and PHP 5.2.6.
Forum: Networking WordPress
In reply to: Including wp-load.php results in failureThis looks like it’s still an issue from some quick testing. Anyone have a solution or work around?
Huh? It isn’t a good use case for what? It’s existing functionality on an existing site that I’m rewriting and now trying to use FEE for. I think there’s a misunderstanding. Are you thinking I’m asking you to update Front End Editor to do this? That’s not what I’m asking. I’m looking at adding this functionality myself via a javascript extension/file I’d include by using the “front_end_editor_loaded” action. Probably trigger the click event of the edit button or something. I was just looking for a hint/clue/etc to do that before I dug in…in the case anyone knew where/how offhand.
As for Aloha, we tried the newer FEE with it and my users didn’t like it. They preferred the version with CLEditor. So I won’t be upgrading any time soon.