zodwallop
Forum Replies Created
-
Forum: Plugins
In reply to: [Foyer - Digital Signage for WordPress] Internal source for videoYes! I’d love this added function as well.
Thanks!
I’m running into the same issue and getting the same error in main.js file for line 29:
Uncaught TypeError: Cannot read property ‘offsetWidth’ of null
Has anyone been able to resolve this?
Thanks!
Forum: Plugins
In reply to: [Group Documents] [Plugin: Group Documents] Notification disabled by defaultWell, as usually is the case – I figured it out right after posting…
in notifications.php,
Change Lines 16 and 17:
<td class="yes"><input type="radio" name="notifications[notification_group_documents_upload_member]" value="yes" <?php if ( !get_usermeta( $current_user->id,'notification_group_documents_upload_member') || 'yes' == get_usermeta( $current_user->id,'notification_group_documents_upload_member') ) { ?>checked="checked" <?php } ?>/></td> <td class="no"><input type="radio" name="notifications[notification_group_documents_upload_member]" value="no" <?php if ( get_usermeta( $current_user->id,'notification_group_documents_upload_member') == 'no' ) { ?>checked="checked" <?php } ?>/></td>To:
<td class="yes"><input type="radio" name="notifications[notification_group_documents_upload_member]" value="yes" <?php if ( get_usermeta( $current_user->id,'notification_group_documents_upload_member') == 'yes' ) { ?>checked="checked" <?php } ?>/></td> <td class="no"><input type="radio" name="notifications[notification_group_documents_upload_member]" value="no" <?php if ( !get_usermeta( $current_user->id,'notification_group_documents_upload_member') || 'no' == get_usermeta( $current_user->id,'notification_group_documents_upload_member') ) { ?>checked="checked" <?php } ?>/></td>Forum: Plugins
In reply to: [Group Documents] [Plugin: Group Documents] Notification disabled by defaultI’d like to know how to adjust this as well.
Thanks!
@netjera – Ran into the same error message and your suggestion came in handy. Thanks!
Forum: Plugins
In reply to: [Picasa Album Uploader] Upgrade to .6 brokenHi. I just upgraded to 0.6.1. All was working fine earlier today but since I’ve upgraded, I can no longer get past the login screen. Here is a snippet from the log:
2011-05-18 00:55:06 Parsing request ‘picasa_album_uploader/login’
2011-05-18 00:55:06 Request will be handled by plugin
2011-05-18 00:55:06 Generating login window content
2011-05-18 00:55:06 build_url: http://173.192.209.194/~risemedi/joyfularts/wordpress/picasa_album_uploader/minibrowser
2011-05-18 00:55:07 Parsing request ‘picasa_album_uploader/minibrowser’
2011-05-18 00:55:07 Request will be handled by plugin
2011-05-18 00:55:07 Generating Minibrowser content
2011-05-18 00:55:07 Empty RSS feed from Picasa; unable to build minibrowser form.
2011-05-18 00:55:07 Using plugin supplied templateThis is repeated for each time I’ve attempted to login and upload images. Any help would be greatly appreciated!
Thanks,
Dan