Search found 274 matches

by MikaelNazarenko
26 Jul 2019, 11:06
Forum: Laravel package
Topic: How to hide languages from back-end ?
Replies: 6
Views: 3014

Re: How to hide languages from back-end ?

Hmm, I have removed couple languages from Locales->LAnguages, But they still shown there: https://prnt.sc/okc650 You see Arabic language is missing in list table but it shown on first position on lang tab where user may select the language. How can I hide or remove languages from exactly that lang t...
by MikaelNazarenko
26 Jul 2019, 05:51
Forum: Laravel package
Topic: How to hide languages from back-end ?
Replies: 6
Views: 3014

Re: How to hide languages from back-end ?

Why after I deleted language from Locale->language it still shown at Language tab ? How to remove language from Language tab ? Also how can I set another language ? So when user log in to admin another language will be used ?
by MikaelNazarenko
25 Jul 2019, 16:47
Forum: Laravel package
Topic: How to hide languages from back-end ?
Replies: 6
Views: 3014

How to hide languages from back-end ?

I want to hide unnecessary languages from back-end. Also I want somehow make it to save selected language. Thanks a lot!
by MikaelNazarenko
25 Jul 2019, 14:52
Forum: Laravel package
Topic: Set up front-end shop without '/public' in url
Replies: 8
Views: 3391

Re: Set up front-end shop without '/public' in url

Nice, I have done it by adding the following code to my routes/web.php :

Code: Select all

Route::get('/', array(
    'as' => 'aimeos_shop_list',
    'uses' => '\Aimeos\Shop\Controller\CatalogController@listAction'
));
by MikaelNazarenko
25 Jul 2019, 12:08
Forum: Laravel package
Topic: Set up front-end shop without '/public' in url
Replies: 8
Views: 3391

Re: Set up front-end shop without '/public' in url

Ok, now I am caring about how to remove '/shop' from url, or, I mean how to make application shows '/shop' content on '/' page ? So I want to show on my root / page the content from /shop
by MikaelNazarenko
25 Jul 2019, 11:36
Forum: Laravel package
Topic: Set up front-end shop without '/public' in url
Replies: 8
Views: 3391

Re: Set up front-end shop without '/public' in url

I have fixed it just by adding demo data by executing

Code: Select all

php artisan aimeos:setup --option=setup/default/demo:1
, but footer is missing( What might be the reason ? Or the footer is just missing in template here https://github.com/aimeos/aimeos-laravel ?
by MikaelNazarenko
25 Jul 2019, 07:55
Forum: Laravel package
Topic: Set up front-end shop without '/public' in url
Replies: 8
Views: 3391

Re: Set up front-end shop without '/public' in url

Can you, please, explain why do I have this on /shop page ?

No catalog node for ID ""

https://prnt.sc/ojrtjz

I would like have like this:

http://laravel.demo.aimeos.org/default/en/EUR/list
by MikaelNazarenko
25 Jul 2019, 07:23
Forum: Laravel package
Topic: Set up front-end shop without '/public' in url
Replies: 8
Views: 3391

Re: Set up front-end shop without '/public' in url

Aaah, I understand ! Sorry, yesterday I was stupid a little bit )) So when I set public as document root then I will not have public in url and it will work. I have done it another way, you variant sure better!
by MikaelNazarenko
24 Jul 2019, 22:01
Forum: Laravel package
Topic: Set up front-end shop without '/public' in url
Replies: 8
Views: 3391

Re: Set up front-end shop without '/public' in url

I have changed it safety. A lot of people remove that /public from url because it is ugly.
IT is worry that nobody can tell me how to solve the problem ?
by MikaelNazarenko
24 Jul 2019, 11:54
Forum: Laravel package
Topic: Set up front-end shop without '/public' in url
Replies: 8
Views: 3391

Set up front-end shop without '/public' in url

Hi guys! My environment is the following: Laravel Framework 5.8.26 aimeos-laravel 2019.07 PHP Version 7.2.19-1+ubuntu18.04.1+deb.sury.org+1 I am trying to set up front-end shop. /var/www/schmuck/resources/views/app.blade.php : <!DOCTYPE html> <html lang="en" class="no-js"> <head>...