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

ghermans
@ghermans
Posts made by ghermans
-
RE: No Acces to Front, Register and noAdmin login (account) [SOLVE]
-
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.
-
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?
-
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. -
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.
-
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
-
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
-
RE: Disable shipping on checkout
Maybe this package can help you out https://github.com/ghermans/bagisto-pickup
-
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 )