• Resolved dimitricayrou

    (@dimitricayrou)


    Hello,

    I use ultimate member so that each of my clients can have a profile on my site.

    My customers can create the products for my Woocommerce store themselves.

    On the “profile” part there is the “About” part and the “Post” part.

    Instead of the last posts, I would like to display the last products offered? Is it possible ?

    Thank you 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @dimitricayrou

    Yes, you can change the posts query with the following filter hook:

    add_filter("um_profile_query_make_posts","um_042721_query_make_products");
    function um_042721_query_make_products( $args ){
       $args['post_type'] = ['post','product'];
       return $args;
    }
    

    I haven’t tested it with WooCommerce but that’s how you modify the post query for the posts tab.

    Regards,

    Thread Starter dimitricayrou

    (@dimitricayrou)

    It works, thank you very much 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Show submitted products’ is closed to new replies.