Navigation

    Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. LemmeV
    L
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    LemmeV

    @LemmeV

    4
    Reputation
    3
    Posts
    44
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    LemmeV Follow

    Posts made by LemmeV

    • Feature Request: custom order number

      Bagisto currently exposes actual orders table ID column to the client and there is no option to configure a custom order number for a specific store.

      This is a neccessary feature since many inventory/backend systems require order numbers in a certain format.

      I made a quick example and added a pull request in github:
      https://github.com/bagisto/bagisto/pull/1343

      This change lets the admin set a prefix, suffix and an order number length to calculate the order number from that and shows the order number to the client in self service order history and checkout success page instead of order ID.

      posted in Bug Report
      L
      LemmeV
    • Custom Payment Method field validation in Admin

      I implemented new payment methods through a custom package and added additional fields into Admin for this method through
      packages/Company/Package/Config/system.php

      Is it possible to use validation dependent of another field?
      For example my payment method has a field of "Merchant ID". This is a required field but only if the method is active. At the moment if i add the 'validation' => 'required' key/value pair to the field, then it is required even if the payment method itself is inactive
      86c7f4f2-3e32-46f3-9af8-056dc0adb105-image.png

      posted in Modules
      L
      LemmeV
    • SEO friendly urls

      I have a question about localisation in Bagisto.

      1. It seems that it is not possible to configure SEO-friendly frontend urls for different locales (https>www.example.com/en, https://www.example.com/es etc)
        So far i can see that in packages/Webkul/Shop/src/Http/routes.php you are using locale middleware, that checks locale parameter of the url and then serves the site in that language.
        This is is a bad practice according to Google (Source: https://support.google.com/webmasters/answer/182192?hl=en).

      Do You have plans to implement SEO friendly locale-specific urls?

      1. i saw on Github that the Laravel-Translatable vendor package that you are using for Model translations was deprecated in june. Do you have plans to switch it out?
      posted in Knowledge Base
      L
      LemmeV