• Resolved whasler

    (@whasler)


    I want to add user generated reviews for the events on my website. Has anyone had any experience adding reviews to events?

    I have looked at a few plugins and the most promising seems to be GD Star Rating. I am not clear how to best set it up, so I thought i would see if anyone else found a solution.

    Thanks- the plugin is awesome!

    http://wordpress.org/extend/plugins/events-manager/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    maybe you can try this steps:

    1. download and install plugin – WP Customer Reviews
    2. go to wp-content/plugins/wp-customer-reviews/wp-customer-reviews-admin.php

    3. search this lines

    /* add for pages and posts */
    		add_meta_box($meta_box['id'], $meta_box['title'], array(&$this, 'wpcr_show_meta_box'), 'page', $meta_box['context'], $meta_box['priority']);
    		add_meta_box($meta_box['id'], $meta_box['title'], array(&$this, 'wpcr_show_meta_box'), 'post', $meta_box['context'], $meta_box['priority']);

    then add this lines below

    add_meta_box($meta_box['id'], $meta_box['title'], array(&$this, 'wpcr_show_meta_box'), 'event', $meta_box['context'], $meta_box['priority']);
    		add_meta_box($meta_box['id'], $meta_box['title'], array(&$this, 'wpcr_show_meta_box'), 'event-recurring', $meta_box['context'], $meta_box['priority']);

    Works like a charm. Thanks. Next to ‘event’ and ‘event-recurring’ this also works for ‘location’ if you want to add the review option for locations.

    Hey there,

    thanks a lot for the thread. I tried your steps too, but it didn’t work out for my events. So, when I add a new event, in the dialog the customer review appears in my event, but the box to fill in the event-adress is erased. Is it possible to fix this problem?

    And I got another Question. Is it possible to include the Ranking in the Events-Title? So it appears on the single-event-page and the event list?

    Thanks a lot.

    Greets, T.

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    @thowe82

    maybe $meta_box[‘id’] needs to be changed to something unique.

    pls add new questions to a new thread.

    @marcus, thanks a lot it now works out good. T

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Adding Reviews to Events’ is closed to new replies.