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

      Velocity theme - Slider not responsive with custom image
      • wallace

      3
      0
      Votes
      3
      Posts
      254
      Views

      W

      Version 1.3.1

    • L

      Background white on mobile versions
      • LilD

      2
      0
      Votes
      2
      Posts
      106
      Views

      V

      Hi @LilD
      could you please show what changes you have done to change colors from web to mobile view.

    • L

      New routes for customer doesn`t works
      • LilD

      2
      0
      Votes
      2
      Posts
      139
      Views

      devansh-webkul

      Hi @LilD,

      Run php artisan config:cache or php artisan optimize.

    • D

      Can't change the name
      • dipcb05

      2
      0
      Votes
      2
      Posts
      224
      Views

      V

      @dipcb05
      Kindly attach the screenshot of the error, Moreover, you may also get help with the ```
      bagisto dev documention to understand the structure or flow of Bagisto.

    • G

      Live Search (give out suggestions for products)
      • gayanpriyankara

      9
      0
      Votes
      9
      Posts
      439
      Views

      V

      @gayanpriyankara
      You may get the update with support team at support@bagisto.com

    • L

      Route works only with get
      • LilD

      2
      0
      Votes
      2
      Posts
      112
      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
      127
      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
      140
      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
      1208
      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
      2547
      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
      204
      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
      922
      Views

      S

      thank you

    • H

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

      5
      0
      Votes
      5
      Posts
      1104
      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
      804
      Views

      W

      @bhanu-webkul ok thank you

    • L

      Keep me logged
      • LilD

      2
      0
      Votes
      2
      Posts
      221
      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
      199
      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
      161
      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
      122
      Views

      devansh-webkul

      Hi @LilD,

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

    • R

      Cart redirect
      • rustam

      3
      0
      Votes
      3
      Posts
      146
      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
      118
      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