Title: imagefact's Replies | WordPress.org

---

# imagefact

  [  ](https://wordpress.org/support/users/imagefact/)

 *   [Profile](https://wordpress.org/support/users/imagefact/)
 *   [Topics Started](https://wordpress.org/support/users/imagefact/topics/)
 *   [Replies Created](https://wordpress.org/support/users/imagefact/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/imagefact/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/imagefact/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/imagefact/engagements/)
 *   [Favorites](https://wordpress.org/support/users/imagefact/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/imagefact/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/imagefact/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PublishPress Planner - Editorial Calendar, Marketing Content, Kanban Board] Plugins “Update” notices disappear](https://wordpress.org/support/topic/plugins-update-notices-disappear/)
 *  Thread Starter [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/plugins-update-notices-disappear/#post-9425082)
 * Thanks for posting this – and finding out where the problem is. I second it! 
   Since this was marked as resolved (even though it isn’t) they might not see this
   note. You may need to post as a new item.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PublishPress Planner - Editorial Calendar, Marketing Content, Kanban Board] Notification on Trashed Post](https://wordpress.org/support/topic/notification-on-trashed-post/)
 *  Thread Starter [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [9 years ago](https://wordpress.org/support/topic/notification-on-trashed-post/#post-9157950)
 * Ok, that code caused a lockout of the site. But this code works:
 *     ```
       /* Change PublicPress notifications trigger */
       /* Don't Trigger notification when trashing posts */
       add_filter('pp_notification_status_change', 'ppchangetrigger');
       function ppchangetrigger($new_status) {
       if ($new_status === "trash") {
       		return false;
       	}
       return true;
       }
       ```
   
 * As for the other problem of triggering a notification on submitting a post. What
   I thought seemed to be true. On the page you sent:
    publishpress/modules/notifications/
   notifications.php
 * On line 108 I changed the 10 to a 10000 and it then works:
    `add_action('transition_post_status',
   array($this, 'notification_status_change'), 10000, 3);`
 * But of course, this is hardcoded and will get lost. So I have 2 questions for
   you:
 * 1 – If there a way around this?
    2 – Can you just permanently change this in 
   your code on next update? Will it cause conflicts for you/others?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PublishPress Planner - Editorial Calendar, Marketing Content, Kanban Board] Notification on Trashed Post](https://wordpress.org/support/topic/notification-on-trashed-post/)
 *  Thread Starter [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [9 years ago](https://wordpress.org/support/topic/notification-on-trashed-post/#post-9157623)
 * Thank you! So would it be like this?
 *     ```
       /* Change PublicPress notifications trigger  		*/
       /* Don't Trigger notification when trashing posts 	*/
       add_filter('pp_notification_status_change', 'ppchangetrigger');
       function ppchangetrigger($new_status, $old_status, $post, 10,3){
           if $new_status === "trash" {
           	return false;
           }
           return;
       }
       ```
   
 * ALSO ANOTHER QUESTION:
    This is sortof the opposite from above, where I WANT 
   to trigger a notification on publish, but it’s not working:
 * I’m using the wp-types plugins and I have a front-end submit button (Cred-Submit)
   that pubishes posts from the front-end form. It doesn’t seem to be triggering
   your notification. One thought is that their priority is set later than yours.
 * 1 – Where can I find the priority in your plugin to set it at late as possible
   to see if that fixes the problem.
    2 – Any other thoughts on what could fix this?
 * I will also see if I can find any solution on their end, but thought I’d start
   with this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Colorbox] WordPress page type?](https://wordpress.org/support/topic/wordpress-page-type/)
 *  [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/wordpress-page-type/#post-5021811)
 * Very late on this but… Try zapping it out with css. Find your id# or class and:
 * display:none;
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Colorbox] Event handler access](https://wordpress.org/support/topic/event-handler-access/)
 *  Thread Starter [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/event-handler-access/#post-5572792)
 * Yes, saw those but the hooking wasn’t working. Hmmm… I’ll look into it more to
   see if I can come up with a more specific question then. Thanks for answering!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] PHP error when saving config changes](https://wordpress.org/support/topic/php-error-when-saving-config-changes/)
 *  [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/php-error-when-saving-config-changes/#post-5521909)
 * Fix causes other errors on my site….
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autolink URI] A thank you and suggestions](https://wordpress.org/support/topic/a-thank-you-and-suggestions/)
 *  Thread Starter [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/a-thank-you-and-suggestions/#post-4500788)
 * Didn’t know about the other plugin – great to see.
 * A combo that allows internal links to look one way and external another would
   be terrific.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Saver] Is killing layout of widget page in WP 3.8](https://wordpress.org/support/topic/is-killing-layout-of-widget-page-in-wp-38/)
 *  [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [12 years ago](https://wordpress.org/support/topic/is-killing-layout-of-widget-page-in-wp-38/#post-4513986)
 * Yes, this helped. Thank you!
 * Would be great to have it in the real plugin. : )
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Edit Flow] Fatal error: Call to undefined function get_current_screen()](https://wordpress.org/support/topic/fatal-error-call-to-undefined-function-get_current_screen-7/)
 *  [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [12 years ago](https://wordpress.org/support/topic/fatal-error-call-to-undefined-function-get_current_screen-7/#post-4829248)
 * I needed to add this in as well due to an error when trying to update passwords.
   THANK YOU!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Short URL] Links will not work if you deactivate the plugin](https://wordpress.org/support/topic/links-will-not-work-if-you-deactivate-the-plugin/)
 *  Thread Starter [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [12 years ago](https://wordpress.org/support/topic/links-will-not-work-if-you-deactivate-the-plugin/#post-7859098)
 * Sed, I think it’s great what you’ve made – and it seems to have really powerful
   options, much more than other plugins probably have. So for those that want a
   really powerful option – I think this plugin is it… I think people just needed
   to know that the plugin shouldn’t be de-activated once it’s been in commission.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Not able to upload themes](https://wordpress.org/support/topic/not-able-to-upload-themes/)
 *  [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [12 years ago](https://wordpress.org/support/topic/not-able-to-upload-themes/#post-4976838)
 * I’ll second that. Searching for an answer (I’ll ftp in the meantime).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Comments] a new version compatible with 3.8.1](https://wordpress.org/support/topic/a-new-version-compatible-with-381/)
 *  [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [12 years ago](https://wordpress.org/support/topic/a-new-version-compatible-with-381/#post-4807312)
 * Wow – should you put that on the plugin info? Seeing it not upgraded or compatible
   almost made me immediately more on… it’s good to know!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Backup Scheduler] Multisite – subsite restore](https://wordpress.org/support/topic/multisite-subsite-restore/)
 *  [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/multisite-subsite-restore/#post-4744239)
 * I’m truly impressed. I’m looking around at all sorts of multisite backup solutions
   and one of the features I’m seeking is resolved by you just this month! How wonderful
   an Author you are and how fortunate my timing!
 * If I do wind up using your plugin you’re the kind of author I would certainly
   donate to…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Custom Post Types] Toolset Support/Compatibility](https://wordpress.org/support/topic/toolset-supportcompatibility/)
 *  [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/toolset-supportcompatibility/#post-4767626)
 * Not sure if this will help you or not, but if you haven’t seen it – try this:
   
   [https://yoast.com/gravity-forms-custom-post-types/](https://yoast.com/gravity-forms-custom-post-types/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video Thumbnails] Ability to pull from posts AND custom field?](https://wordpress.org/support/topic/ability-to-pull-from-posts-and-custom-field/)
 *  Thread Starter [imagefact](https://wordpress.org/support/users/imagefact/)
 * (@imagefact)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/ability-to-pull-from-posts-and-custom-field/#post-4670451)
 * THIS IS AWESOME. I can’t thank you enough – well yes, I can, I’ll need to send
   a donation!
 * So I know for the future: Is this going to be integrated into a future release?
 * For those that don’t know what to do with this. Make it into a text file and 
   put in a folder inside your plugins folder. I found an example explanation here:
   
   [http://www.doitwithwp.com/create-functions-plugin/](http://www.doitwithwp.com/create-functions-plugin/)

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/imagefact/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/imagefact/replies/page/2/?output_format=md)