Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Recent
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • C

      Cutomer List View (override)
      General Discussion • customers override • • Chelsea

      1
      0
      Votes
      1
      Posts
      3
      Views

      No one has replied

    • S

      Forbidden error when saving the taxes configuration in admin.
      Bug Report • • sud123

      6
      0
      Votes
      6
      Posts
      1146
      Views

      W

      @Rishabh-Webkul is this issue solved coz I'm getting this error on multiple places like in admin>configuration>products,
      admin>configuration>payments-methods
      this error occurring while saving the configurations,

      and in the the console the there is this error, c6b1cf2d-83ee-43d2-b4a2-ec7eba07c8b6-image.png

      and the debugger is not showing on this page, i have also tried checking the storage>log>larval file aswell but its not giving any error aswell plz help me.

      note: this error is only occurring on live server, i'm able to perform all these safely without error on local host

    • I

      Installing In Hostiger
      Installing Bagisto • • ian94

      1
      0
      Votes
      1
      Posts
      50
      Views

      No one has replied

    • S

      Customer notes
      General Discussion • • sungur

      1
      0
      Votes
      1
      Posts
      117
      Views

      No one has replied

    • C

      Datagrid reload via ajax
      General Discussion • datagrid datagridajax datagridreload • • Chelsea

      1
      0
      Votes
      1
      Posts
      11
      Views

      No one has replied

    • S

      Help a Friend Out: Migrating from Zid to Bagisto with 16,000 Products
      Bug Report • • sul

      4
      0
      Votes
      4
      Posts
      458
      Views

      admin

      @Sul Okay, so this is where you are looking to move your 16,000 products, right? https://azmalenjaz.com/store/public/

      May I where do you have the current data of products, in excel file or somewhere else?

    • R

      Razorpay gateway module
      Knowledge Base • • ritwikdalmia

      1
      0
      Votes
      1
      Posts
      152
      Views

      No one has replied

    • V

      How to add variant with new attribute for exsiting product
      General Discussion • • Varun00001

      3
      0
      Votes
      3
      Posts
      691
      Views

      S

      @Rishabh-Webkul Hello, Exactly, I did this "create configurable product from configurations" and it's doesn't appaire in when I click the Add Variant Screenshot 2025-10-21 at 13.46.58.png ... As you can see that just two options still there

    • J

      Category Tree
      Bug Report • • jrevell1976

      1
      0
      Votes
      1
      Posts
      164
      Views

      No one has replied

    • V

      Visitors count not showing on admin side in graph
      Bug Report • • vikrantrana

      1
      0
      Votes
      1
      Posts
      334
      Views

      No one has replied

    • V

      Visitors are not storing in database
      General Discussion • • vikrantrana

      1
      0
      Votes
      1
      Posts
      213
      Views

      No one has replied

    • D

      Custom Tax
      General Discussion • • devcloud

      5
      0
      Votes
      5
      Posts
      990
      Views

      B

      @devcloud said in Custom Tax:

      Hello friends, I want to add taxes to my product using fax. For example, I want to add a government-set 10% tax and an additional 1% service fee based on the product price. I have added the taxes through the panel, but I cannot select multiple products. I am open to ideas and suggestions.

      You can create a combined tax rule instead of adding each tax separately. Set up both the 10% government tax and 1% service fee under your tax rates, then link them together in one tax rule. This way, it applies automatically to all selected products without manually updating each one.

    • danieldino

      Problem with tax
      Bug Report • • danieldino

      19
      0
      Votes
      19
      Posts
      2803
      Views

      B

      @danieldino said in Problem with tax:

      I have a shop, with 3 languages,
      I have 3 tax rates
      Poland 23%, Hungary 27%, Germany 19%
      if I switch to the website, it calculates the tax incorrectly or it does not actually calculate the tax,
      please help

      Its like your shop’s tax configuration isn’t matching the language or region settings. Make sure each country’s tax rule is linked to the correct store view or customer location. Also check that “tax based on customer shipping/billing address” is enabled in your store settings to calculate correctly per region.

    • C

      How to delete or changing text 'as low as' is in a product price?
      General Discussion • price bagisto development • • chndrgd

      4
      0
      Votes
      4
      Posts
      1508
      Views

      J

      @rahul said in How to delete or changing text 'as low as' is in a product price?:

      Hi @chndrgd

      You can override that view which contains ' as low as' & can remove it or directly change its translation but i will be core changes so override that view & change it accordingly.

      You can go through with this link for overriding view - https://forums.bagisto.com/topic/221/how-to-override-view-file-in-bagisto

      Thanks

      Thanks for sharing!

    • R

      Bagisto Marketplace: “The requested quantity is not available” on add-to-cart (seller flow) despite seller stock visible on channel
      Installing Bagisto • • Radoje

      2
      0
      Votes
      2
      Posts
      418
      Views

      R

      @Radoje [UPDATE – Oct 8, 2025]

      • Environment: PHP 8.2.29 • Laravel 11.44.2 • Marketplace 2.3.0_1 • Bagisto app on Laravel 11 • DB: MariaDB 10.6.23
      • Channel (default/Balkan) is mapped to sources 1,2,5; seller-scoped stock in the active channel sums to 7
      • Seller payload includes: product_id, quantity, seller_id, marketplace_seller_id, seller_product_id, inventory_source_id, vendor_id
      • Route runs under ['web','channel','theme','locale','currency'] and passes a Product OBJECT
      • Still getting “requested quantity is not available” from Marketplace/src/Cart.php:108; the cart remains empty in all variants we tried
      Versions

      PHP: 8.2.29 (Cloudways)

      Laravel: 11.44.2

      Bagisto app: on Laravel 11

      Marketplace module: 2.3.0_1

      DB: MariaDB 10.6.23

      SQL confirmations

      -- Seller stock visible in the active channel (returns 7) SELECT SUM(pi.qty) AS salable_qty_seller FROM product_inventories pi JOIN channel_inventory_sources cis ON cis.inventory_source_id = pi.inventory_source_id WHERE pi.product_id = 54 AND pi.vendor_id = 2 AND cis.channel_id = 1; -- Raw inventory row SELECT * FROM product_inventories WHERE product_id=54 AND vendor_id=2; /* -> (id=45, qty=7, product_id=54, vendor_id=2, inventory_source_id=5) */ -- Marketplace product row (approved/owner) SELECT * FROM marketplace_products WHERE product_id=54; /* -> (id=34, product_id=54, marketplace_seller_id=2, is_approved=1, is_owner=1) */ Route context // app/Providers/MpRouteServiceProvider.php Route::middleware(['web','channel','theme','locale','currency']) ->group(base_path('routes/mp.php')); Seller proxy (POST) — full seller payload // routes/mp.php (excerpt) Route::post('/mp-add-to-cart', function (Request $r, ProductRepository $products) { $p = $products->findOrFail((int) $r->input('product_id')); // Product OBJECT $data = $r->validate([ 'product_id'=>'required|integer','quantity'=>'nullable|integer|min:1', 'seller_id'=>'nullable|integer','seller_product_id'=>'nullable|integer', 'marketplace_seller_id'=>'nullable|integer','inventory_source_id'=>'nullable|integer', 'vendor_id'=>'nullable|integer', ]); $payload = ['quantity'=>(int)($data['quantity']??1)]; foreach (['seller_id','seller_product_id','marketplace_seller_id','inventory_source_id','vendor_id'] as $k) { if (!empty($data[$k])) $payload[$k]=(int)$data[$k]; } \Log::error('MP ADD payload', $payload); \Webkul\Checkout\Facades\Cart::addProduct($p, $payload); // Marketplace Cart return redirect('/checkout/cart'); }); Logged payload (from laravel.log) MP ADD payload {"quantity":1,"seller_id":2,"seller_product_id":34,"marketplace_seller_id":2,"inventory_source_id":5,"vendor_id":2} Behavior Calling the handler above raises: The requested quantity is not available, please try again later. (packages/Webkul/Marketplace/src/Cart.php:108) The cart stays empty (cart_items has no rows) in all variants we tried. Question (recap) What exact parameter/flag does this Marketplace build need at addProduct($product, $data) so that the Cart picks the seller stock (vendor_id=2 on inventory_source_id=5) in the active channel, instead of returning 0? We already submit: seller_product_id, marketplace_seller_id, vendor_id, inventory_source_id; the route runs under web, channel, theme, locale, currency. SQL confirms the seller’s stock in the channel is 7.
    • G

      Need help regarding content update and cache
      General Discussion • • gauravjain1

      3
      0
      Votes
      3
      Posts
      565
      Views

      B

      @Rishabh-Webkul said in Need help regarding content update and cache:

      RESPONSE_CACHE_ENABLED=false

      If I may ask, what is response_cache_enabled for?

    • S

      Buggy product page
      Bug Report • bug product admin • • Somidz

      1
      0
      Votes
      1
      Posts
      185
      Views

      No one has replied

    • M

      In version 2.3.6 paging is not working for HTTPS .
      Bug Report • • mishant

      1
      0
      Votes
      1
      Posts
      189
      Views

      No one has replied

    • T

      How do i integrate paystack payment gateway into bagisto
      Modules • • THINKLIFE

      7
      0
      Votes
      7
      Posts
      3335
      Views

      W

      @THINKLIFE for paystack you can download extension from here https://github.com/wontonee/paystack-bagisto

      it only support nigeria, kenya and african region.

    • M

      Payment Method: Paystack payment
      Knowledge Base • • miketayo

      5
      0
      Votes
      5
      Posts
      1283
      Views

      W

      @miketayo for paystack you can download extension from here https://github.com/wontonee/paystack-bagisto

      it only support nigeria, kenya and african region.