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

      How to Create about us page with same bagisto theme?
      • Thalaivan

      3
      0
      Votes
      3
      Posts
      350
      Views

      T

      thanks rahul

    • K

      ADD SUGGEST AND VOTE AN IDEA SECTION FOR BAGISTO ECOSYSTEM
      • kgrahim

      4
      3
      Votes
      4
      Posts
      378
      Views

      admin

      @kgrahim Yes, together we will make bagisto the go-to eCommerce platform for all users and take it miles ahead of all.

    • P

      Add Group By in admin side grid
      • ppstech

      3
      0
      Votes
      3
      Posts
      319
      Views

      P

      hi @rahul ,
      I am not talking about the query. I want to show it in grid something like below.
      0f084906-eb20-486d-93e4-016686ce4730-image.png

      Is there any functionality in grid through which I can achieve it? does the grid support group by feature with drag & drop column? or I need to do it manually

    • H

      Reading customers from another database?
      • hChamran

      2
      0
      Votes
      2
      Posts
      263
      Views

      R

      Hi @hChamran

      You can not sync users to customers from others database, you need to create it.

      Thanks

    • P

      How to open model popup in gird mass action
      • ppstech

      2
      0
      Votes
      2
      Posts
      601
      Views

      B

      @ppstech
      Mass actions does not support any kind of frontend component invoke. Rather is dependent on a single AJAX function for passing all the selected IDs to your provided route.

      You would be required to over ride the datagrid blade files to do that and create a delayed sequence on submission of mass action AJAX request.

      Regards:
      Prashant.

    • T

      Lightbox on home page
      • tamilvanan

      2
      0
      Votes
      2
      Posts
      189
      Views

      R

      Hi @tamilvanan

      You can listen event 'bagisto.shop.home.content.before' to your package's service provider to add your page for light box.

      \Event::listen('bagisto.shop.home.content.before', function($viewRenderEventManager) { $viewRenderEventManager->addTemplate('type-hint::folder1.folder2.file-name'); });

      Write your light box code in this file according to your need.

      Thanks

    • R

      Review need reply !!!
      • RK REZA

      2
      0
      Votes
      2
      Posts
      192
      Views

      R

      Hi @RK-REZA

      This is open source so you can implement this one if you need.

      Thanks

    • K

      Laravel Intervention image cache not working on server
      • karkiswapnil

      2
      0
      Votes
      2
      Posts
      908
      Views

      R

      Hi @karkiswapnil

      Please follow below one for solution - https://forums.bagisto.com/topic/188/broken-image-logo-in-bagisto-with-causes-and-solutions

      Thanks

    • H

      How to change currency unit?
      • hChamran

      2
      0
      Votes
      2
      Posts
      299
      Views

      ghermans

      Hi @hChamran
      the following steps would do the trick

      Go to Settings Click on Currencies and add your currency.

      addKnipsel.PNG
      3. Go to Settings -> Channels and click on the pencil to edit the channel.
      channelsKnipsel.PNG
      4. Select the curreny you like to assign to this channel.
      EditKnipsel.PNG

    • H

      How to get login user?
      • hChamran

      2
      0
      Votes
      2
      Posts
      557
      Views

      ghermans

      Try

      $customer = auth()->guard('customer')->user(); var_dump($customer);
    • L

      New release
      • lwilliams-heli

      11
      0
      Votes
      11
      Posts
      791
      Views

      R

      Hi @lwilliams-heli

      At the end of this month, we will release our next version.

      Thanks

    • L

      Shop By attribute
      • latifiyll

      3
      0
      Votes
      3
      Posts
      272
      Views

      R

      Hi @latifiyll

      Please see this one - https://github.com/bagisto/bagisto/issues/1466.

      Thanks

    • L

      Bagisto Custom Theme
      • latifiyll

      2
      1
      Votes
      2
      Posts
      354
      Views

      ghermans

      Unfortunately no additional free themes are available

    • L

      Adding new field in customer form
      • latifiyll

      2
      0
      Votes
      2
      Posts
      320
      Views

      R

      Hi @latifiyll

      Please read this for ovveride view - https://forums.bagisto.com/topic/221/how-to-override-view-file-in-bagisto.

      Provide your controller's route path in this file, so when you will submit this page, your controller will be called.

      Thanks

    • T

      Override core model not in effect
      • trane294

      2
      0
      Votes
      2
      Posts
      209
      Views

      R

      Hi @trane294

      Hi @accountmine

      Your whole code is correct instead of dumping whole customer, try to dd($customer->name), because you have created Accessor for name.

      For more detail, please go through with this article - https://laravel.com/docs/5.8/eloquent-mutators#defining-an-accessor

      Thanks

    • V

      how to create new migration table in bagisto
      • vinay2430

      3
      0
      Votes
      3
      Posts
      1094
      Views

      ghermans

      Create your migration file as you always do in laravel php artisan make:migration create_my_table inside the /src folder from your package create a new folder Database. Go to the Database folder and create a new folder Migrations. Copy your generated migration file to packages/My/Package/src/Database Open your package service provider and add your migrations folder to the boot method class MyPackageServiceProvider extends ServiceProvider { /** * Perform post-registration booting of services.. * * @return void */ public function boot() { $this->loadMigrationsFrom(__DIR__.'/../Database/Migrations'); }
    • R

      How to Change the Bliss logo in the top left
      • randy_johnson

      6
      0
      Votes
      6
      Posts
      989
      Views

      R

      Hi @leni

      Please run following commands -

      php artisan view:clear
      php artisan cache:clear
      composer dump-autoload

      & follow the given article - https://forums.bagisto.com/topic/188/broken-image-logo-in-bagisto-with-causes-and-solutions

      Thanks

    • T

      Price range instead of "As low as" message?
      • trane294

      2
      0
      Votes
      2
      Posts
      248
      Views

      R

      Hi @trane294

      Right now this option not available but if you want then you can customise it.

      Thanks

    • L

      UI css
      • latifiyll

      2
      0
      Votes
      2
      Posts
      247
      Views

      ghermans

      packages/Webkul/package-name/Resources/assets/scss

    • A

      JWT token based Authentication
      • aditya banerjee

      2
      0
      Votes
      2
      Posts
      576
      Views

      R

      Hi @aditya-banerjee

      Please follow this link - https://forums.bagisto.com/topic/149/i-need-to-deliver-the-api-token-from-the-json-response-not-the-header

      Thanks