Navigation

    Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Groups
    1. Home
    2. Knowledge Base
    Log in to post

    Knowledge Base

    • B

      Language Translations
      • bagisto-mogul  

      3
      0
      Votes
      3
      Posts
      1808
      Views

      B

      You need to create the folder of same locale_code and file inside it with the same locale code. And enable that locale in channels as default locale or select multiple locales in the channels.
    • B

      How to create custom pages?
      • bagisto-mogul  

      1
      0
      Votes
      1
      Posts
      1682
      Views

      No one has replied

    • S

      Better understanding of channel
      • scalla  

      2
      0
      Votes
      2
      Posts
      1121
      Views

      Channels in Bagisto is regarding creating multiple storefront or websites in Bagisto. Here you can create multiple websites and manage them from single Admin Panel. Kindly refer to the following blog: https://bagisto.com/en/how-to-create-multiple-websites-in-bagisto/
    • V

      How can I implement a protected Store
      • vittorio  

      1
      0
      Votes
      1
      Posts
      389
      Views

      No one has replied

    • S

      How can i change the base currency symbol on Admin Dashboard?
      • sanjana singh  

      1
      0
      Votes
      1
      Posts
      1161
      Views

      No one has replied

    • S

      Where can i find the routes, views and controllers?
      • sanjana singh  

      1
      0
      Votes
      1
      Posts
      622
      Views

      No one has replied

    • S

      Product images is not display on the front end?
      • sanjana singh  

      1
      0
      Votes
      1
      Posts
      1233
      Views

      No one has replied

    • S

      How can we add where clause on table joins or simple tables in any datagrid in Bagisto?
      • sanjana singh  

      1
      0
      Votes
      1
      Posts
      1746
      Views

      No one has replied

    • How to create custom theme in Bagisto?
      • admin  

      11
      0
      Votes
      11
      Posts
      3794
      Views

      R

      Hi, If you want to create your own custom asset, then inside theme packages helper function, you can create your own function as we did. function bagisto_asset($path, $secure = null) { return themes()->url($path, $secure); } After creating this function, you can use it according to your need. Thanks Rahul Shukla
    • S

      How to create a page in Bagisto Admin Dashboard?
      • sanjana singh  

      2
      0
      Votes
      2
      Posts
      959
      Views

      R

      Hello, To create new pages in bagisto, you need to create a new packge in bagisto.I am reffering a link of "how to create a packge in bagisto". Here is link -https://bagisto.com/en/step-by-step-guide-for-bagisto-module-development/. Using this, you can get the desired result. Thanks
    • View Directory
      • admin  

      6
      0
      Votes
      6
      Posts
      763
      Views

      R

      Hi yaser-az, You can us this reference for your answer - https://forums.bagisto.com/topic/57/how-can-i-change-theme-and-write-own-html-for-front-end-section-not-the-admin-panel & you can also check our repository for custom theme ( https://github.com/rahulshukla-webkul/bagisto-custom-theme ) . Thanks Rahul Shukla
    • Package Update
      • admin  

      2
      0
      Votes
      2
      Posts
      452
      Views

      R

      Hi, To change controller & view, you need to create your own controller, route & view according to laravel documentation. To over ride controller - ->Your controller should contain the core path which you want to over ride & your method. ->Route will be provide in default route file & same as controller. To over ride view ->In laravel's default view , there is folder called 'vendor' , your all view file will be here followed by same directory structure as in bagisto's view. (like Shop & admin)
    • Special prices for products
      • admin  

      2
      1
      Votes
      2
      Posts
      517
      Views

      P

      Hello, No, via event listeners it is not possible but we have provided option while editing product at admin end, we have provided three fields 'special price', 'special date from','special date to' as in figure below : In the next release there will be a discount module their you can set conditions as you asked
    • S

      Where is the slider's design + JSON data?
      • sanjana singh  

      2
      0
      Votes
      2
      Posts
      426
      Views

      R

      There is slider.blade.php file inside views of shop package (shop->views->home->slider.blade.php), JSON data($sliderData) is retrieving from HomeCntroller's index method (inside shop package's controller). To change design of it, create a theme of bagisto or override this file and create its design as you want.
    • S

      This topic is deleted!
      • sanjana singh  

      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • S

      How to show attribute family wise category page - SHOP?
      • sanjana singh  

      1
      0
      Votes
      1
      Posts
      322
      Views

      No one has replied

    • S

      add to cart not working
      • sanjana singh  

      1
      0
      Votes
      1
      Posts
      672
      Views

      No one has replied

    • K

      This topic is deleted!
      • karkiswapnil  

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • L

      This topic is deleted!
      • lwilliams-heli  

      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • S

      How can i change the layered navigation for each category?
      • sanjana singh  

      4
      0
      Votes
      4
      Posts
      657
      Views

      R

      Hi, To achieve your requirements, you need write your own code in this method & it could be done like. pass category in getFilterAttribues function. get product belongs to that category. retrieve attributes of those product. Thanks Rahul Shukla