Scott Cariss
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Updates Notifier] enhancement, allow filtering of message sentNew version has filters to filter subject and content of the email sent
Forum: Plugins
In reply to: [WP Updates Notifier] Suggestion: Custom Subject LinePlease see new version. It has a filter that you can leverage to change the subject line to what you want
Forum: Plugins
In reply to: [WP Updates Notifier] Outdated for WordPress 4.2?Plugin is compatible and recently updated
Yes I will happily add you to the contributors list if you contribute.
Forum: Plugins
In reply to: [WP Updates Notifier] Active development? Adoption?If you want to contribute to the development of this plugin you are welcome to fork and make pull requests over at: https://github.com/l3rady/wp-updates-notifier
You are welcome to make a pull request over at https://github.com/l3rady/wp-updates-notifier
Forum: Plugins
In reply to: [WP Updates Notifier] Email recieved not displayed correctlyThat code in that email is not from this plugin. You have something somewhere messing with the emails.
For those wanting a fix change the function setup_taxonomy_field() to:
function setup_taxonomy_field( &$field, $taxonomy ) { $first_choice = $field['choices'][0]['text']; $field['choices'] = $this->load_taxonomy_choices( $taxonomy, $field['type'], $first_choice ); //now check if we are dealing with a checkbox list and do some extra magic if ( $field['type'] == 'checkbox' ) { //clear the inputs first $field->inputs = array(); $counter = 0; //recreate the inputs so they are captured correctly on form submission foreach( $field['choices'] as $choice ) { $counter++; if ( ($counter % 10) == 0 ) $counter++; //thanks to Peter Schuster for the help on this fix $id = floatval( $field['id'] . '.' . $counter ); $field->inputs[] = array('label' => $choice['text'], 'id' => $id); } } }
I’m getting the same issue. Found this that explains the issue: https://www.gravityhelp.com/gravity-forms-1-9-developer-notes/
Hopefully the developer can fix this plugin.
Forum: Plugins
In reply to: [APC Object Cache Backend] $found in wp_cache_get() not implementedSo does this mean it is working or not?
Forum: Plugins
In reply to: [APC Object Cache Backend] $found in wp_cache_get() not implementedYes it works and will reduce page load times providing that you have APC enabled and working and that the plugins and themes you use make use of wordpress object caching.
Forum: Plugins
In reply to: [APC Object Cache Backend] $found in wp_cache_get() not implementedI have made my own version of this plugin over at https://github.com/l3rady/WordPress-APC-Object-Cache as it appears that development of this plugin is dead.
I have made my own version of this plugin over at https://github.com/l3rady/WordPress-APC-Object-Cache as it appears that development of this plugin is dead.
Forum: Plugins
In reply to: [APC Object Cache Backend] Bug in incr and decr functionsI have made my own version of this plugin over at https://github.com/l3rady/WordPress-APC-Object-Cache as it appears that development of this plugin is dead.
Yes the above is the latest version.
Reason why I haven’t published it here yet is because the plugin isn’t at a point I’m happy with to release to everyone.
The reason why I pre release on github is because the people using it there are more likely to get involved if things don’t work and report them without leaving negative feedback.
I may look at releasing version 1.4.1 to the plugin repo this weekend.