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

      Not Secure in Google Chrome
      • esolz

      2
      0
      Votes
      2
      Posts
      179
      Views

      devansh-webkul

      Please check your SSL.

    • T

      Saving Category issue
      • toinkydoo

      4
      0
      Votes
      4
      Posts
      189
      Views

      devansh-webkul

      Hi @toinkydoo,

      Thanks for the update.

      Also, if you like our support, you may give us the review here:- https://www.trustpilot.com/review/bagisto.com

      That would be grateful for us.

      Thanks & Regards,

      Bagisto Team

    • H

      Bagisto page load Time (TTFB)
      • Hadara Dev

      4
      0
      Votes
      4
      Posts
      294
      Views

      devansh-webkul

      In the demo, it's version 1.3.3 and we have enhanced most of the things.

      It all depends on the user data, let say if you have loads of categories which is loaded in the DOM then probably it will take more time.

      Try to use an intersection observer and load necessary data in the first run and then remaining data on the intersection.

      There are many more ways also like lazy loading for the images.

    • T

      drop down menu for header content
      • toinkydoo

      4
      0
      Votes
      4
      Posts
      323
      Views

      devansh-webkul

      The thing is Menu 1 and Menu 2 are the hot categories.

      For this, you need to do some customizing, here you can customize this,
      https://github.com/bagisto/bagisto/blob/master/packages/Webkul/Velocity/src/Resources/assets/js/UI/components/header-right-side.vue

    • R

      How to manage products subscriptions
      • rrahmouni

      4
      0
      Votes
      4
      Posts
      328
      Views

      Y

      I took this extension from Bagisto
      balisto-media manager

    • R

      Custom Payment Method not displaying
      • realkzeal

      2
      0
      Votes
      2
      Posts
      206
      Views

      devansh-webkul

      @realkzeal,

      Please run php artisan optimize:clear and then check.

    • Y

      Bagisto Media Manager
      • yura20066

      2
      0
      Votes
      2
      Posts
      154
      Views

      devansh-webkul

      Please follow single thread.

    • A

      In Mobile product showing only on click
      • amitkr059

      4
      0
      Votes
      4
      Posts
      354
      Views

      devansh-webkul

      Hi @amitkr059,

      You can do it from here,
      https://github.com/bagisto/bagisto/blob/94ea9f8aebb81cb6c31b2df110a8942b801b25e0/packages/Webkul/Velocity/src/Resources/assets/js/app-core.js#L72

    • H

      This topic is deleted!
      • harshaq

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • H

      Search bar inside add products categories selection section
      • harshaq

      8
      0
      Votes
      8
      Posts
      408
      Views

      devansh-webkul

      You can create your own controller which returns JSON data.

    • H

      Can we limit the new tag for newly added products to latest 10 product ?
      • harshaq

      8
      0
      Votes
      8
      Posts
      1335
      Views

      devansh-webkul

      @harshaq,

      No, only the first 10 products will come.

    • H

      On click Buy Now it should redirect to checkout page
      • harshaq

      6
      0
      Votes
      6
      Posts
      279
      Views

      devansh-webkul

      Yes because the marketplace and marketplace bulk are compatible with the specific version.

    • H

      I need admin panel only. How to remove Front-end?
      • hedyd

      5
      0
      Votes
      5
      Posts
      312
      Views

      H

      Hm... Make sense. Thanks

    • W

      Fetch CMS Page content with API?
      • wyamout

      5
      0
      Votes
      5
      Posts
      357
      Views

      devansh-webkul

      Kindly admin API is in process.

    • H

      Add New module under CMS
      • hedyd

      2
      0
      Votes
      2
      Posts
      147
      Views

      devansh-webkul

      You can include the blade file in the CMS page content also.

    • J

      Support for sale feature
      • james_woody

      2
      0
      Votes
      2
      Posts
      3025
      Views

      devansh-webkul

      Hi there,

      You can simply add the special price from the admin panel.

    • A

      how to insert configurable products programmatically
      • AnthonySica

      6
      0
      Votes
      6
      Posts
      412
      Views

      devansh-webkul

      You can add one more key in the request i.e.,
      {"selected_configurable_option" : <default-id>}

    • H

      I have added new page under CMS. Is this the correct way?
      • hedyd

      4
      0
      Votes
      4
      Posts
      312
      Views

      devansh-webkul

      In that case, if future updates come then compatibility should also be handled to avoid breakage.

    • J

      Problem with adding filter to category
      • james_woody

      2
      0
      Votes
      2
      Posts
      3074
      Views

      devansh-webkul

      Where are you filtering can you share some codes?

    • K

      I am having difficulties removing or customizing some fields in the checkout form
      • Kamdjou

      5
      0
      Votes
      5
      Posts
      1095
      Views

      K

      Woow!
      This was a real tuff one.
      I have to do some trick to obtain what I wanted.
      So, I first have to disable the vue vaildation of the none desired field from the onepage.blade.php then I remove the validation attribute from the html in the customer-new-form.blade.php after that, I hidde all those fields using a simple hidden html attribute and I use a switch in my OnePageController.php to auto populate all those hidden fields passed behind the sense.
      Lastly, I have to deactivate the server side validation of those unwanted fields in
      CustomerAddressForm.php in the request of the Checkout package.

      This do the trick, I know it may not be the best approach but it serve my purpose for now 🙂

      I just wanted to share it in case someone may need the same senario.

      Thanks