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

      How to change product from Simple to Configurable?
      • bzero

      3
      0
      Votes
      3
      Posts
      609
      Views

      B

      Got it.
      Thanks @Vaishali-Agarwal

    • B

      Subscription bar Content issue
      • bzero

      3
      0
      Votes
      3
      Posts
      278
      Views

      B

      Great. I got it works.
      Thanks @Vaishali-Agarwal

    • ?

      Create a new method payment with https://github.com/mobilpay/composer
      • A Former User

      2
      0
      Votes
      2
      Posts
      211
      Views

      V

      @DaniD
      Yes, you can implement your own custom payment with the help of Bagisto package generator which provides the ability to create your custom payment method.
      Follow this guide to implement payment method
      https://bagisto.com/en/how-to-create-custom-payment-method-in-bagisto/

    • ?

      Change height Slider from home page
      • A Former User

      2
      0
      Votes
      2
      Posts
      194
      Views

      V

      Hi @DaniD
      you can't resize the image directly from application, you just need to upload the allowed dimension for slider.
      Screenshot_299.png

    • ?

      Custom payment method problem
      • A Former User

      2
      0
      Votes
      2
      Posts
      298
      Views

      N

      @DaniD said in Custom payment method problem:

      class

      Hello,
      Please make sure you have defined the standard.php Class under the Webkul\Netopia\Payment\ Folder

    • T

      I am able to get controller method or route for category URL
      • techiAdarsh

      2
      0
      Votes
      2
      Posts
      323
      Views

      N

      Hello,
      you can check the following route at the following path:
      packages/Webkul/Shop/src/Http/routes.php

      "shop.productOrCategory.index"
      Thanks!

    • F

      Bagisto API login without token lifetime
      bagisto api bagisto api login • • fiqih.majaindo

      2
      0
      Votes
      2
      Posts
      441
      Views

      A

      You can extend token lifetime by updating this in {your-project}\config\jwt.php file
      assuming this is JWT_TTL=NULL in .env file.

      'ttl' => env('JWT_TTL', 60),

      update 60 to your limit

      I use this

      'ttl' => env('JWT_TTL', 20160),
    • R

      Out of stock on simple product
      • rustam

      3
      0
      Votes
      3
      Posts
      350
      Views

      R

      @Vaishali-Agarwal Thank you! It`s working fine

    • ?

      Payment gateaway free
      • A Former User

      4
      0
      Votes
      4
      Posts
      337
      Views

      ghermans

      Yes you can integrate your own payment methods, more documentation regarding this is available at https://devdocs.bagisto.com/1.x/advanced/create_payment_method.html

    • M

      does bagisto have Server side rendering
      • masoodahm

      2
      0
      Votes
      2
      Posts
      190
      Views

      V

      @masoodahm
      As per my knowledge, it does not support server-side rendering anymore,.

    • ?

      Problem with custom payment method
      • A Former User

      2
      0
      Votes
      2
      Posts
      254
      Views

      V

      Dear @DaniD
      Hope this guide will help you https://devdocs.bagisto.com/1.x/advanced/create_payment_method.html

    • S

      Override Bundle Product Price
      • SP

      2
      0
      Votes
      2
      Posts
      214
      Views

      V

      @SP
      In bundle product, the price will appear from low to high of its child product as you can see here https://prnt.sc/zzovc8
      Here is the doc which may help you to understand the bundle product
      https://bagisto.com/en/how-to-create-bundle-product-in-bagisto/

      If still you have any query, let me know ☺

    • B

      Bagisto behind reverse proxy with SSL termination
      • bzero

      5
      0
      Votes
      5
      Posts
      1021
      Views

      B

      No, i am still looking for help.
      I couldn't make it works properly.

    • ?

      Custom payment method failed
      • A Former User

      3
      0
      Votes
      3
      Posts
      312
      Views

      ?

      I do not receive a response when I call mobilpay ($ order)
      Maybe I shouldn't call where the order function is?
      Usually where would a payment function be called when the order is placed?

    • B

      Logo and image size in Velocity theme
      • bzero

      8
      0
      Votes
      8
      Posts
      1271
      Views

      B

      it shows on my IOS devices (6,7,8)
      And on chrome with custom screen (screenshot attach)

      https://ibb.co/bL2wRvR

      https://ibb.co/LSH0fMj

      Thank you.

    • R

      Shop by category
      • rustam

      4
      0
      Votes
      4
      Posts
      379
      Views

      G

      Thanks Sir.

    • F

      Admin slider edit page error
      • faigalizade

      2
      0
      Votes
      2
      Posts
      178
      Views

      V

      @faigalizade
      please follow this link https://github.com/bagisto/bagisto/issues/2578

    • T

      How can I set up setup 301 redirects in Bagisto?
      • TWilson

      2
      0
      Votes
      2
      Posts
      817
      Views

      V

      @TWilson
      read this guide https://developers.google.com/search/docs/advanced/crawling/301-redirects

    • ?

      Optimize category if I have more atributes
      • A Former User

      2
      0
      Votes
      2
      Posts
      186
      Views

      devansh-webkul

      Hi @DaniD,

      Which Bagisto version are you using?

    • ?

      Get cart items in controller like in Payment class abstract
      • A Former User

      2
      0
      Votes
      2
      Posts
      454
      Views

      devansh-webkul

      Hi @DaniD,

      We have created a Facade for the Cart class. So you can directly access this as well.

      ... use Cart; ... $cart = Cart::getCart(); ...