Digital experiences for all disciplines
Forum Replies Created
-
Posted in: We hit Power Elite.
-
Thank you for clarifying. That makes a lot of sense. Didn’t realize the logic behind the two different things.
Ed,
I don’t really understand your question.
This is what I did:
1. I installed the plugin “Post Types Order”
2. I went to FAQs > Re-Order
3. I reordered the FAQ posts by drag-and-drop and saved it: http://grab.by/suqW
4. I checked on the frontend and saw that the custom order I just saved didn’t apply: http://grab.by/sure
(See on live site: http://bit.ly/1balrUq )Please help me fix this. Why is the custom order not applied on the frontend?
Thanks.Hi, the plugin shows up in the admin and I can rearrange the FAQ posts, but the new custom order doesn’t reflect on the front-end, meaning it didn’t reorder the FAQ posts as I specified even though I saved the new order in the backend.
This might help for a regular CPT archive page, but it doesn’t effect the order of the FAQ page template!! Neither the FAQ topics, nor the actual FAQ posts.
I’m talking about this page: http://neighborhood.swiftideas.net/pages/help-centre-f-a-q/
November 20, 2013 at 4:59 pm in reply to: How can I de-register Custom Post Types (CPT) I don't need? #32352I’d prefer not to edit the parent theme files.
I found this code to simply hide the unwanted menus in the admin sidebar:/*------------------------------------------*/ /* Remove Unwanted Admin Menu Items */ /*------------------------------------------*/ function remove_admin_menu_items() { $remove_menu_items = array(__('Jobs'),__('Portfolio')); global $menu; end ($menu); while (prev($menu)){ $item = explode(' ',$menu[key($menu)][0]); if(in_array($item[0] != NULL?$item[0]:"" , $remove_menu_items)){ unset($menu[key($menu)]);} } } add_action('admin_menu', 'remove_admin_menu_items');
-
Posted in: We hit Power Elite.