Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. General Discussion
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • Most Views
    • O

      TypeError: environment is null script.js:68:13
      • olevacho

      3
      0
      Votes
      3
      Posts
      174
      Views

      O

      thanks.This helped

    • N

      Claryfing overriding from custom package as opposed to laravel default folders.
      • nessuno

      3
      0
      Votes
      3
      Posts
      322
      Views

      devansh-webkul

      Hi @nessuno,

      Please check here,
      https://forums.bagisto.com/topic/1971/override-index-blade-php-example/3.

      Please follow one thread for better communication.

    • C

      buy now api
      • cmpengineers

      10
      0
      Votes
      10
      Posts
      495
      Views

      V

      Hi @cmpengineers
      From buy now api you mean when customer click on buy now so product added into cart and customer directly redirect to checkout or view cart page, please correct me if i am wrong.

      So for this you have to do customisation in add to cart api.

      First of all you need to pass is_buy_now in parameter with value true. Now go to add to cart api controller here if condition is already there related to is_buy_now. Now you need to add some custom parameter in return response so that you could identify that customer is using buy now btn instead of add to cart. So at the last whenever you received your custom parameter in response so redirect the customer to the desired page.

      You can implement this in both ways by adding new controller or modify existing add to cart controller.

      Thanks

    • S

      How to overide the admin package controller
      • Sergej

      2
      0
      Votes
      2
      Posts
      158
      Views

      V

      @Sergej
      same as https://forums.bagisto.com/topic/1980/how-to-overide-the-admin-package-controller

    • Z

      This topic is deleted!
      • zainawan99

      1
      0
      Votes
      1
      Posts
      3
      Views

      No one has replied

    • S

      Cart Manage After Product Price And Qty Change
      • Shambhu Patel

      2
      0
      Votes
      2
      Posts
      240
      Views

      devansh-webkul

      Hi @Shambhu-Patel,

      I have checked this in master. Only the main cart is not updating. But when the user tries to checkout automatically these things get handle. So, if the admin changes the price. It gets handle at the checkout.

      But I will discuss it with the team and should also able to update the cart.

    • S

      This is Bug I guess, Sub Product in Home page added, and clicking on ViewAll goes to wrong url
      • SourabhAkash

      6
      0
      Votes
      6
      Posts
      538
      Views

      S

      @Vaishali-Agarwal Thanks a lot for quick fix, I will update the code. Appreciate Bagisto Team for quick response and help.

    • D

      Custom theme assets not working
      • dev.rohit

      2
      0
      Votes
      2
      Posts
      390
      Views

      V

      @dev-rohit
      please check this link if you're implementing custom theme
      https://bagisto.com/en/create-custom-theme-in-bagisto/
      https://forums.bagisto.com/topic/57/how-can-i-change-theme-and-write-own-html-for-front-end-section-not-the-admin-panel/13

    • J

      How to update mini cart?
      • jc

      2
      0
      Votes
      2
      Posts
      228
      Views

      V

      @jc
      you have to run the below command inside velocity package

      npm i npm run prod

      After performing above step you have to publish all assets and file by running the " php artisan vendor:publish " command and press 0.

    • G

      how to change product-card__badge
      • gayanpriyankara

      14
      0
      Votes
      14
      Posts
      902
      Views

      G

      @rahul
      ok lets say ,
      we are giving a discount (20%) to a certain Category so when we search for a product in the web the sticker should be 20% like "new" so the customer will know that this product has 20 discount if he buy it
      if we can get the cart-rule name or the percentage of the discount to the sticker that will be great

      thanks in advance

    • C

      admin dashboard
      • cmpengineers

      4
      0
      Votes
      4
      Posts
      240
      Views

      devansh-webkul

      Hi @cmpengineers,

      Please check your menu.php file where you have assigned the name and routes. It looks like you have assigned the same route to both of the menus.

      One thing more please run php artisan config:cache after changing the menu.

    • C

      When we pay online, in which table we update the payment status? And do we also add txn id in any table?.
      • csmehra

      5
      0
      Votes
      5
      Posts
      402
      Views

      C

      @Vaishali-Agarwal Thank you so much team bagisto

    • A

      Disable shipping on checkout
      • amanpaix

      5
      0
      Votes
      5
      Posts
      591
      Views

      ghermans

      Maybe this package can help you out https://github.com/ghermans/bagisto-pickup

    • T

      step 8 config
      • tk

      12
      0
      Votes
      12
      Posts
      573
      Views

      V

      Hi @tk
      please follow the same ticket link for better communication regarding the setup issue.

      If you have any other query please post a new request.

      Thanks

    • A

      Forum search - can't click on items
      • Airheadbit

      2
      0
      Votes
      2
      Posts
      139
      Views

      V

      @Airheadbit
      you need to enter on the search bar to check all the resultant value.

    • S

      Controller and route for product view blade
      • Shirah

      2
      0
      Votes
      2
      Posts
      376
      Views

      R

      Hello

      Route file and controller link is mentioned below.

      https://github.com/bagisto/bagisto/blob/master/packages/Webkul/Shop/src/Http/Controllers/ProductsCategoriesProxyController.php#L63

      https://github.com/bagisto/bagisto/blob/master/packages/Webkul/Shop/src/Http/routes.php#L308

      Thanks
      Rahul Shukla

    • P

      Custom pages not working
      • PyramidHead

      2
      0
      Votes
      2
      Posts
      231
      Views

      R

      Hello @PyramidHead

      According to your web.php file, your views should be residing in the given path - resources\views\themes\default\views\products-listing

      Make sure, your view exist there and then after run following command -

      php artisan route:cache

      and check again.

      Thanks
      Rahul Shukla

    • G

      Handling exceptions
      • Gniewoj

      2
      0
      Votes
      2
      Posts
      165
      Views

      R

      Hello,

      We have created a separate file for exception handling.

      https://github.com/bagisto/bagisto/blob/master/packages/Webkul/Core/src/Exceptions/Handler.php

      and this is bind -

      https://github.com/bagisto/bagisto/blob/master/packages/Webkul/Core/src/Providers/CoreServiceProvider.php#L52

      you need to remove given line code and it will work according to you.

      Note -> We don't advice you to change in core packages, it will create a problem on a new version.

      Thanks
      Rahul Shukla

    • C

      Product filter Not working properly
      • csmehra

      4
      0
      Votes
      4
      Posts
      360
      Views

      V

      @csmehra
      In the latest version of bagisto, it doesn't exist.
      you may also check the demo site https://demo.bagisto.com/

    • H

      How to use phone number for registration
      • harismansoor

      2
      0
      Votes
      2
      Posts
      324
      Views

      V

      @harismansoor
      refer to this link if you want to customize it https://github.com/bagisto/bagisto/issues/2822

      As per your requirement, module is already developed, you can purchase this from here https://bagisto.com/en/extensions/laravel-ecommerce-login-by-mobile-number/