Search found 41 matches

by BrianMecler
19 Jul 2023, 22:43
Forum: Help
Topic: Config for checkout standard address states
Replies: 9
Views: 21351

Re: Config for checkout standard address states

To clarify my problem (it is not what I originally thought): My updates to config/shop.php to add the 'State' field only affect the 'Profile' page and allow the 'State' field to display when editing the customers 'Billing Address' or 'Delivery Address'. Going to the basket and advancing thru the che...
by BrianMecler
18 Jul 2023, 23:11
Forum: Help
Topic: Config for checkout standard address states
Replies: 9
Views: 21351

Re: Config for checkout standard address states

Unsure if it makes a difference, but I currently have 4 pages copied over from the vendor directory into my theme directory:

/packages/blueperch/templates/client/html/checkout/standard/
address-billing-body.php
address-body.php
address-delivery-body.php
address-partial.php
by BrianMecler
18 Jul 2023, 23:06
Forum: Help
Topic: Config for checkout standard address states
Replies: 9
Views: 21351

Re: Config for checkout standard address states

In the event that im having some type of caching issue, I verified that I see 18 records in 'madmin_cache' mysql table.
After I run 'php artisan aimeos:clear' I confirm that it removes the records:

mysql> select * from madmin_cache \G
Empty set (0.00 sec)
by BrianMecler
18 Jul 2023, 16:45
Forum: Help
Topic: Config for checkout standard address states
Replies: 9
Views: 21351

Re: Config for checkout standard address states

I have tried clearing the cache as well:

Code: Select all

php artisan aimeos:clear
by BrianMecler
18 Jul 2023, 13:16
Forum: Help
Topic: Config for checkout standard address states
Replies: 9
Views: 21351

Re: Config for checkout standard address states

More information.. I am only not able to see the state field when signed out of the system.. When I sign in, and choose to edit the Billing address, or add a new delivery address, I see the state field and it has my values populated from the array. What seems odd, is that while the states populate w...
by BrianMecler
18 Jul 2023, 11:30
Forum: Help
Topic: Config for checkout standard address states
Replies: 9
Views: 21351

Config for checkout standard address states

Hello, Laravel Framework 10.13.1, php8.1-fpm, aimeos/aimeos-laravel 2023.04.2 I am attempting to provide an array of states so that the State form field get displayed during checkout. It seems like 'if( count( $this->get( 'states', [] ) ) > 0 )' always returns 0 for me. This is what I attempted to p...
by BrianMecler
13 Jul 2023, 23:37
Forum: Laravel package
Topic: New Controller
Replies: 1
Views: 5973

New Controller

Hello, Laravel Framework 10.13.1, php8.1-fpm, aimeos/aimeos-laravel 2023.04.2 1) I am working on implementing Socialite currently. I have my own theme in Aimeos, would best practice be to add new controllers somewhere inside my theme at /packages/<my-theme>/, add new controllers in /app/Http/Control...
by BrianMecler
04 Jun 2023, 12:45
Forum: Help
Topic: Google Analytics Script
Replies: 1
Views: 2577

Google Analytics Script

Hello, Would this be the ideal method/location to add the Google Analytics js script into the header of every page? 1) I generated an extension and copied the zip file for it into: /var/www/html/packages/<my-ext-name> 2) I copied the default theme into my own theme: cp -R /var/www/html/public/vendor...
by BrianMecler
04 Jun 2023, 12:39
Forum: Laravel package
Topic: Anonymous vs User Site Display
Replies: 4
Views: 2497

Re: Anonymous vs User Site Display

Thank you Aimeos, I had tried 'php artisan aimeos:clear' along with several other cache clearing commands like 'route:clear', 'view:clear'. I tried ctrl + shift + r and new private browsing windows. Restarting php-fpm to clear opcache. I was using NGINX + PHP-FPM. As a test, I switched to Apache2 + ...
by BrianMecler
03 Jun 2023, 22:41
Forum: Laravel package
Topic: Anonymous vs User Site Display
Replies: 4
Views: 2497

Re: Anonymous vs User Site Display

Maybe I am misunderstanding the concept here.

I just did a fresh install, went strait to admin > cms > '/' and modified the default content.

I see the change when logged in on the front end, but the changes are not on the front end when im logged out...