Fix “Post Types Order” plugin error with HTTPS

The WordPress Plugin `Post Types Order` by NSP CODE is helpful in as it allows you to

> Order Posts and Post Types Objects using a Drag and Drop Sortable javascript capability

But unfortunately the plugin does not work with wordpress HTTPS / SSL admin – or at least not without errors:

Fix "Post Types Order" plugin error with HTTPS

Fix

But the good news is that there is an easy fix with changing just a few lines of code:

At the top of the `post-types-order.php` page there are two `constant` definitions:

define(‘CPTPATH’, ABSPATH.’wp-content/plugins/post-types-order’);
define(‘CPTURL’, get_option(‘siteurl’).’/wp-content/plugins/post-types-order’);

And the second one needs to use the `plugins_url()` function that WordPress recommends instead:

define(‘CPTPATH’, ABSPATH.’wp-content/plugins/post-types-order’);
define(‘CPTURL’, plugins_url().’/post-types-order’);

After that you should stop receiving the HTTPS error for some insecure content when you are in the WP administration interface.

Related Posts:

  • No Related Posts
This entry was posted in Tech Tips, Web Development and tagged , , , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *