• chinola

    (@chinola)


    i was looking for an alternative to eventespresso since I need a clean interface more than I need the bells and whistles.

    i was able to change a few files and i’m now using rsvpmaker as an events calendar with a featured slider on the home page of the events with a wootheme. yay! custom post types. i hope to get paypal working with it next.

    these instructions are for the continuum theme from woothemes.
    the wootheme needs to have the featured slider and theme options related files use the custom post type rsvpmaker created.

    and rsvpmaker needs to allow custom_fields and post_tag

    featured.php line 20:
    orig: <?php query_posts(array('tag__in' => $tag_array, 'showposts' => $woo_options['woo_featured_entries'])); ?>
    change: <?php query_posts(array('post_type' => 'rsvpmaker','tag__in' => $tag_array, 'showposts' => $woo_options['woo_featured_entries'])); ?>

    slider.php line 17″
    orig: <?php $saved = $wp_query; query_posts(array('tag__in' => $tag_array, 'showposts' => $woo_options['woo_slider_entries'])); ?>
    change: <?php $saved = $wp_query; query_posts(array('post_type' => 'rsvpmaker','tag__in' => $tag_array, 'showposts' => $woo_options['woo_slider_entries'])); ?>

    theme-options.php line 562:
    orig: if( get_post_type() == 'post' || !get_post_type()){
    change: if( get_post_type() == 'rsvpmaker' || !get_post_type()){

    ____________________________

    rsvpmaker.php
    orig: `’supports’ => array(‘title’,’editor’,’author’,’excerpt’),
    ‘taxonomies’ => array(‘rsvpmaker-type’)`
    change: `’supports’ => array(‘title’,’editor’,’author’,’excerpt’,’custom-fields’),
    ‘taxonomies’ => array(‘rsvpmaker-type’,’post_tag’)`

    https://www.ads-software.com/extend/plugins/rsvpmaker/

  • The topic ‘[Plugin: RVSPmaker] making rsvpmaker and events calendar with woothemes’ is closed to new replies.