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

      Route works only with get
      • LilD

      2
      0
      Votes
      2
      Posts
      330
      Views

      devansh-webkul

      I am not getting this, you have registered your routes as GET so you are getting data only in GET.

      What are you concerned about?

    • A

      drop shipping
      • abdullah

      2
      0
      Votes
      2
      Posts
      311
      Views

      P

      Hello @abdullah ,

      Can you please elaborate more, what do you mean by all stores.
      Currently, we have only dropshipping available from Aliexpress.

      Thanks

    • L

      Save last steps onepage checkout
      • LilD

      2
      0
      Votes
      2
      Posts
      355
      Views

      devansh-webkul

      HI @LilD,

      This is a natural behavior of Bagisto, you need to handle this at your end.

    • K

      Admin panel doesn't work after restarting server
      • KiwiNFLFan

      6
      0
      Votes
      6
      Posts
      1899
      Views

      V

      @KiwiNFLFan
      Kindly rate us to improve more with your feedback here https://www.trustpilot.com/review/bagisto.com

    • K

      Vue.js devtools
      • karkiswapnil

      9
      0
      Votes
      9
      Posts
      3846
      Views

      D

      It's really easy, you can assign to Vue object in a parent temple column, and then you have it all.
      It is not necessary to enable developer mode (npm run dev)
      For example in views/layouts/scripts.blade.php

      <script type="text/javascript"> let debug = "{{env('APP_DEBUG')}}"; if (debug) { window.Vue.config.devtools = true;}
    • L

      Search by image
      • LilD

      3
      0
      Votes
      3
      Posts
      516
      Views

      N

      @devansh-webkul said in Search by image:

      Hi @LilD happy wheels ,

      The mentioned keywords are analyzed by the google TensorFlow js and I guess the js file is not trained for other languages. You can check for the google tensorflow to add particalur trained cdn in your code.

      got it. Thanks for the good advice! I appreciate it.

    • S

      How to change email template logo
      • sanjana singh

      3
      0
      Votes
      3
      Posts
      1259
      Views

      S

      thank you

    • H

      How to get cms page content in home page??
      • Harsha

      5
      0
      Votes
      5
      Posts
      1635
      Views

      V

      @Harsha
      You first need to add your CMS page inside admin-> cms page as shown here https://prnt.sc/12mq15x , after that go to your theme section and add the cms url key as shown here https://prnt.sc/12mq3p1

    • W

      Bundle product - How to change the quantity of Options
      • wallace

      3
      0
      Votes
      3
      Posts
      1146
      Views

      W

      @bhanu-webkul ok thank you

    • L

      Keep me logged
      • LilD

      2
      0
      Votes
      2
      Posts
      439
      Views

      devansh-webkul

      Hi @LilD,

      Default session lifetime is 120 minutes, just go to .env file and increase the value of SESSION_LIFETIME to whatever you want.

      And then after changes don't forget to run,
      php artisan optimize

      💯

    • S

      How to use Local and Currency switcher API ?
      • simo.kassab

      4
      0
      Votes
      4
      Posts
      543
      Views

      devansh-webkul

      Hi @simo-kassab,

      Everything is already set up. You just need to put your routes in the api.php and use it in a controller.

    • L

      The minicart does not display correctly
      • LilD

      2
      0
      Votes
      2
      Posts
      384
      Views

      devansh-webkul

      Hi @LilD,

      No, we only have one mini cart component. You need to customize this at your end.

    • L

      Show products default in list mode on mobile version
      • LilD

      2
      0
      Votes
      2
      Posts
      354
      Views

      devansh-webkul

      Hi @LilD,

      Check this config,
      https://prnt.sc/130t8r4

    • R

      Cart redirect
      • rustam

      3
      0
      Votes
      3
      Posts
      466
      Views

      R

      Hi @Vaishali-Agarwal
      As you know in Velocity theme on header if client has no chosed product cart url is disabled, I want to active it with no products choosed and when client click to cart url will be redirect to /checkout/cart url

    • L

      Add products in cart with numeric value
      • LilD

      2
      0
      Votes
      2
      Posts
      298
      Views

      L

      data: function() { return { qty: this.quantity } }, watch: { quantity: function (val) { this.qty = val; this.$emit('onQtyUpdated', this.qty) console.log(this.qty) } }, methods: { decreaseQty: function() { if (this.qty > this.minQuantity) this.qty = parseInt(this.qty) - 1; this.$emit('onQtyUpdated', this.qty) console.log(this.qty) }, increaseQty: function() { this.qty = parseInt(this.qty) + 1; this.$emit('onQtyUpdated', this.qty) console.log(this.qty) } }

      For example, how could I make these values receive the data I type from the keyboard?

      <script type="text/x-template" id="quantity-changer-template"> <div :class="`quantity control-group ${errors.has(controlName) ? 'has-error' : ''}`"> <label class="required">{{ __('shop::app.products.quantity') }}</label> <button type="button" class="decrease" @click="decreaseQty()">-</button> <input :value="qty" class="control" :name="controlName" :v-validate="validations" data-vv-as="&quot;{{ __('shop::app.products.quantity') }}&quot;" /> <button type="button" class="increase" @click="increaseQty()">+</button> <span class="control-error" v-if="errors.has(controlName)">@{{ errors.first(controlName) }}</span> </div> </script>

      Without :value=qty can send data from keyboard but increase and decrease.. will not work

    • R

      auto update Sub Total and Grand Total once increase or decrease quantity in checkout/cart page?
      • rustam

      4
      0
      Votes
      4
      Posts
      1336
      Views

      devansh-webkul

      Hi @rustam,

      I hope you are familiar with Vue JS, I can only guide you regarding this. If you check the cart page there is a cart-component that is submitting the form when you click on the update cart button that means the page will be refreshed.

      You need to send the form via ajax on the change method.

    • L

      How can update existing project to bagisto 1.3 from 1.2
      • LilD

      4
      0
      Votes
      4
      Posts
      595
      Views

      devansh-webkul

      Hi @LilD,

      I just shared a step thre, have a look.

    • S

      Php 7.1.17 required!
      • sahebmhm

      6
      0
      Votes
      6
      Posts
      1200
      Views

      C

      Many thanks

    • J

      Group pricing policy not showing for a configurable product.
      • JacekT

      4
      0
      Votes
      4
      Posts
      1082
      Views

      J

      Not sure if anyone seen the screens shared. But there seems to be a issue in displaying group pricing when a configurable product is posted.

      Can someone guide us.

    • D

      Increase google lighthouse score
      • Dakil

      2
      0
      Votes
      2
      Posts
      419
      Views

      devansh-webkul

      Hi @Dakil,

      Already have done all these things. There are more things to do,

      For e.g. when you are opening the page the first thing that is blocking is the category. You need to fetch those by ajax.

      Next thing if you check the normal pages, they are loaded with lots of categories and products which are loading fully at a time. Partial loading should be there.

      There are more things which can be done.