Title: get store description
Last modified: April 4, 2021

---

# get store description

 *  Resolved [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/get-store-description/)
 * Hi!
    I need to get the store description_data, located in vendor page (<div class
   =”description_data”>) to display the store description on google (with a function).
   I cannot find by myself the wcmp “description_data” $ hook.
 * Thank’s in advance.

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/get-store-description/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/get-store-description/page/2/?output_format=md)

 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/get-store-description/#post-14064141)
 * If you have a function is better, mine doesn’t work at all.
 *  [abhirup23](https://wordpress.org/support/users/abhirup23/)
 * (@abhirup23)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/get-store-description/#post-14116810)
 * Hi,
    There is no such function to get vendor description. using below code you
   can get the vendor description
 *     ```
       $vendor_id = 2;
       $vendor =get_wcmp_vendor($vendor_id);
       if($vendor)
       echo $vendor->description;
       ```
   
 * You can use this as per your requirement.
    -  This reply was modified 5 years, 2 months ago by [abhirup23](https://wordpress.org/support/users/abhirup23/).
 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/get-store-description/#post-14118501)
 * Thank you, it works.
    Can you tell me how to get all vendors id and not only 
   for vendor id 2? ref. $vendor_id = 2;
 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/get-store-description/#post-14159732)
 * I wanna say how to include all vendors instead only one, > $vendor_id = 2;
 *  [abhirup23](https://wordpress.org/support/users/abhirup23/)
 * (@abhirup23)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/get-store-description/#post-14190001)
 * Hi,
    Can you please tell me where do you want to add the data with a screenshot.
 * You can get the all vendors using below function.
    `get_wcmp_vendors()`
 * Let me know if you need any help.
 * Regards,
 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/get-store-description/#post-14194835)
 * Hi,
    here > [https://pasteboard.co/JT1eqLW.png](https://pasteboard.co/JT1eqLW.png)
 * Thank you.
 *  [abhirup23](https://wordpress.org/support/users/abhirup23/)
 * (@abhirup23)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/get-store-description/#post-14206974)
 * Hi,
    Thanks for the image. But it would have been much helpful, if you can share
   the screenshot of the page where you want to display that.
 * Thank you.
 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/get-store-description/#post-14207626)
 * This is an example, > [https://bit.ly/3s30fMp](https://bit.ly/3s30fMp)
    I need
   to do that for every vendors, after the <title></title>. Many thank’s
 *  Plugin Author [MultiVendorX](https://wordpress.org/support/users/wcmp/)
 * (@wcmp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/get-store-description/#post-14216809)
 * [@marty2010](https://wordpress.org/support/users/marty2010/), we are getting 
   this error “Error 1020”.
 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/get-store-description/#post-14218103)
 * Sorry, I have disabled GeoIp firewall just now, can you try again please?
 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/get-store-description/#post-14232408)
 * Hi, Were you able to log in?
 *  Plugin Author [MultiVendorX](https://wordpress.org/support/users/wcmp/)
 * (@wcmp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/get-store-description/#post-14233403)
 * Hi [@marty2010](https://wordpress.org/support/users/marty2010/), thanks for the
   link.
 * But this is your vendor shop page. May I know where do you want to show the field
   in this page?
 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/get-store-description/#post-14233770)
 * Hi,
    I don’t want to show that field in the page, how to display the store description_data(
   <div class=”description_data”>) automatically inside the <meta description=””
   > for every vendor. The vendor meta description is for SEO, now is empty.
 *  Plugin Author [MultiVendorX](https://wordpress.org/support/users/wcmp/)
 * (@wcmp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/get-store-description/#post-14238774)
 * Hi [@marty2010](https://wordpress.org/support/users/marty2010/), thanks for the
   clarification.
 * We Presume you want to fetch the vendor’s description for SEO purpose. In that
   case, you can get that vendor_id from their shop page and from this id, you can
   get the description.
 *  Thread Starter [martyn](https://wordpress.org/support/users/marty2010/)
 * (@marty2010)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/get-store-description/#post-14238804)
 * hi,
    thank you, of course, I was just looking for a function that includes all
   vendors together, without getting the single vendor id.

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/get-store-description/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/get-store-description/page/2/?output_format=md)

The topic ‘get store description’ is closed to new replies.

 * ![](https://ps.w.org/dc-woocommerce-multi-vendor/assets/icon-256x256.gif?rev=
   3314608)
 * [MultiVendorX - WooCommerce Multivendor Marketplace AI Powered Solutions](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/)
 * [Active Topics](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/reviews/)

## Tags

 * [description](https://wordpress.org/support/topic-tag/description/)
 * [function](https://wordpress.org/support/topic-tag/function/)

 * 19 replies
 * 4 participants
 * Last reply from: [martyn](https://wordpress.org/support/users/marty2010/)
 * Last activity: [5 years, 1 month ago](https://wordpress.org/support/topic/get-store-description/page/2/#post-14251326)
 * Status: resolved