• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Register
  • Login
Bagisto Forum

Bagisto

  • Register
  • Login
  • Search
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups

How to remove product types from product-types.php?

General Discussion
2
2
322
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B
    bagdev last edited by 18 Jun 2020, 14:06

    I don't want to offer all product types, how can I override product-types.php so that only my specified product types display on the Add Product page?

    1 Reply Last reply Reply Quote 0
    • S
      shivam-webkul last edited by 22 Jun 2020, 05:41

      Hello @bagdev ,

      Yes you only need to override the product create pages after that in that pages put the condition for not showing your product soo you need to put
      that conditioon

      @if ($key != 'simple')
             <option value="{{ $key }}" {{ request()->input('type') == 
              $productType['key'] ? 'selected' : '' }}>
                          {{ $productType['name'] }}
              </option
      @endif
      

      into the product create dropdown.

      thanks.

      1 Reply Last reply Reply Quote 0
      2 out of 2
      • First post
        2/2
        Last post