Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • in reply to: Related Products – Cross-Sells #56655
    greendiablo
    Member
    Post count: 10

    Thank you for clarifying. That makes a lot of sense. Didn’t realize the logic behind the two different things.

    in reply to: Order of FAQs #34710
    greendiablo
    Member
    Post count: 10

    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.

    in reply to: Order of FAQs #33470
    greendiablo
    Member
    Post count: 10

    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.

    in reply to: Order of FAQs #32719
    greendiablo
    Member
    Post count: 10

    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/

    in reply to: How can I de-register Custom Post Types (CPT) I don't need? #32352
    greendiablo
    Member
    Post count: 10

    I’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');
Viewing 5 posts - 1 through 5 (of 5 total)