Author/Owner details
Hi.
One quick question:
After a product has been added from an author, is it possible to
list the details of that author on the product details? So we know
directly who is the owner of that product?
Regards.
Log in to Community
Hi.
One quick question:
After a product has been added from an author, is it possible to
list the details of that author on the product details? So we know
directly who is the owner of that product?
Regards.
2 Posted by optart on 17 Jul, 2012 06:12 PM
Hi, as far as I know there is no such option at the moment; maybe somebody from Jigoshop will let us know if it's on their roadmap or not. If not - maybe we'll think about creating such plugin!
3 Posted by cry4gr on 20 Jul, 2012 02:07 PM
Ok I kind resolved my issue by inserting in jigoshop_template_functions.php at line: 253 and 254 the below:
$author_email .= get_the_author_meta('user_email',$author->ID); $author_first_name .= get_the_author($author->ID);
Another question. After checking out, both the customer and the admin are informed about the order. How about the author of that product? He/She should get an email informing him that there is an order for his/her product. Please do advice.
4 Posted by cry4gr on 20 Jul, 2012 02:39 PM
Nevermind, I did it myself. Changed the jigoshop_email.php. Changed the $order->billing_email with $author_email where $author_email .= get_the_author_meta('user_email',$author->ID);
Thanks.
5 Posted by cry4gr on 20 Jul, 2012 04:16 PM
Changed the $order->billing_email with $author_email where $author_email .= get_the_author_meta('user_email',$author->ID); actually didn't work. So please advice how is it possible for the owner of the product to be informed about the existence of an order?