Navigation

    Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. ghermans
    3. Best
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Best posts made by ghermans

    • RE: Change Language

      You can change the default language for the admin interface by following these steps:

      1. open config/app.php and search for 'locale'
          /*
          |--------------------------------------------------------------------------
          | Application Locale Configuration
          |--------------------------------------------------------------------------
          |
          | The application locale determines the default locale that will be used
          | by the translation service provider. You are free to set this value
          | to any of the locales which will be supported by the application.
          |
          */
      
          'locale' => 'en',
      
      1. Change the value from 'en' to 'tr'
      2. Save the changes and refresh the admin interface.
      posted in Knowledge Base
      ghermans
    • RE: I want to use Themeforest E-commerce Template design with bagisto

      @devansh-webkul said in I want to use Themeforest E-commerce Template design with bagisto:

      @Mianarshan,

      Did you add provider in composer.json autoload and config/app.php?

      Also don't forget to run the following commands in your terminal:

      composer dumpautoload
      php artisan config:cache
      php artisan route:cache
      
      posted in General Discussion
      ghermans
    • RE: How To Create Package ?

      @rahul it might be a good idea to write here the cause of the problem so people can learn from it?

      posted in General Discussion
      ghermans
    • RE: Create order in Admin

      This feature does not currently exist

      posted in Knowledge Base
      ghermans
    • RE: Repository does not exist

      are you using the master branch from GitHub or the release zipfile?
      I just did a clean install with the following commands (I suppose you did this too)

      git clone https://github.com/bagisto/bagisto.git
      cd bagisto
      composer install
      artisan serve
      

      Once the installation procedure was completed i get the store
      alt text

      posted in Bug Report
      ghermans
    • RE: change the subject of the mail

      Open packages/Webkul/Shop/src/Resources/lang/en/app.php and jump to line 476 there you can change the subject, etc... for orders, invoices, shipment, forget-password, customer registration

      posted in General Discussion
      ghermans
    • RE: Where to find products page blade file

      Open packages/Webkul/Shop/src/Resources/lang/en/app.php and jump to line 328 there you can change the values

      posted in Knowledge Base
      ghermans
    • RE: how to create new migration table in bagisto
      1. Create your migration file as you always do in laravel
      php artisan make:migration create_my_table
      
      1. inside the /src folder from your package create a new folder Database.
      2. Go to the Database folder and create a new folder Migrations.
      3. Copy your generated migration file to packages/My/Package/src/Database
      4. 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');
          }
      
      posted in General Discussion
      ghermans
    • RE: Laravel eCommerce Store Pickup

      Hi make sure that the following has been set

      1. open config/app.php and add
      Digibytes\Pickup\Providers\PickupServiceProvider::class,
      
      1. open composer.json in your root directory of Bagisto and add below "psr-4"
      "Digibytes\\Pickup\\": "packages/Digibytes/Pickup/src",
      
      1. run composer dump-autoload
      posted in Modules
      ghermans
    • RE: Forum to contact Bagisto experts for help with customisation & modification

      Bagisto has some partners who they are working with, you can find them at https://bagisto.com/en/partners/

      posted in General Discussion
      ghermans
    • RE: Why is creating custom theme such a headache?

      Hi, sorry that creating a custom theme is giving you a headache, to release you from this pain, you could check https://devdocs.bagisto.com/1.x/themes/create_theme.html as we explain on this page step by step how you can create your own custom theme.

      posted in General Discussion
      ghermans
    • RE: Theme Creation and Override Bottleneck

      In case Bagisto is loading slowly you can do the following things:

      1. Pull the latest changes from our repository bagisto/bagisto because we added fixes related to the load time.
      2. Open .env and change APP_DEBUG=true to APP_DEBUG=false.
      3. Change the php memory limit to 3 or 4G in your php.ini file.
      4. In case you are using vagrant / homestead make sure that the virtual machine has enough memory.
      posted in General Discussion
      ghermans
    • RE: Gift card system .. need to hide shipping part

      Try to add your giftcards as a virtual product, shippings are automatically disabled for this product type.

      posted in Modules
      ghermans