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
    • E

      How can i apply the new qty to refund items of refund object?
      • enamulislamjisan

      1
      0
      Votes
      1
      Posts
      245
      Views

      No one has replied

    • M

      Login API not working properly in ios not sure why
      • Mahesh

      3
      0
      Votes
      3
      Posts
      769
      Views

      M

      @Mahesh said in Login API not working properly in ios not sure why:

      Login API not working properly in ios not sure why
      when i call login api it work first time but after i open again app session is Session persistence i think.
      it giving error.
      is anything special setting i have to do ? it is working perfectly with postman collection.

      The issue might be with how the session or token is being stored and used when the app is reopened. Since the login API works the first time and then fails, it's likely related to token handling or session persistence. Make sure the token is saved correctly after login and that it's being sent properly in the headers for each request. Also, check if the token expires quickly or if the backend requires a fresh login every time. Postman might be working because it handles headers or cookies differently than your app. It would help to know how you're storing the token on iOS, like with UserDefaults or Keychain.

    • E

      new generated payment method icon
      • elrefaie80

      4
      0
      Votes
      4
      Posts
      434
      Views

      T

      @ghermans thanks for your fast reply , i added this code and still no image for the payment method

    • A

      Order management options
      • Ananthu Ajayan 0

      2
      0
      Votes
      2
      Posts
      270
      Views

      ?

      Hello @Ananthu-Ajayan-0

      Could you please let us know which options you want to add and where exactly you want them to be added?

      Based on that, we’ll be able to guide you accordingly.

      Also, let us know your Bagisto Version.

      Warm Regards
      Team Bagisto

    • A

      order management issue
      • Ananthu Ajayan 0

      2
      0
      Votes
      2
      Posts
      398
      Views

      ?

      Hello @Ananthu-Ajayan-0

      Could you please let us know which options you want to add and where exactly you want them to be added?

      Based on that, we’ll be able to guide you accordingly.

      Also, let us know your Bagisto Version.

      Warm Regards
      Team Bagisto

      Warm Regards
      Team Bagisto

    • B

      Currency format
      • beabay

      2
      0
      Votes
      2
      Posts
      436
      Views

      ?

      Hello @beabay

      After checking this is working fine at our end

      and showing the output as shown in the below screenshots

      https://prnt.sc/NtBa5KUqSu8K

      https://prnt.sc/7t7Rwi4qoFhi

      https://prnt.sc/Lrwaphbm-GLX

      Please let us know if you have further queries

      Warm Regards

    • S

      How to Remove Shipping and Payment Steps from Checkout and Directly Enable “place the order” Button?
      • Snake

      1
      0
      Votes
      1
      Posts
      470
      Views

      No one has replied

    • T

      setBagistoVite() Error
      vite bagistovite • • Tim

      9
      0
      Votes
      9
      Posts
      2823
      Views

      diverti

      @hoybot i would not figure it out without your comment. Thank you!

    • K

      redirect issue after storeOrder
      • kenninh

      1
      0
      Votes
      1
      Posts
      293
      Views

      No one has replied

    • B

      Shipping method not appear in admin page
      • beabay

      3
      0
      Votes
      3
      Posts
      405
      Views

      B

      i already solve it!

      If you want the code to work, you have to add

      more square brackets covering the return value in Config/system.php
      before : return [ 'key'=>'blablabla' // other keys => values ]

      after

      return [ [ 'key'=>'blablabla' // other keys => values ] ] 'info' key in Config/system.php
      before : 'key' => 'sales.carriers.raja_ongkir', 'name' => 'admin::app.configuration.index.sales.shipping-methods.raja-ongkir-shipping.page-title', 'sort' => 2, 'fields' => [ // field keys => values ]

      after

      'key' => 'sales.carriers.raja_ongkir', 'name' => 'admin::app.configuration.index.sales.shipping-methods.raja-ongkir-shipping.page-title', 'info' => 'admin::app.configuration.index.sales.shipping-methods.raja-ongkir-shipping.title-info', 'sort' => 2, 'fields' => [

      and dont forget to add the service provider in providers.php and add the namespaces to composer.json (from documentation)

      "autoload": { ... "psr-4": { // Other PSR-4 namespaces "Webkul\\CustomShippingMethod\\": "packages/Webkul/CustomShippingMethod/src" } }
    • I

      Show price and tax including price for every variant of configurable product
      • ionutbalasanu

      4
      0
      Votes
      4
      Posts
      1011
      Views

      L

      @ionutbalasanu
      For products that can be customized, you'll need to go through each child variant, get its final price, and then apply the tax rate by hand instead of using getTaxInclusiveRate. This manner, you can figure out the right price for each variety that includes taxes and send them back as a list.

    • B

      Inventory indices not auto updated
      • beabay

      1
      0
      Votes
      1
      Posts
      372
      Views

      No one has replied

    • M

      Payment Gateway xendit
      • Miswanto

      6
      0
      Votes
      6
      Posts
      1213
      Views

      J

      @susan_emelia

      Nice! Good to hear you got Xendit working with Bagisto. Did you run into any issues with the callback handling, or was it straightforward once the package was in place?

    • B

      Message Error 'invoice creation is not allowed'
      • beabay

      1
      0
      Votes
      1
      Posts
      499
      Views

      No one has replied

    • K

      Import customers with address
      import customers • • kenninh

      4
      0
      Votes
      4
      Posts
      1021
      Views

      K

      I was able to bulk import customer data with multiple custom columns.

      Now I am looking into import the customer address using the MySQL table import. Has anyone done this and anything to watch out for?
      Thanks!

    • P

      Prices in storefront with taxes included
      • pask

      11
      0
      Votes
      11
      Posts
      2675
      Views

      J

      @Richard-Rachels said in Prices in storefront with taxes included:

      @pask
      The system sees €1,000 as net, so VAT is added on top. Switch to VAT-inclusive pricing so €819 + 22% = €1,000. Check figures with Vatcalc.onl.

      Got it, thanks for clarifying. Makes sense that the system treats €1,000 as net. I’ll try switching to VAT-inclusive pricing and run the numbers through Vatcalc.onl to confirm.

    • N

      Trying to import products.
      import • • Neilm

      2
      0
      Votes
      2
      Posts
      726
      Views

      R

      Hello @Neilm

      This issue is occurring because there is an issue in your CSV file..

      We have provided the Sample File for each you can download that and check the proper way to manage the CSV for Bulk Upload

      Warm Regards
      Team Bagisto

    • Y

      How to Integrate Paymob to the opensource-ecommerce-mobile-app
      • youssef

      2
      0
      Votes
      2
      Posts
      433
      Views

      R

      Hello @youssef

      Are you using any APIs from Paymob to integrate with Bagisto.

      Here Paymob provides the APIs

      https://developers.paymob.com/api-runner/paymob-solutions-s-a-e/egypt

      Bagisto Payment Package Creation

      https://devdocs.bagisto.com/2.3/advanced/create-payment-method.html

      You can use this

      Warm Regards

    • B

      npm run build always go to localhost
      • bindev

      4
      0
      Votes
      4
      Posts
      604
      Views

      R

      You're Welcome @bindev

      If you like our support can you provide us with 5 star review on trustpilot. This will help us a lot.

      Link: https://www.trustpilot.com/review/bagisto.com

      Regards

    • S

      how to override controller for theme
      • samparker

      5
      0
      Votes
      5
      Posts
      1327
      Views

      S

      @Macromolecule-0 hello, if i get it working, i will be publishing the solution here and you can do the same