Bagisto Forum

    Bagisto

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

      channel based curruncy in channel order not show
      • saqib

      2
      0
      Votes
      2
      Posts
      52
      Views

      Rishabh-Webkul

      Hello @saqib

      Regarding this query kindly raise your query at Bagisto UV Desk. Kindly find the link below.

      UV Desk: https://bagisto.uvdesk.com/en/

      Thanks & Regards

    • S

      How to enable booking product type?
      • softfork 0

      4
      0
      Votes
      4
      Posts
      159
      Views

      Rishabh-Webkul

      Hello @softfork-0

      The project root directory means /your_path/bagisto folder and if you want to place some particular extension then the path is till packages/Webkul folder and if you want to add this booking product extension you need place it inside the "packages/Webkul" as mentioned in the image below.

      booking.png

      kindly follow the official devdocs of bagisto this will help you to resolve your query.

      https://devdocs.bagisto.com/2.2/packages/create-package.html#introduction

      Thanks & Regards

    • S

      on add to cart open side bar on product detail page
      • saqib

      2
      0
      Votes
      2
      Posts
      80
      Views

      Rishabh-Webkul

      Hello @saqib

      For this query kindly raise a ticket on Bagisto UV Desk check out the link below.

      Link: https://bagisto.uvdesk.com/en/

      Thanks & Regards

    • F

      How to add PhonePe PG in Bagisto
      • foxnut

      2
      0
      Votes
      2
      Posts
      101
      Views

      Rishabh-Webkul

      Hello @foxnut

      To create the complete payment gateway, you can go through our official devdocs with a step-by-step tutorial.

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

      Thanks & Regards

    • M

      How to correctly format a variable.
      • miguel.barbosa

      2
      0
      Votes
      2
      Posts
      98
      Views

      ghermans

      You can use the following method

      core()->formatPrice($item->price_incl_tax, $shipment->order->order_currency_code)
    • R

      Request to Add Custom Attributes (Color, Size, etc.) to Product Details Page
      • ramswami0121

      2
      0
      Votes
      2
      Posts
      173
      Views

      Rishabh-Webkul

      Hello @ramswami0121

      For this kindly create a configurable product. Check the user documentation below for reference.

      User Doc.: https://docs.bagisto.com/2.2.0/products/configurable.html

      Thanks & Regards

    • O

      Cannot add new field to the addresses
      • otheriz

      5
      0
      Votes
      5
      Posts
      636
      Views

      E

      @napsterrahul said in Cannot add new field to the addresses:

      model

      There's no model though regarding addresses, am I wrong? The version I'm using is 2.2.3

    • R

      Enable COD for Downloadable Products
      • ramswami420

      2
      0
      Votes
      2
      Posts
      118
      Views

      Rishabh-Webkul

      Hello @ramswami420

      Downloadable products refer to items that can be downloaded, such as eBooks, software applications, music, updates, games, etc. These products are digital and do not involve a shipping method at checkout after making a payment the products can be downloaded from the link or a file so there is no reason to enable COD for that.

      Thanks & Regards

    • R

      How to initialize DataGrid with constructor parameter
      • ryanddao99

      2
      0
      Votes
      2
      Posts
      160
      Views

      Rishabh-Webkul

      Hello @ryanddao99

      Whatever you want to pass inside the constructor you can get the data from request

      use something like this

      public function __construct() { if (request('customer_id')) { $this->customer = $this->customerRepository->find(request('customer_id')); } else { $this->customer = $this->customerRepository->getDefaultcustomer(); } }

      Thanks & Regards

    • N

      Components Library in Bagisto
      • Nicola_cascella

      2
      0
      Votes
      2
      Posts
      195
      Views

      Rishabh-Webkul

      Hello @Nicola_cascella

      First, add the entry for the new library in the package.json. Then, create a plugin for that library inside the JS file in the assets folder and load it in app.js. After everything is done, easily use it in the blade.

      Thanks & Best Regards

    • P

      Bagisto 2.2 with Google Recaptcha
      • paddyhak

      14
      0
      Votes
      14
      Posts
      535
      Views

      E

      @Rishabh-Webkul the version I am corrently using is the 2.2.3 😊

    • B

      New Payment Method (Mpesa) Not Loaded & Old PayPal Still Showing in Admin Dashboard
      • brunoadul

      2
      0
      Votes
      2
      Posts
      137
      Views

      Rishabh-Webkul

      Hello @brunoadul

      If Paypal is still exists you can simply disable the status from the configurations.

      Additionally there is official DevDocs of how o create a Payment methods you can take a reference from here.

      https://devdocs.bagisto.com/2.2/advanced/create-payment-method.html#introduction

      Regards
      Team Bagisto

    • M

      Configurable Product
      • moreiraz

      2
      0
      Votes
      2
      Posts
      95
      Views

      Rishabh-Webkul

      Hello @moreiraz

      Hello,

      Currently, this functionality is not available by default. By default, a dropdown is shown on the product detail page where you can select the color as per your choice under a single parent product.

      Kindly refer to the image in the link below for clarification:

      Link:
      https://docs.bagisto.com/2.3.0/products/configurable.html

      If you would like to implement your specific functionality, it would fall under customization and will be treated as a paid service.

      You can raise your customization request through the following link:

      Link:

      https://webkul.uvdesk.com/en/

      Regards
      Team Bagisto

    • M

      [Bagisto v2.2.0] Redirection to the current page after login
      • mt-yw

      2
      0
      Votes
      2
      Posts
      104
      Views

      S

      Hi,

      Thank you for connecting with us.

      You can simply use the following in place of returning the view:

      return redirect()->back();

      This will redirect the user to the previous (or current) page.

      Best regards,
      Webkul Bagisto Team