Bagisto Forum

    Bagisto

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

      issues with images and add to cart
      General Discussion • • samparker

      4
      0
      Votes
      4
      Posts
      600
      Views

      S

      @01aviral-webkul Thanks alot, these points helped to fix the issue.

    • G

      Marketplace - French postcode not recognized as valid
      Bug Report • • Gwenaelle

      2
      0
      Votes
      2
      Posts
      44
      Views

      admin

      Hello Gwenaelle,
      Greetings!

      Thank you for reaching out and for sharing your findings.

      We were able to identify this issue, and it has already been fixed in the latest version of the Marketplace package (v2.4.6).

      If you continue to experience any problems after changes in database, please let us know. We'll be happy to assist you further.

      Regards,
      Kartikey Dubey
      Team Bagisto

    • G

      Seller register form "CSRF Token Mismatch"
      Bug Report • • Gwenaelle

      2
      0
      Votes
      2
      Posts
      94
      Views

      admin

      Hello Gwenaelle,

      Greetings!

      Thank you for reaching out and for sharing your findings.

      The @csrf token is already included in our shop form component located at:

      packages/Webkul/Shop/src/Resources/views/components/form/index.blade.php

      Therefore, there is no need to add @csrf manually on pages that use the <x-shop::form> component.

      Could you please clear your browser cache and try again? If you still encounter the same 419 (CSRF Token Mismatch) error, kindly let us know. We'll investigate it further.

      Thank you as well for your suggestion regarding the seller approval documentation. We appreciate your feedback and will consider improving the documentation to make this process easier to find.

      Regards,
      Kartikey Dubey
      Team Bagisto

    • N

      Product Reviews API filters are not working
      Bug Report • • negarahmady

      2
      0
      Votes
      2
      Posts
      317
      Views

      Y

      Hello,

      Thanks for flagging this. You're right — the rating, status, and sort filters on GET /api/shop/products/{productId}/reviews were not being applied. This has been fixed in the latest release (v2.0.0) — the filters now work as documented.

      Please update to the latest version of the package, and the filtered requests will return correctly. Let us know if you still see any discrepancy after upgrading.

      Best regards,
      Bagisto Support

    • G

      We want to add UTM to track sales
      General Discussion • • gauravjain1

      2
      0
      Votes
      2
      Posts
      313
      Views

      admin

      Hello Gaurav,
      Greetings!

      Thank you for reaching out.

      Yes, UTM parameters can be implemented in Bagisto to track affiliate clicks and conversions. Since UTM parameters (such as utm_source, utm_medium, utm_campaign, etc.) are used for tracking marketing sources, they can be captured when a customer lands on the website and associated with their complete purchasing journey.

      Proposed Implementation Flow

      1. Capture UTM Parameters

      Create a middleware or use an event listener to capture UTM parameters from incoming URLs.

      For example:

      https://yourstore.com/product/abc?utm_source=affiliate1&utm_medium=partner&utm_campaign=sale

      The captured UTM values can then be stored in the customer session or browser cookies.

      2. Maintain Tracking Throughout the Customer Journey

      Ensure that the stored UTM data remains available while the customer:

      Browses products Adds items to the cart Proceeds to checkout

      This ensures the original affiliate or campaign information is retained until the order is placed.

      3. Save UTM Details with Orders

      Add custom fields to the orders table and store the captured UTM information during the order placement process.

      This will allow you to identify which affiliate, campaign, or marketing source generated the successful sale.

      4. Generate Affiliate Conversion Reports

      Once UTM data is stored with orders, custom reports can be created to analyze:

      Affiliate performance Campaign effectiveness Conversion and sales data

      Please note that Bagisto v2.3.6 does not provide built-in support for affiliate UTM tracking. Therefore, this functionality will require a custom implementation based on your affiliate tracking and reporting requirements.

      Thank You
      Kartikey Dubey
      Team Bagisto

    • N

      install package bagisto/bagisto-api
      Installing Bagisto • • negarahmady

      2
      0
      Votes
      2
      Posts
      584
      Views

      Y

      @negarahmady
      Hi, thanks for reporting this. The install failure was caused by a dependency version mismatch in the API Platform packages we rely on. We've fixed it and published a new release (v1.0.5) that pins those dependencies to a compatible set.

      Please pull the latest version and run the installer:

      composer require bagisto/bagisto-api php artisan bagisto-api-platform:install

      If you have a partially-installed/old copy, run composer update bagisto/bagisto-api first, then php artisan bagisto-api-platform:install.
      Let us know if you encounter any further issues.