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

      Language Translations
      • bagisto-mogul

      3
      0
      Votes
      3
      Posts
      2723
      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
      2192
      Views

      No one has replied

    • S

      Better understanding of channel
      • scalla

      2
      0
      Votes
      2
      Posts
      1757
      Views

      admin

      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
      655
      Views

      No one has replied

    • S

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

      1
      0
      Votes
      1
      Posts
      1670
      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
      2048
      Views

      No one has replied

    • admin

      How to create custom theme in Bagisto?
      • admin

      11
      0
      Votes
      11
      Posts
      8385
      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
      1390
      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

    • admin

      Package Update
      • admin

      2
      0
      Votes
      2
      Posts
      776
      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)

    • admin

      Special prices for products
      • admin

      2
      1
      Votes
      2
      Posts
      869
      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 :

      Screenshot_2019-05-13 Edit Product.png

      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
      750
      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
      547
      Views

      No one has replied

    • S

      add to cart not working
      • sanjana singh

      1
      -1
      Votes
      1
      Posts
      921
      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
      1112
      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

    • P

      Trying to create a custom theme
      • pelomedusa

      2
      0
      Votes
      2
      Posts
      653
      Views

      R

      Hi,

      Please follow this link for creating custom theme -https://bagisto.com/en/create-custom-theme-in-bagisto/.
      If you found any difficulty to implement this, please write to us.

      Thanks
      Rahul Shukla

    • L

      How to override the admin layout?
      • lwilliams-heli

      5
      0
      Votes
      5
      Posts
      2047
      Views

      L

      Thanks Rahul.

      This has now allowed me to override as needed.

    • S

      How to increase slider image upload size?
      • sanjana singh

      3
      0
      Votes
      3
      Posts
      658
      Views

      R

      Hello,

      To increase file upload size, you need to set the value of 'upload_max_filesize' and 'post_max_size' in your php.ini.
      Path of this file in linux is -> /etc/php/7.2/apache2.

      ; Maximum allowed size for uploaded files.
      upload_max_filesize = 40M

      ; Must be greater than or equal to upload_max_filesize
      post_max_size = 40M

      For more refference, please see this one - https://stackoverflow.com/questions/2184513/change-the-maximum-upload-file-size

      Thanks
      Rahul Shukla