Navigation

    Bagisto Forum

    Bagisto

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

    ghermans

    @ghermans

    16
    Reputation
    70
    Posts
    136
    Profile views
    1
    Followers
    0
    Following
    Joined Last Online
    Website bagisto.eu Location Belgium

    ghermans Follow

    Posts made by ghermans

    • RE: No Acces to Front, Register and noAdmin login (account) [SOLVE]

      Hi @Hardkiffeur what method did you use to install Bagisto (web install or console) ?

      posted in Installing Bagisto
      ghermans
    • RE: PDO Connection Error When install bagisto

      @theany thank you for reporting this issue, we are aware of this one and a fix (https://github.com/bagisto/bagisto/pull/4416) will be merged asap.

      posted in Installing Bagisto
      ghermans
    • RE: Undefined index: name bagisto 1.1.2

      Can you please write down the steps you did to install Bagisto, so we can try to reproduce this issue?

      posted in Bug Report
      ghermans
    • RE: Problems with installer creating db

      I just did a fresh setup to verify if there is a issue with the master branch, this is not the case.
      That means that this is a hosting environment issue, so what we suggest is to contact your hosting provider.

      You can of course also create a support ticket with your hosting credentials so that our support team can investigate this, in case your hosting provider can not provide a solution.
      Keep in mind that this is a paid service and costs € 48 per hour.

      posted in Bug Report
      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
    • RE: @BAGISTO DEVS // BAGISTO THEME

      Hi, there is no separated repository for the default theme, but you can find the files for this theme in packages/Webkul/Shop/src/Resources

      posted in Installing Bagisto
      ghermans
    • RE: No documentation to create new product type

      I have just fixed the broken link that explains how you can create new product types, please check https://devdocs.bagisto.com/1.x/advanced/create_product_type.html

      posted in Modules
      ghermans
    • RE: Disable shipping on checkout

      Maybe this package can help you out https://github.com/ghermans/bagisto-pickup

      posted in General Discussion
      ghermans
    • RE: How to escape single quotes in a translated array

      Try to use the php function addslashes()

      <?php
      $pages = "Pagina's";
      
      $array = [
          'pages' => addslashes($pages),
      ];
      
      print_r($array);
      

      This will return

      Array
      (
          [pages] => Pagina\'s
      )
      
      
      posted in Knowledge Base
      ghermans