• Resolved Dave3o3

    (@dave3o3)


    Hi,

    first of all i’d like to thank you for your excellent work! Your plugin is exactly what i was looking for. We run a small company in Germany and want to switch from a static wiki to a dynamic CMS. So thanks again for this helpful tool!

    My question:

    We are supporting large business groups with several associated companies. We call these groups “Clients” and the companies “CBUs” (Client Business Units).
    Is there a possibility to create an additional menu for “Client”, “Customer” or “Company Group”?

    p.e.:
    Client/Group: Apple > Company: Itunes S.A.R.L. (of course they should be linked to each other)

    https://www.ads-software.com/plugins/orbis/

Viewing 1 replies (of 1 total)
  • Plugin Author Remco Tolsma

    (@remcotolsma)

    If you are a WordPress developer this is ofcourse possible. We however don’t have plans to add this extra dimension. You could however use the company categories to group companies. If you really need an extra custom post type for the “Clients” you could develop an custom WordPress plugin wich register an custom post type ‘Company Group’.

    https://codex.www.ads-software.com/Function_Reference/register_post_type
    https://github.com/scribu/wp-posts-to-posts/wiki/Basic-usage

    A simple start:

    <?php
    
    function orbis_company_groups_init() {
    	register_post_type( 'orbis_company_group', array(
    		'public' => true,
    		'label'  => __( 'Company Groups', 'orbis_company_groups' ),
    	) );
    }
    
    add_action( 'init', 'orbis_company_groups_init' );
    
    function orbis_company_groups_p2p_init() {
        p2p_register_connection_type( array(
            'name' => 'orbis_companies_to_groups',
            'from' => 'orbis_company',
            'to'   => 'orbis_company_group',
        ) );
    }
    
    add_action( 'p2p_init', 'orbis_company_groups_p2p_init' );

    We are currently to busy to help you further with this, but an WordPres developer could help you with this. Good luck!

Viewing 1 replies (of 1 total)
  • The topic ‘Company Groups’ is closed to new replies.