• I am wondering if there is a way to add custom categories or tags to each model. I would like to be able to list all the talent filtered by guys, girls, kids as well as what areas of talent that each individual is available for, such as voice-over, acting and other specific areas of interest. Not sure if this would be possible, but does seem like it should be a fairly easy thing to implement? Thanks for your response in advance.

    https://www.ads-software.com/plugins/wp-models/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author actionhook

    (@actionhook)

    Mike–

    Good suggestion. Let me discuss with my partner developer and see what we can do.

    Hi guys, how can I can show up the post directly? I mean when I add a “model” I can see the preview but I can′t get that it appears like post o page… Thank you and congratulations for this great plugin

    How do you use this plugin? I have the plugin listed in my menu settings but where do you place the the info to allow models to use it?
    Help!
    David

    How do you use this plugin? I have the plugin listed in my menu settings but where do you place the the info to allow models to use it?
    Help!
    David

    hello mikewiesman you can add taxonomoy = category for models post type .under plugind directory go to plugins->wp-models->app->models open model_cpt_models.php file and add this line ‘taxonomies’ => array(‘category’), in init_args function’s $this->args = array();
    Before :

    protected function init_args( $uri, $txtdomain )
    		{
    			$labels = array(
    				'name'                => _x( 'Models', 'Post Type General Name', $txtdomain ),
    				'singular_name'       => _x( 'Model', 'Post Type Singular Name', $txtdomain ),
    				'menu_name'           => __( 'Models', $txtdomain ),
    				'parent_item_colon'   => __( 'Parent Model', $txtdomain ),
    				'all_items'           => __( 'All Models', $txtdomain ),
    				'view_item'           => __( 'View Model', $txtdomain ),
    				'add_new_item'        => __( 'Add New Model', $txtdomain ),
    				'add_new'             => __( 'New Model', $txtdomain ),
    				'edit_item'           => __( 'Edit Model', $txtdomain ),
    				'update_item'         => __( 'Update Model', $txtdomain ),
    				'search_items'        => __( 'Search models', $txtdomain ),
    				'not_found'           => __( 'No models found', $txtdomain ),
    				'not_found_in_trash'  => __( 'No models found in Trash', $txtdomain ),
    			);
    
    			$this->args = array(
    				'description'         	=> __( 'Models', $txtdomain ),
    				'labels'              	=> $labels,
    				'supports'            	=> array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ),
    				'hierarchical'        	=> false,
    				'public'              	=> true,
    				'show_ui'             	=> true,
    				'show_in_menu'        	=> true,
    				'show_in_nav_menus'   	=> true,
    				'show_in_admin_bar'   	=> true,
    				'menu_icon'           	=> trailingslashit( $uri ) . 'images/model-icon.png',
    				'can_export'          	=> true,
    				'has_archive'         	=> true,
    				'exclude_from_search' 	=> false,
    				'publicly_queryable'  	=> true,
    				'rewrite' 			  	=> array( 'slug' => 'models' )
    			);
    		}

    After :

    protected function init_args( $uri, $txtdomain )
    		{
    			$labels = array(
    				'name'                => _x( 'Models', 'Post Type General Name', $txtdomain ),
    				'singular_name'       => _x( 'Model', 'Post Type Singular Name', $txtdomain ),
    				'menu_name'           => __( 'Models', $txtdomain ),
    				'parent_item_colon'   => __( 'Parent Model', $txtdomain ),
    				'all_items'           => __( 'All Models', $txtdomain ),
    				'view_item'           => __( 'View Model', $txtdomain ),
    				'add_new_item'        => __( 'Add New Model', $txtdomain ),
    				'add_new'             => __( 'New Model', $txtdomain ),
    				'edit_item'           => __( 'Edit Model', $txtdomain ),
    				'update_item'         => __( 'Update Model', $txtdomain ),
    				'search_items'        => __( 'Search models', $txtdomain ),
    				'not_found'           => __( 'No models found', $txtdomain ),
    				'not_found_in_trash'  => __( 'No models found in Trash', $txtdomain ),
    			);
    
    			$this->args = array(
    				'description'         	=> __( 'Models', $txtdomain ),
    				'labels'              	=> $labels,
    				'supports'            	=> array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ),
    				'hierarchical'        	=> false,
    				'public'              	=> true,
    				'show_ui'             	=> true,
    				 'taxonomies' => array('category'),
    				'show_in_menu'        	=> true,
    				'show_in_nav_menus'   	=> true,
    				'show_in_admin_bar'   	=> true,
    				'menu_icon'           	=> trailingslashit( $uri ) . 'images/model-icon.png',
    				'can_export'          	=> true,
    				'has_archive'         	=> true,
    				'exclude_from_search' 	=> false,
    				'publicly_queryable'  	=> true,
    				'rewrite' 			  	=> array( 'slug' => 'models' )
    			);
    		}
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Model Categories?’ is closed to new replies.