madlak
Forum Replies Created
-
HI 13blauen
This might not work but try resetting the permalinks. Go to
Settings > Permalinks and just click the save changes button without making any actual changes to the settings. This will rewrite your .htaccess file, which sound like it might be the issueHi Reilly,
It’s not possible for me to be sure what your exact problem is, as I don’t know all the ins and outs of your setup. Anyway, it’s quite possible this problem isn’t actually related to this plugin at all, seeing as the data seems to all be there, it’s could be something to do with your theme.
The first few things I would do is switch to the default wordpress theme, check to see if there is any change, and then switch back. If the default theme works as it should and your main theme still displays as it does now then it’s probably related to your theme, in which case, you’ll have to contact the theme author for support. It’s possible that just switching and switching back will fix the issue though. Sorry I couldn’t help more!
EDIT:
There are actually a lot of errors in the console on your site. Your theme stylesheet isn’t loading. I assume all of the files that make up the site have been uploaded? This plugin only handles the database not the files.EDIT 2 — READ THIS IT MIGHT SOLVE YOUR ISSUE:
Looked again quickly, it’s adding http// after https:// of all urls it’s trying to get. When you migrated the database did you have a search replace set up similar to this?Search: localhost/reilly/craig
Replace: http//www.reillycraig.caIf so change it so that the http// isn’t there anymore. That might fix your problem
Forum: Plugins
In reply to: [Posts Order] Editor user type can't order postsIf you have a look here there’s a good explanation of what’s causing your problem.
So if you find the below block of code in category-custom-post-order/includes/posts_order.php and change where it says ‘manage_options’ to ‘manage_categories’ that will enable editors to use this plugins features. Obviously it’s not ideal to edit a plugin directly, but as there is no filter this is probably the best you can do. Remember to make the change again if this plugin gets updated, because this change will likely be overwritten.
public function admin_menu() { $page_hook_suffix = add_submenu_page( null, __('Order posts', 'post-sorter'), __('Order posts', 'post-sorter'), 'manage_options', 'sort-page', array( $this, 'admin_page' ), 0 ); }
Hope this helps!