Navigation

    Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Groups
    1. Home
    2. Knowledge Base
    Log in to post

    Knowledge Base

    • E

      Create order in Admin
      • elfeffe  

      2
      0
      Votes
      2
      Posts
      167
      Views

      This feature does not currently exist
    • K

      In which file going to be save the summary of the ordered products?
      • Keerthi  

      6
      0
      Votes
      6
      Posts
      243
      Views

      K

      Hi Rahul, Actually I have added 'image' column in orders table from there I can easily retrieve the image but Image is not storing after place the order. Where as I have added 'image' column in order_items table from this I can easily store the image into order_items but I don't know how to retrieve the image from order_items table, please suggest me on this problem. Thank you
    • A

      editing shop filters
      • alfalah-company  

      6
      0
      Votes
      6
      Posts
      348
      Views

      R

      HI @alfalah-company After taking pull from master branch, you have to run 'php artisan migrate' command then a new table will be created name as 'category_filterable_attributes' and it will store filterable attribute of category. Thanks
    • N

      Admin download invoices
      • Norbert  

      2
      1
      Votes
      2
      Posts
      153
      Views

      R

      Hi @Norbert Admin can not download all invoice together. Thanks
    • L

      Cart rule for all products
      • lwilliams-heli  

      3
      1
      Votes
      3
      Posts
      141
      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
      1664
      Views

      K

      Hi Rahul, Thank you......!
    • K

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

      3
      0
      Votes
      3
      Posts
      174
      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
      402
      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
      180
      Views

      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
      523
      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
      187
      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
      310
      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
      775
      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
      948
      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
      839
      Views

      K

      Hi, order_items table orders table
    • L

      How to override product model?
      • lwilliams-heli  

      6
      1
      Votes
      6
      Posts
      636
      Views

      T

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

      BuyAGetB promotion
      • lwilliams-heli  

      3
      1
      Votes
      3
      Posts
      162
      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
      139
      Views

      R

      Hi @lwilliams-heli Probably in end of next month. Thanks
    • R

      How to override view file in bagisto?
      • rahul  

      4
      2
      Votes
      4
      Posts
      2203
      Views

      A

      Oka.. Thanks @
    • S

      Adding Product
      • simplygenius  

      2
      0
      Votes
      2
      Posts
      265
      Views

      R

      Hi @simplygenius Can you attach a screenshot of your error & send dump file of your database. Thanks