Navigation

    Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Megalight
    3. Topics
    M
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by Megalight

    • M

      Create Product throe error
      Bug Report • • Megalight  

      2
      0
      Votes
      2
      Posts
      5
      Views

      V

      @Megalight refer to this https://forums.bagisto.com/topic/2272/product-creating-error/9
    • M

      Product issue
      Bug Report • • Megalight  

      2
      0
      Votes
      2
      Posts
      8
      Views

      V

      @Megalight refer to https://forums.bagisto.com/topic/2272/product-creating-error/9
    • M

      Error After package add to gabisto
      Bug Report • • Megalight  

      2
      0
      Votes
      2
      Posts
      23
      Views

      V

      @Megalight communicate on only a single query https://forums.bagisto.com/topic/2272/product-creating-error/9
    • M

      Product creating error
      Bug Report • • Megalight  

      9
      0
      Votes
      9
      Posts
      25
      Views

      V

      @Megalight We could not provide the solution until we check the backend code to debug the error bcz their seems to be lot of customization added in your code. so kindly provide your server details along with website URL here https://bagisto.uvdesk.com/en/customer/create-ticket/
    • M

      Get grouped attributes
      Knowledge Base • • Megalight  

      2
      0
      Votes
      2
      Posts
      10
      Views

      D

      Hi @Megalight, Currently, there is no such API. You need to create your own.
    • M

      Get configurable products
      Knowledge Base • • Megalight  

      4
      0
      Votes
      4
      Posts
      14
      Views

      M

      Can you provide steps??
    • M

      Get products issue
      Bug Report • • Megalight  

      2
      0
      Votes
      2
      Posts
      6
      Views

      Hi @Megalight we are aware of this problem, and a issue report has already been created on Github https://github.com/bagisto/bagisto/issues/4645
    • M

      Upload products
      Modules • • Megalight  

      3
      0
      Votes
      3
      Posts
      23
      Views

      M

      When I am importing the products they have been created in the products table and the product_flat table, but all data is updated after some time and in admin, they are updated not completely but part by part. Why I have this issue?
    • M

      Bulk uploading issue
      Bug Report • • Megalight  

      2
      0
      Votes
      2
      Posts
      14
      Views

      P

      Hello @Megalight , multilingual products upload feature via bulk upload extension is not yet implemented. But, this point is in our wishlist. We will implement the functionality in future. And, you may also do PR for the functionality.. Please check for status and images column in csv file.. Thanks
    • M

      Add new category throw error
      Bug Report • • Megalight  

      3
      0
      Votes
      3
      Posts
      28
      Views

      K

      change all collation of table and its fields of categories , category_filterable_attributes and category_translations to utf8_general_ci because all the collation of the three tables are not the same that is why you get that error
    • M

      How remove themes from Bagisto
      Knowledge Base • • Megalight  

      4
      0
      Votes
      4
      Posts
      36
      Views

      Hi @Megalight as @devansh-webkul already mentioned it is possible to remove the themes if you have knowledge about Laravel packages and service providers. If you need any help from the Bagisto team, we can provide you advanced support service, for this you can you create a ticket on https://bagisto.uvdesk.com/en/customer/create-ticket
    • M

      Edit customer account
      Knowledge Base • • Megalight  

      4
      0
      Votes
      4
      Posts
      32
      Views

      D

      Hi @Megalight, Just go to this path packages/Webkul/Shop/src/Config/menu.php and comment your downloadable product array. And run php artisan config:cache. Important Note This will just hide the downloadables. To completely remove you need to remove all the traces like packages/Webkul/Velocity/src/Resources/views/shop/customers/account/downloadable_products, routes files and many more.
    • M

      Product update issue
      Knowledge Base • • Megalight  

      10
      0
      Votes
      10
      Posts
      119
      Views

      V

      @Megalight multiselect value are not supported to import currently, you may raise the feature for this here https://github.com/bagisto/bagisto-bulk-upload/issues, so team will add this feature as per your requirement. Thanks
    • M

      How to get products all custom attributes with values for API call??
      Knowledge Base • • Megalight  

      2
      0
      Votes
      2
      Posts
      139
      Views

      V

      Hi @Megalight You can use product view helper to get custom attributes of product $customAttributeValues = $productViewHelper->getAdditionalData($product) Thanks
    • M

      How can I use bagisot admin with apis only, without themes
      Knowledge Base • • Megalight  

      7
      0
      Votes
      7
      Posts
      275
      Views

      V

      Hi Megalight If you don't want to show your theme on browser just delete or comment all code inside master.blade.php you will find this file " $root_folder/resources/themes/velocity/views/layouts/master.blade.php " on this path but make sure you have original copy of this file. So by doing this api will work normally but instead of showing theme layout it will show blank page when you hit url. You can also use java script code inside master.blade.php (after deleting or commenting default code) to redirect it to admin login if you wish. Thanks!