Search found 41 matches

by alababdiy
21 Apr 2024, 08:24
Forum: Laravel package
Topic: Extend php artisan aimeos:setup <site code> [<template site>]
Replies: 3
Views: 7973

Re: Extend php artisan aimeos:setup <site code> [<template site>]

The link is no longer working (404 - page not found). Is there an alternative link?
by alababdiy
17 Feb 2024, 08:28
Forum: Help
Topic: Restricting Users from Signing Up Across Multiple Stores
Replies: 6
Views: 28445

Re: Restricting Users from Signing Up Across Multiple Stores

What is an easy way to perform an inner join between the Customer and CustomerSide (New Table) here? If I create the CustomerSite Table: return array( 'table' => array( '' => function (\Aimeos\Upscheme\Schema\Table $table) { $table->engine = 'InnoDB'; $table->int('customerid'); $table->string('sitei...
by alababdiy
15 Feb 2024, 17:36
Forum: Help
Topic: Restricting Users from Signing Up Across Multiple Stores
Replies: 6
Views: 28445

Re: Restricting Users from Signing Up Across Multiple Stores

Users should be able to buy from all stores
Yes
vendors should not see the users in the Customer panel
Each vendor ( site admins ) should still see his customers ( customers they already sign in / sign up on his store "only" )
by alababdiy
11 Feb 2024, 10:32
Forum: Help
Topic: Restricting Users from Signing Up Across Multiple Stores
Replies: 6
Views: 28445

Restricting Users from Signing Up Across Multiple Stores

I'm currently working with Aimeos and facing an issue regarding user signups across multiple stores. The requirement is to ensure that a user cannot sign up for multiple stores since there is a single siteid field in user schema. While I can make the siteid field empty to address the signup issue, t...
by alababdiy
06 Feb 2024, 11:57
Forum: Help
Topic: Catalog List Component: Unable to Save Custom Field and Rendering Issue
Replies: 2
Views: 8259

Catalog List Component: Unable to Save Custom Field and Rendering Issue

I tried to add a custom field to the catalog list component. I added traits to cataloglist.js: { type: 'select', label: 'Show Style', name: 'style', options: [ { id: 'grid', name: 'grid' }, { id: 'scroll', name: 'scroll' }, ] } In ./src/Client/Html/Cms/Page/Cataloglist/Standard.php (i override succe...
by alababdiy
03 Feb 2024, 11:01
Forum: Help
Topic: Issue with Middleware Redirect to Login Page - JS script code/file Not Loading
Replies: 1
Views: 2994

Issue with Middleware Redirect to Login Page - JS script code/file Not Loading

Hello Aimeos community, I hope you're all doing well. I am currently facing an issue with a Laravel middleware that redirects users to the login page if they are not authenticated. The redirection works as expected, but I've noticed that the JS script Code/files are not loading on the login.blade.ph...
by alababdiy
24 Jan 2024, 08:22
Forum: Help
Topic: How can I set up real-time triggers for order creation and update?
Replies: 1
Views: 2389

How can I set up real-time triggers for order creation and update?

How can I set up real-time triggers for order creation and update?
I don't think extending \Aimeos\MShop\Common\Manager\Decorator\Base is a good idea, also cron jobs for the scheduler job controller aren't truly real-time, as we know