Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Modules
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • Most Views
    • D

      how can you create a plugin?
      • disvroian

      2
      0
      Votes
      2
      Posts
      1369
      Views

      admin

      Hello,

      We are working on dev-docs of Bagisto for creating packages and plugins. I request you to please follow our Facebook(https://www.facebook.com/BagistoShop/) and Twitter page(https://twitter.com/BagistoShop) for more update on dev-docs and our forum(https://forums.bagisto.com/) for raising any issue.

    • A

      Customize Best Practice
      • aulia

      3
      0
      Votes
      3
      Posts
      1168
      Views

      A

      thanks a lot!

    • A

      Return Merchandise Authorization
      • aulia

      4
      0
      Votes
      4
      Posts
      763
      Views

      admin

      We will for sure update this. Please follow our Facebook Community and Social channel to receive the latest updates on bagisto.

    • J

      How to implement custom shipping method?
      • jun.ng

      4
      0
      Votes
      4
      Posts
      1928
      Views

      admin

      Yes, we have released that, you can find it here, just a few testings are going on: https://bagisto.com/en/extensions/laravel-ecommerce-marketplace-table-rate-shipping/

      The User Guide and Purchase link will be added soon here.

      We have also released per product shipping extension too: https://bagisto.com/en/extensions/laravel-ecommerce-marketplace-per-product-shipping/

    • R

      Store data through Repository - Not working
      • RK REZA

      10
      0
      Votes
      10
      Posts
      2389
      Views

      R

      Capture4.PNG

    • R

      Solved !!! [Store data through Repository - Not working]
      • RK REZA

      2
      0
      Votes
      2
      Posts
      570
      Views

      admin

      Welcome @rkreza

    • J

      Create custom shipment
      • jonathantyar

      3
      0
      Votes
      3
      Posts
      957
      Views

      J

      thank you :), now i can see it on admin panel.

    • J

      Error when creating packages
      • jonathantyar

      5
      0
      Votes
      5
      Posts
      1027
      Views

      R

      You miss \src after
      "diLangit\Shipping\": "packages\diLangit\Shipping"

      in composer.json

    • R

      Can you please add State of Bangladesh in your next update?
      • RK REZA

      4
      0
      Votes
      4
      Posts
      1802
      Views

      R

      yes. you can.

    • R

      Invoke html and extent model/controller
      • RK REZA

      4
      1
      Votes
      4
      Posts
      851
      Views

      R

      According to your need, you can extend it.

    • R

      Override Core Module - Error
      • RK REZA

      17
      0
      Votes
      17
      Posts
      2713
      Views

      R

      Hi,

      You can override our views & can provide them path of your controller (route & controller of your package).
      To override views - Inside laravel's default views folder, (ressorces->vendor), create your views followed by same directory structure as our view consist.

      Thanks

    • N

      How can I change the price format?
      • Norbert

      7
      0
      Votes
      7
      Posts
      1613
      Views

      P

      Norbert, clear the cookies and then check....

    • R

      Shop layout not extending from custom theme!
      • RK REZA

      8
      0
      Votes
      8
      Posts
      1549
      Views

      M

      Thanks Rahul

    • R

      How to add pagination?
      • RK REZA

      3
      0
      Votes
      3
      Posts
      1390
      Views

      R

      Got it thanks

    • C

      DB query auto add company_id in where clause
      • chsuthar

      2
      0
      Votes
      2
      Posts
      584
      Views

      R

      Hi @chsuthar

      Please create ticket for same with your order id.

      Thanks

    • R

      How to extend Tinymce's features?
      • RK REZA

      2
      0
      Votes
      2
      Posts
      551
      Views

      R

      Hi,

      You can do it for tinymce.

      Please see this screenshot for - https://prnt.sc/oofe96
      2. Add plugins 'lists' in existing plugins of tinymce.

      like - plugins: 'image imagetools media wordcount save fullscreen code lists',

      Thanks

    • R

      Note in Customer!
      • RK REZA

      2
      0
      Votes
      2
      Posts
      550
      Views

      R

      Hi @RK-REZA

      Right Now, it is not showing any where, we just add this feature that admin can add note for customer, will use in future.

      Thanks

    • L

      Custom Payment Method field validation in Admin
      • LemmeV

      2
      0
      Votes
      2
      Posts
      701
      Views

      P

      Hello LemmeV,

      within system.php file of your package, you may add type depand so that the field will become dependent on another field. To do so, you have to provide field name and it's option value in depend key, you may have look on below code it will be easier to understand

      [
      'key' => 'demo.settings.product_price',
      'name' => 'demo::app.admin.system.product-price',
      'sort' => 3,
      'fields' => [
      [
      'name' => 'price',
      'title' => 'demo::app.admin.system.price',
      'type' => 'select',
      'options' => [
      [
      'title' => 'demo::app.admin.system.demo',
      'value' => 1
      ], [
      'title' => 'demo::app.admin.system.custom-price',
      'value' => 2,
      ]
      ]
      ], [
      'name' => 'custom_price',
      'title' => 'dropship::app.admin.system.custom-price',
      'info' => 'dropship::app.admin.system.custom-price-info',
      'type' => 'depands',
      'depand' => 'price:2',
      'validation' => 'required',
      'channel_based' => true,
      'locale_based' => true
      ]

      Thanks

    • S

      I got error in category module
      • Shilpa

      4
      0
      Votes
      4
      Posts
      807
      Views

      S

      Thanks, Rahul

      I just install astrotomic/laravel-translatable this and remove dimsav/laravel-translatable so it's working fine now.

    • S

      How to add tips section in checkout process?
      • Shambhu

      2
      0
      Votes
      2
      Posts
      772
      Views

      R

      Hi @Shambhu

      If you want to show just only information, then you can override checkout process's view where you want to show tips ( recommend - review.blade.php) & modify it to show your tips.

      You can go through with this link for overriding view - https://forums.bagisto.com/topic/221/how-to-override-view-file-in-bagisto

      Thanks