Title: jonwatson87's Replies | WordPress.org

---

# jonwatson87

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rate My Post - Star Rating Plugin by FeedbackWP] Hide on post edit screens](https://wordpress.org/support/topic/hide-on-post-edit-screens/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [7 years ago](https://wordpress.org/support/topic/hide-on-post-edit-screens/#post-11797401)
 * You, sir, are a gentleman and a scholar! Works like a charm 🙂
 * I could’ve sworn I tried that… but clearly must’ve had another check in there
   as well that was causing an error, like is_admin() or something.
 * But working great! Perfection. Thank you! 😀
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rate My Post - Star Rating Plugin by FeedbackWP] Hide on post edit screens](https://wordpress.org/support/topic/hide-on-post-edit-screens/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [7 years ago](https://wordpress.org/support/topic/hide-on-post-edit-screens/#post-11796742)
 * Scratch that…
 * The hide works, and the code works, but the style element screws up CSS for the
   rest of the page when editing in Gutenberg.
 * The content/editing block section doesn’t automatically expand for content, instead
   spilling over and being hidden.
 * CSS may not fix this one…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rate My Post - Star Rating Plugin by FeedbackWP] Hide on post edit screens](https://wordpress.org/support/topic/hide-on-post-edit-screens/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [7 years ago](https://wordpress.org/support/topic/hide-on-post-edit-screens/#post-11796708)
 * FYI:
 * Think I’ve got it sorted.
 * Had to change the if statement, and hook into “current_screen”, rather than admin_head,
   but seems to do the trick 🙂
 *     ```
       // Hide Rating Manager on custom post type edit screens
   
       function rtt_ratings_custom_style( $current_screen ) {
   
       	if ( is_admin() && 'post' !== $current_screen->post_type ) {
   
       	    echo '<style>
   
       		    #rmp-rate-id {
       		    	display:none;
       		    }
   
       	    </style>';
   
       	}
   
       }
   
       add_action('current_screen', 'rtt_ratings_custom_style');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rate My Post - Star Rating Plugin by FeedbackWP] Hide on post edit screens](https://wordpress.org/support/topic/hide-on-post-edit-screens/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [7 years ago](https://wordpress.org/support/topic/hide-on-post-edit-screens/#post-11796699)
 * Hey Blaz!
 * Thanks for this! But post ID has limited usefulness if I want it to display for
   all posts in the custom “post” post type, but none of my custom ones…
 * But the CSS hide is a good place to start.
 * Thanks!
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Geolocation IP Detection] Update failed. Forbidden](https://wordpress.org/support/topic/update-failed-forbidden/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/update-failed-forbidden/#post-9861108)
 * “Updated successfully.”
 * Outstanding! 😀 Thanks so much, Benjamin! You’re a superstar 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Updates Manager] Feature request: Scheduled Time for Updates](https://wordpress.org/support/topic/feature-request-scheduled-time-for-updates/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/feature-request-scheduled-time-for-updates/#post-9480116)
 * Ah, I see! Yeah, that’s possible.
 * A bit disappointing, but understandable.
 * I’ll keep an eye on it, and if any on the repo aren’t updating I’ll give you 
   a shout.
 * Thanks for the swift reply, as always, Ronald!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Updates Manager] Feature request: Scheduled Time for Updates](https://wordpress.org/support/topic/feature-request-scheduled-time-for-updates/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/feature-request-scheduled-time-for-updates/#post-9479078)
 * So, turns out I have the same problem as SouthernCoaster now.
 * Because I want things to run at a scheduled time I can’t rely on WP Cron, which
   requires users browsing the site in order to activate.
 * I’ve set up an external cron using [EasyCron](https://www.easycron.com) to run
   wp-cron.php every minute, and have changed the time of my checks using WP Crontrol
   as recommended above.
 * But it doesn’t actually seem to be working with Easy Updates Manager.
 * I received a notification last night that another of my sites had an update ready
   and waiting for Beaver Builder.
 * According to my settings the cron should’ve checked for updates at 7am this morning,
   and Easy Updates Manager should’ve updated it just after.
 * But it didn’t update.
 * The external cron ran fine, but no updates were actually performed.
 * Any ideas why this might not be working…?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Can’t log out](https://wordpress.org/support/topic/cant-log-out-15/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/cant-log-out-15/#post-9467617)
 * Unfortunately not, no.
 * It redirects me to the login page, where it asks for my password again, SUGGESTING
   I’ve been logged out, but when I click the link below to go “Back to Site Name”
   it hasn’t actually logged me out.
 * I can still access the dashboard without logging in, and the admin toolbar still
   appears at the top, on the front end.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Updates Manager] Feature request: Scheduled Time for Updates](https://wordpress.org/support/topic/feature-request-scheduled-time-for-updates/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/feature-request-scheduled-time-for-updates/#post-9448295)
 * Perfect! Thank you! 😀
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC Vendors - WooCommerce Multivendor, WooCommerce Marketplace, Product Vendors] Fatal Error Breaks Site on Activation](https://wordpress.org/support/topic/fatal-error-breaks-site-on-activation/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [9 years ago](https://wordpress.org/support/topic/fatal-error-breaks-site-on-activation/#post-9389443)
 * Hey Anna! Thanks for getting back to me.
 * Yup. Fully disabled and deleted, along with its related plugins.
 * All I had left installed was WooCommerce itself.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Fatal error](https://wordpress.org/support/topic/fatal-error-2600/)
 *  [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/fatal-error-2600/#post-9306074)
 * Same here. Exactly the same issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Fatal error](https://wordpress.org/support/topic/fatal-error-2600/)
 *  [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/fatal-error-2600/#post-9306075)
 * Same here. Exactly the same issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Permalink Manager Lite] Feature Requests (willing to pay for Pro version right now!)](https://wordpress.org/support/topic/feature-requests-willing-to-pay-for-pro-version-right-now/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/feature-requests-willing-to-pay-for-pro-version-right-now/#post-9187428)
 * Awesome! 😀
 * You’re a legend!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Permalink Manager Lite] Feature Requests (willing to pay for Pro version right now!)](https://wordpress.org/support/topic/feature-requests-willing-to-pay-for-pro-version-right-now/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/feature-requests-willing-to-pay-for-pro-version-right-now/#post-9183187)
 * Okay. One more slight issue.
 * The native slug seems to be generated prior to the permalink.
 * As such, if you have two posts in separate categories, but named the same, you
   get that annoying -2 on the end of your link and have to change it manually in
   permalink manager.
 * I’ve got several donation/sponsorship forms that relate to specific events, and
   I define which event it relates to by giving it an event category.
 * To sponsor a centrepiece for table one at the Sydney event, for instance, I have
   this permalink:
 * /support/sydney-gala-2017/table-1
 * But if I now go to add another table-1, for a different event, it thinks I’m 
   creating two table-1s (based on the native slug alone). The category isn’t taken
   into account prior to saving, which means my new permalink (on save) becomes:
 * /support/melbourne-gala-2017/table-1-2
 * Is there any way to avoid this behaviour, other than naming all the posts differently
   or changing it manually after the fact?
    -  This reply was modified 9 years, 2 months ago by [jonwatson87](https://wordpress.org/support/users/jonwatson87/).
    -  This reply was modified 9 years, 2 months ago by [jonwatson87](https://wordpress.org/support/users/jonwatson87/).
      Reason: Clarification
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Permalink Manager Lite] Feature Requests (willing to pay for Pro version right now!)](https://wordpress.org/support/topic/feature-requests-willing-to-pay-for-pro-version-right-now/)
 *  Thread Starter [jonwatson87](https://wordpress.org/support/users/jonwatson87/)
 * (@jonwatson87)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/feature-requests-willing-to-pay-for-pro-version-right-now/#post-9179510)
 * Aha! So it is! Perfect 🙂 Thanks for that!

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

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