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

      Cart rule for all products
      • lwilliams-heli

      3
      1
      Votes
      3
      Posts
      273
      Views

      L

      Thanks,

      Will this be released in 0.1.7?

      If so, what is the timeline for this release?

    • K

      How to add two more input fields to address page in bagisto ecommerce
      • Keerthi

      3
      0
      Votes
      3
      Posts
      1879
      Views

      K

      Hi Rahul,

      Thank you......!

    • K

      Where to remove validations of billing address in bagisto e-commerce
      • Keerthi

      3
      0
      Votes
      3
      Posts
      327
      Views

      K

      Hi Rahul,

      Thank you so much, now it is working fine to me........!

    • K

      How to store ordered image into database
      • Keerthi

      5
      0
      Votes
      5
      Posts
      737
      Views

      R

      Hi @Keerthi

      You also need to override cart functionality beacuse every order is placed on basis of cart data, so when you add item in cart you also need to store your base image path there. So create column in cart_item table to store image there. For it you have to create own your cart facades as we created in Checkout package.

      Now you need to override add cart fuctionality for which you need to create your own route & coontroller and when user clicks on Add to cart then this controller will be called and store image in cart_item table.

      After doing all of this you need to ovveride checkout's save order functionality for which you can do the above process and when this controller called you can see this

      $order = $this->orderRepository->create(Cart::prepareDataForOrder());

      in OnepageController.php's saveOder function.

      in this code, your Cart::prepareDataForOrder() function should be used which we override before.

      Thanks

    • K

      Where to find products page blade file
      • Kabiru

      2
      0
      Votes
      2
      Posts
      294
      Views

      ghermans

      Open packages/Webkul/Shop/src/Resources/lang/en/app.php and jump to line 328 there you can change the values

    • K

      How to remove shipping tab and functionality in Billing page of Bagisto E-Commerce
      • Keerthi

      8
      0
      Votes
      8
      Posts
      955
      Views

      P

      @samiraaa
      Yes, the feature will be available this month in our release. And, also we are going to add few more products type as Virtual, Downloadable, Grouped and Bundle.

      Thanks

    • K

      Filters in the category page
      • Keerthi

      2
      0
      Votes
      2
      Posts
      284
      Views

      B

      Hello,
      @Keerthi Very soon you will be able to do this.

      Cheers!!!:
      Bagito Team

    • L

      DataGrid action
      • lwilliams-heli

      2
      0
      Votes
      2
      Posts
      431
      Views

      B

      @lwilliams-heli

      Greetings!!!

      Currently, there ain't native way to do that but you can use blade render event to pass some javascript explicitly.
      With that javascript you need to inject your required things such as HTML also from script itself.

      Ways to pass JS:

      @push('scripts')
      //JS code
      @endpush

      Use listener to listen event "bagisto.admin.layout.body.after" for admin and "bagisto.shop.layout.body.after" for shop.
      Using these events you can pass any blade file with your script and html either or both.

      Regards,
      Prashant.

    • B

      Changing frontend color schemes according to your own requirements
      • bagisto-mogul

      2
      0
      Votes
      2
      Posts
      977
      Views

      M

      I have done all these steps, but nothing changed
      I attempted to change the colors of the storefront.

      please help?

    • K

      How to give page redirection to the current page after login
      • Keerthi

      9
      1
      Votes
      9
      Posts
      1476
      Views

      K

      Hi @rahul,

      can you please tell me page redirection to the current session page after login with google+ with the below code is working only for existing customers that means only registered customers and not working with pop up login (in this case also it is redirecting to the customers profile page after successfully logged in) Please suggest me on this issue.

      if (auth()->guard('customer')->check()) { return redirect()->route('customer.profile.index'); } else { $intendedUrl = url()->previous(); session()->put('url.intended', $intendedUrl); return view($this->_config['view']); }
    • K

      How to display all ordered products in order history page without condition?
      • Keerthi

      8
      0
      Votes
      8
      Posts
      1899
      Views

      K

      Hi,
      order_items table
      order_items.png
      orders table
      screencapture-localhost-phpmyadmin-sql-php-2019-09-18-15_52_39.png

    • L

      How to override product model?
      • lwilliams-heli

      6
      1
      Votes
      6
      Posts
      955
      Views

      T

      https://github.com/bagisto/bagisto/issues/1482

    • L

      BuyAGetB promotion
      • lwilliams-heli

      3
      1
      Votes
      3
      Posts
      308
      Views

      L

      Is there a reason it was removed?

      Ideally we'd still like to use this functionality, where you can buy a certain type of product and get another type of product free.

      Is is something I could hook back in myself, and how would I go about doing this?

    • L

      Multiple / Auto-generated coupons
      • lwilliams-heli

      4
      0
      Votes
      4
      Posts
      268
      Views

      R

      Hi @lwilliams-heli

      Probably in end of next month.

      Thanks

    • R

      How to override view file in bagisto?
      • rahul

      4
      3
      Votes
      4
      Posts
      3006
      Views

      A

      Oka.. Thanks @

    • S

      Adding Product
      • simplygenius

      2
      0
      Votes
      2
      Posts
      385
      Views

      R

      Hi @simplygenius

      Can you attach a screenshot of your error & send dump file of your database.

      Thanks

    • A

      Set currency Symbol
      • andrewc

      2
      0
      Votes
      2
      Posts
      277
      Views

      R

      Hi @andrewc

      Soon, we will give option to add symbol of currency while creating it to avoid such problem.

      Thanks

    • R

      How to change currency and locale for Admin ?
      • rahul

      1
      1
      Votes
      1
      Posts
      595
      Views

      No one has replied

    • L

      Override 'Core' model
      • lwilliams-heli

      2
      0
      Votes
      2
      Posts
      531
      Views

      R

      Hi @lwilliams-heli

      This is facades and this is not override this way.
      To override any facades, first of all you need to create own facades in your package extending with main facades (To whom you want to override).
      Now in your facades, you can create method & can write own logic.
      You need to add following line in your packages provider.

      $this->app->bind('core', 'Webkul\your\facades\path');

      Thanks

    • K

      How to add Google Analytics to Bagisto Ecommerce?
      • Keerthi

      1
      0
      Votes
      1
      Posts
      760
      Views

      No one has replied