Bagisto Forum

    Bagisto

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

      Best way to modify RegistrationController
      • manatech

      4
      0
      Votes
      4
      Posts
      535
      Views

      S

      Hi, @manatech

      You don't need to change the route, make same registration form as like present in customer followed by same folder structure.

      And in the boot methods write the override code and publish the vendor.

      $this->publishes([ __DIR__ . '/../Resources/views/shop/customers/account/index' => resource_path('views/vendor/shop/customers/account/index'), ]);

      and publish by

      php artisan vendor:publish.

      Thanks

    • K

      Changes on CSS
      • kevin

      2
      0
      Votes
      2
      Posts
      283
      Views

      shubhwebkul

      Hello there,
      If you have created a package then you could listen to event and add css or if want to add css in velocity packages itself then you could add your sass file path here and execute command npm run watch inside the velocity directory.

      Let me know if you have any further query.
      Thanks!

    • A

      Adding stock per attribute
      • awadhaj

      2
      0
      Votes
      2
      Posts
      221
      Views

      V

      Hi @awadhaj
      you can do this by adding custom attribute in configurable product.
      Create configurable product https://bagisto.com/en/how-to-create-configurable-product-in-bagisto/

      Thanks.

    • Y

      Remove Tax Category
      • yousuf

      5
      0
      Votes
      5
      Posts
      478
      Views

      V

      @yousuf @Umesh
      you can delete the tax_category attribute from the attribute list https://prnt.sc/sic99w

      or

      You can also create the new attribute family by deselecting the tax_category attribute and use this family while creating product.

      Hope the solution will work for you.
      Thanks.

    • O

      Tax on Cart
      • otheriz

      3
      0
      Votes
      3
      Posts
      294
      Views

      S

      Hello @otheriz ,

      In the bagisto there are the default functionality of tax which is explained by you if you want to do that which you asked in the forum for that you have to do modify the code .

      for more ref please see Tax packages.

      Thanks

    • U

      How to get vue js work on new custom theme
      • Uyo-obong

      2
      0
      Votes
      2
      Posts
      347
      Views

      V

      Hi @Uyo-obong
      have you tried by running npm run watch-poll in the newly theme directory?

      Thanks

    • A

      aside-nav not showing up
      • AkashWeybee

      2
      0
      Votes
      2
      Posts
      247
      Views

      V

      Hi @AkashWeybee
      follow this https://forums.bagisto.com/topic/1216/custom-menu/2

    • U

      How to maintain the default checkout process in custom theme
      • Uyo-obong

      2
      0
      Votes
      2
      Posts
      217
      Views

      shubhwebkul

      Hello there,

      That's great to hear about new theme, you can take help from our existing checkout page file

      If you have any query in this please let me know I will be very happy to resolve your issue.

      Thanks, Happy Coding 😉

    • O

      Export Sales Order Items
      • otheriz

      4
      0
      Votes
      4
      Posts
      327
      Views

      shubhwebkul

      Hello There,

      Thanks for reaching us.

      Basically when you export from here the actual order data grid is downloaded, if you want to add some more data, you need to manipulate this file.

      You can add check here and download a new datagrid file, where you can get data whatever you want

    • N

      How can implement new payment method.
      • np

      6
      0
      Votes
      6
      Posts
      2684
      Views

      V

      Hi @Rohit
      follow this link https://forums.bagisto.com/topic/205/is-it-possible-to-integrate-razorpay-payment-gateway-in-bagisto-e-commerce/23

    • D

      Laravel eCommerce Store Pickup
      • Daisymond

      2
      0
      Votes
      2
      Posts
      243
      Views

      ghermans

      Hi make sure that the following has been set

      open config/app.php and add Digibytes\Pickup\Providers\PickupServiceProvider::class, open composer.json in your root directory of Bagisto and add below "psr-4" "Digibytes\\Pickup\\": "packages/Digibytes/Pickup/src", run composer dump-autoload
    • O

      This topic is deleted!
      • otheriz

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • R

      Paypal amount error on checkout
      • Rahulx20

      2
      0
      Votes
      2
      Posts
      258
      Views

      R

      works in incognito my be chache problem

    • K

      Product API in Query Parameters not getting precise result
      • kishanmodi

      3
      0
      Votes
      3
      Posts
      254
      Views

      K

      Hi @shivam-webkul Thanks for replayed me.
      I am sorry for late replayed by me, my health is not very well.
      I used Bagisto version of: v0.1.0

    • R

      No password in Customer Add page in Admin Panel
      • RK REZA

      3
      0
      Votes
      3
      Posts
      658
      Views

      A

      This implementation does not seem correct. It seems to rely on that the pwd will be communicated via email.

      Better way in my opinion should be to have a default password created and same to be know to the Admin who is creating a user. When a customer is logging first time, then he/she can be prompted to change the pwd.

    • R

      paypal standard asks for logging in before payment how do customer skip it and pay with card?
      • Rahulx20

      2
      0
      Votes
      2
      Posts
      207
      Views

      V

      @Rahulx20
      can you explain your query in more details.

    • R

      Cashfree payment custom integration help
      • Rahulx20

      2
      0
      Votes
      2
      Posts
      227
      Views

      V

      @Rahulx20
      can you please explain about "new" option or show some screenshot?

    • T

      Packege creating problem.
      • tluanga

      11
      0
      Votes
      11
      Posts
      543
      Views

      devansh-webkul

      Hi @tluanga,

      Your 'DeliveryServiceProvider' has been successfully registered. Just check with the routes on line number 22 and 23.

      public function boot() { $this->loadRoutesFrom(__DIR__ . '/../Http/routes.php'); $this->loadViewsFrom(__DIR__ . '/../Resources/views', 'delivery'); }

      OR

      public function boot() { include __DIR__ . '/../Http/routes.php'; $this->loadViewsFrom(__DIR__ . '/../Resources/views', 'delivery'); }

      After that hit 'localhost/Lushai/public/delivery' or just add 'dd('test')' on your 'routes.php' to check if your route file is hiting or not.

      If you see same 'test' message on the page again. Then, your route file also successfully registered. Just check with the route names or caches.

    • 3

      i want the shipment cost fixed not change when i change currency
      • 3hmed

      4
      0
      Votes
      4
      Posts
      235
      Views

      3

      @bhanu-webkul said in i want the shipment cost fixed not change when i change currency:

      convert

      i just need to take the default shipping without rate exchange

      ex: 2 $ also 2 for any other currency

    • M

      require '/vendor/autoload.php'; is returning
      • mikeyapina

      1
      0
      Votes
      1
      Posts
      333
      Views

      No one has replied