3loY
Forum Replies Created
-
Forum: Plugins
In reply to: [YUZO] echo summ of allOnly posts!
And if its posible : total visits of all posts from category ID1 (for example).
Thanx 🙂Forum: Plugins
In reply to: [YUZO] echo summ of allOK
I`ll be waiting 🙂Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Locations cat.thnx 🙂
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Locations cat.I mean I can create some other categories but links are broken
// Custom Taxonomy Code add_action( 'init', 'build_taxonomies', 0 ); function build_taxonomies() { register_taxonomy( 'cats', EM_POST_TYPE_EVENT, array( 'hierarchical' => true, 'label' => 'Categories', 'query_var' => true, 'rewrite' => true ) ); }Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Locations cat.OH no ):
Links such as MYSITE/cats/clubs don`t work
Could You help me fix it?Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Locations cat.I did it.
// register taxonom
add_action( ‘init’, ‘rmcc_create_taxonomies’, 0 );
function rmcc_create_taxonomies() {
// cats taxonomy
$labels = array(
‘name’ => _x( ‘Cats’, ‘taxonomy general name’ ),
‘singular_name’ => _x( ‘Cat’, ‘taxonomy singular name’ ),
‘search_items’ => __( ‘Search Cat’ ),
‘all_items’ => __( ‘All Cat’ ),
‘parent_item’ => __( ‘Parent Cat’ ),
‘parent_item_colon’ => __( ‘Parent Cat:’ ),
‘edit_item’ => __( ‘Edit Cat’ ),
‘update_item’ => __( ‘Update Cat’ ),
‘add_new_item’ => __( ‘Add New Cat’ ),
‘new_item_name’ => __( ‘New Cat’ ),
‘menu_name’ => __( ‘Категории мест’ ),
);
register_taxonomy(
‘cats’,
‘event’,
array(
‘hierarchical’ => true,
‘labels’ => $labels,
‘query_var’ => true,
‘rewrite’ => true,
‘show_admin_column’ => true
)
);
}resolved!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Locations cat.If you want to add categories / tags directly to locations
YEAP!
look into creating a custom taxonomy for the custom post type ‘location’.
I got no idea “how” ):
Could you help me?
I`m so sorry for my stupid questions but I just began to learn php programming language.
I know, very well, HTML and CSS also I can write some functions, conditions on JS (jQuery) …Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Locations cat.yep You don’t understood me ):
I would like put in order all my locations, but “locations” haven’t category and tag functions as like “events” has.
It`s clear?Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Locations cat.And where I can add categories of locations?
How I can show this categories on my homepage?Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Locations cat.Is it possible to write a function: “Locations Categories” similarly to “Events Categories” ?
May you help or show how?