Forum Replies Created
-
AuthorPosts
-
September 24, 2015 at 12:05 pm in reply to: adding event info to venues using tribe_include_view_list array #1008459
dpeschio
ParticipantSeriously? This is the help you offer…”hire a developer”? I’m pissed about this.
First, I love your plug in.
Second – We have the pro version with a number of extensions, and in my opinion what I’m building should be available at the pro level. I need a page that shows venues, sorts them by category and shows a few events for the venue – so I’m building it. I had to add the ability categories to venues – and yes I have asked for that function as a feature in future releases. Then I had to make a shortcode to display the venues by categories – done.
Now all I’m asking is for some documentation on the arguments I can use with tribe_include_view_list so I can filter and style the content. Just point me in the right direction and I’ll figure it out.
“Hire a developer” It’s like you gave me a pat on the head and told me to run along. I AM going to figure this out. Unfortunately you’ve added a few hours to my efforts. That sucks for me, but I’ll get it and know more when I’m done.
Thanks for nuthin.
dpeschio
ParticipantI dug through the sites database and found what I needed – tribe_venue. It would be super helpful if categories for venues were a standard feature. Heres the code that worked for me:
// Register Custom Taxonomy for Events Venues function venue_category() { $labels = array( 'name' => _x( 'Venue Categories', 'Taxonomy General Name', 'text_domain' ), 'singular_name' => _x( 'Venue Category', 'Taxonomy Singular Name', 'text_domain' ), 'menu_name' => __( 'Venue Category', 'text_domain' ), 'all_items' => __( 'Venue Categories', 'text_domain' ), 'parent_item' => __( 'Parent Venue Category', 'text_domain' ), 'parent_item_colon' => __( 'Parent Venue Category:', 'text_domain' ), 'new_item_name' => __( 'New Venue Category', 'text_domain' ), 'add_new_item' => __( 'Add New Venue Category', 'text_domain' ), 'edit_item' => __( 'Edit Venue Category', 'text_domain' ), 'update_item' => __( 'Update Venue Category', 'text_domain' ), 'view_item' => __( 'View Item', 'text_domain' ), 'separate_items_with_commas' => __( 'Separate venue categories with commas', 'text_domain' ), 'add_or_remove_items' => __( 'Add or remove venue categoriess', 'text_domain' ), 'choose_from_most_used' => __( 'Choose from the most used venue categories', 'text_domain' ), 'popular_items' => __( 'Popular Items', 'text_domain' ), 'search_items' => __( 'Search venues', 'text_domain' ), 'not_found' => __( 'Not Found', 'text_domain' ), ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, ); register_taxonomy( 'tribe_venue_category', array( 'tribe_venue' ), $args ); } add_action( 'init', 'venue_category', 0 ); }December 3, 2014 at 7:44 am in reply to: Display page with list of venues or selected venues #906271dpeschio
ParticipantHey All-
I need this functionality as well. This is a GREAT plugin and we’ve gone pro, as well as added the community events extension. It has the potential to change the way we structure our site and become as integral as the core WP. A simple archive page of venues with featured image / venue name / and excerpt would be a really nice addition to the Pro version. Hint, hint….You don’t have a basic “template” I could build out from or some code snippets to get me started – do you?
Our site: http://ashevillealetrail.com/ we’re using your plugin for the 6ix pack, events and are pulling content into MailChimp via rss for our newsletter. We love it and I’m suggesting it to two clients at the moment.
-
AuthorPosts
