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

      vuejs color filter with checkbox
      • Keerthi

      1
      0
      Votes
      1
      Posts
      655
      Views

      No one has replied

    • V

      How to create costume theme in bagisto 0.1.7
      • vivekr

      2
      0
      Votes
      2
      Posts
      209
      Views

      R

      Hi @vivekr

      Can you attach a screenshot of error, so that we can solve it ASAP.

      Thanks

    • L

      Problem routes theme
      • lozanich

      4
      0
      Votes
      4
      Posts
      347
      Views

      R

      Hi @lozanich

      Just you do in laravel Application, you need to follow same procedure but create it using package.

      Please go through with this link, which tells how to create package in bagisto - https://bagisto.com/en/step-by-step-guide-for-bagisto-module-development/

      https://devdocs.bagisto.com/create_package.html

      Thanks

    • P

      Loading custom.css depending on the active theme
      • phillip

      4
      0
      Votes
      4
      Posts
      554
      Views

      N

      Hello @phillip ,
      Yes this is intended behaviour and because of you override the shop.css with your custom css file , that's why the parent css is not applying to shop .
      thank you

    • S

      Deploying changes to server
      • sanjana singh

      2
      0
      Votes
      2
      Posts
      326
      Views

      R

      Hi,

      In public directory of your application, there is a folder called installer, kindly delete that folder.

      Thanks

    • S

      DateTime field on Checkout
      • sanjana singh

      2
      0
      Votes
      2
      Posts
      269
      Views

      R

      Hello,

      Create a table called as order_date_time table which consist date, time, cart_id, order_id fields.
      Override checkout view and fetch data from APi to show fields for it.
      Create a function in in your controller to save it.
      You need to do all of these things in your package, creating route , controllers and views.

      Thanks

    • V

      Flash cannot trigger after AJAX response
      • valpuia

      4
      0
      Votes
      4
      Posts
      820
      Views

      R

      Hi @valpuia

      Try with this one -

      window.flashMessages = [{ 'type': 'alert-success', 'message': 'Updated' }]; this.$root.addFlashMessages()

      Thanks

    • L

      Trigger TinyMCE on modal open
      • lwilliams-heli

      2
      0
      Votes
      2
      Posts
      343
      Views

      R

      Hi @lwilliams-heli

      You can make a component for body of modal. So, when this component called, initialise tinyMCE in its created or mounted method.

      Like , You can see, we have a model, which have component -

      <modal id="downloadDataGrid" :is-open="modalIds.downloadDataGrid"> <h3 slot="header">{{ __('admin::app.export.download') }}</h3> <div slot="body"> <export-form></export-form> </div> </modal>

      When this <export-form></export-form> component gets called, we initialise TinyMCE.

      <script> Vue.component('export-form', { template: '#export-form-template', mounted() { tinymce.init({ selector: 'textarea#description', height: 200, width: "100%", plugins: 'image imagetools media wordcount save fullscreen code', toolbar1: 'formatselect | bold italic strikethrough forecolor backcolor | link | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat | code', image_advtab: true }); }, methods: { onSubmit: function(e) { e.target.submit(); this.$root.$set(this.$root.modalIds, 'downloadDataGrid', false); } } }); </script>

      Thanks

    • G

      Remove field in customer page
      • gablur

      3
      0
      Votes
      3
      Posts
      447
      Views

      G

      Sorry for late reply.

      Which view pages and core models should I override?

      And since I don't want to innovate or changing anything except those fields, that means I should reuse the original code and remove the elements I don't need, right?

      Sorry for asking, I'm just new to web development and don't understand things well

    • W

      Bagisto Android App
      • wearecoders

      4
      0
      Votes
      4
      Posts
      747
      Views

      R

      Hi @wearecoders

      Please follow below article to get token and use this token - https://forums.bagisto.com/topic/149/i-need-to-deliver-the-api-token-from-the-json-response-not-the-header/4

      Thanks

    • M

      Number of new & featured products in bagisto
      • mtande

      2
      0
      Votes
      2
      Posts
      694
      Views

      P

      Hi mtande,

      You need to override the (Webkul\Product\Repositories\ProductRepository) in your package and pass an parameters to getNewProducts and getFeaturedProducts methods in your package repository.

      And, to get dynamic parameters, you need to create configuration in admin panel for 'Number of products you want to display at shop from configuration to get no of product you want to display at shop.

      Also, you need to override the featured-products and new-products blade file in (Shop/resources/view/home) and perform an check as below code

      @php $count = 4; $config = core()->getConfigData('acme.configuration.general.featured_product'); if ($config > 4) $count = $config; $featuredProducts = app('Webkul\Acme\Repositories\Product\ProductRepository')->getFeaturedProducts($count); $featuredProductsCount = $featuredProducts->count(); @endphp

      Thanks

    • S

      check pin code availability
      • smartjeet

      2
      0
      Votes
      2
      Posts
      388
      Views

      J

      Hi @smartjeet
      Please go through this doc- https://devdocs.bagisto.com/
      You can also request for customisation on https://webkul.com/laravel/

      Thanks

    • T

      Creating Shipping method
      • thantheleon

      2
      0
      Votes
      2
      Posts
      248
      Views

      N

      Hello @thantheleon ,
      Can you Please explain your issue in more details(screenshots), and exactly when and what issue you are facing while you are creating your custom shipping method.

      Thank you .

    • K

      In home page there is image slider i want make it auto slide the image and dot buttons and vue Js changes are not detecting by browser
      • kiranbabu

      2
      0
      Votes
      2
      Posts
      338
      Views

      P

      Hello Kiranbabu,

      You need to first override view file .

      You may refer to this forum link of how to Add Carousel component VueJS into Bagisto

      Thanks

    • R

      How to set incremental number instead of table's primary id in DataGrid?
      • RK REZA

      4
      0
      Votes
      4
      Posts
      311
      Views

      R

      Hello @RK-REZA

      Override index file of that view, create a separate data grid in your package, use incremental number in that data grid instead of table's primary id and call this data grid to your override view file.

      Thanks

    • R

      How to create menu for customers ?
      • rahul

      2
      1
      Votes
      2
      Posts
      1411
      Views

      D

      @rahul let me know where located register method on custom theme?

    • J

      how to make clean url for multi language bagisto
      • jkdobariya

      1
      0
      Votes
      1
      Posts
      230
      Views

      No one has replied

    • L

      Promotion & Discount Coupon
      • lwilliams-heli

      8
      0
      Votes
      8
      Posts
      995
      Views

      V

      Hi @ariachris56

      Promotion & Discount Coupon Rule has been released, You can get this feature in our latest version 1.0.0

      Here is the fully described user guide for promotions:

      https://bagisto.com/en/how-to-setup-promotions/
      https://bagisto.com/en/how-to-set-catalog-rules-in-bagisto/
      https://bagisto.com/en/how-to-generate-automatic-coupon-code-in-bagisto/

    • K

      Thanks @RK-REZA , @ghermans. I try override 'key' in config/menu of my package but it's not working.
      • khanhlp

      2
      0
      Votes
      2
      Posts
      153
      Views

      P

      @khanhlp

      You may refer below link for solution...

      https://forums.bagisto.com/topic/1235/how-to-override-or-remove-the-items-in-menu-for-admin-interface

    • K

      How to override or remove the items in menu for admin interface
      • khanhlp

      9
      0
      Votes
      9
      Posts
      1789
      Views

      K

      @prateek-webkul Great! Thank you very much