Can I add vendors category to Home page

Can I add vendors category to Home page in Meetinghive, instead of Listing category?

Hi,

Unfortunately, there is no such block yet, but we plan to add it. If you are familiar with coding or have a developer, we can provide general guidance on how to add this block.

:sob: I don’t have sound knowledge of coding. if any other method to do that.? I purchased theme, but that option will be main think in my website. ( I know its not your fault, I should be check clearly before buy)

or Can we add Separate link to each block here? when visitors click this and redirect to Vendors category?

Hi,

Yes, unfortunately, there is no category vendor block yet, if you need it urgently and you are sure that the categories will not be changed, try adding an HTML block by editing the page in WP Dashboard > Pages and add this code there:

<div class="hp-listing-categories hp-grid hp-block">
   <div class="hp-row">
      <div class="hp-grid__item hp-col-sm-3 hp-col-xs-12">
         <article class="hp-listing-category hp-listing-category--view-block" style="background-color:#FFE1E9">
            <header class="hp-listing-category__header">
               <div class="hp-listing-category__icon" data-component="inherit-color" data-source=".hp-listing-category" data-property="color" data-light="-50" style="color: rgb(225, 0, 60);">
                  <a href="https://meetinghive.hivepress.io/listing-category/coaching/">
                  <i class="hp-icon fas fa-rocket"></i>
                  </a>
               </div>
            </header>
            <div class="hp-listing-category__content">
               <h4 class="hp-listing-category__name"><a href="https://meetinghive.hivepress.io/listing-category/coaching/">Coaching</a></h4>
               <div class="hp-listing-category__description">Aliquam tristique et suscipit rutrum eros sed augue.</div>
               <div class="hp-listing-category__details hp-listing-category__details--primary">
                  <a href="https://meetinghive.hivepress.io/listing-category/coaching/" class="hp-listing-category__link"><i class="hp-icon fas fa-arrow-right"></i></a>
               </div>
            </div>
         </article>
      </div>
   </div>
</div>

Please note that this is a block for one category, where you need to change the link and title to match your category. If you have three categories, for example, you can add three such blocks.

​I hope this is helpful to you.