• Resolved stevoli

    (@stevoli)


    I’m working on a website using the “Authors” extension, and I want customers to be able to leave reviews for the author on that page. Basically Author page = Vendor page, and customers will leave reviews for that vendor. Is that something being worked on, or do I need to find a different plugin?

Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    we are planning an extension which will allow leaving reviews but right now i cannot tell when this will be ready.

    In the meantime, you can enable the default WP comments on the Authors pages, to do that add the code below in your theme functions.php file

    
    add_action("adverts_post_type", function( $args, $type ) {
       if( $type == 'advert-author' ) {
           $args["supports"][] = "comments";
       }
       return $args;
    }, 10, 2 );
    

    Then install some third party plugin which adds star rating to the comments, for example something like https://wordpress.org/plugins/stars-rating/

Viewing 1 replies (of 1 total)
  • The topic ‘Authors Extension Question’ is closed to new replies.