Search found 7954 matches

by aimeos
05 Mar 2021, 18:07
Forum: Help
Topic: Aimeos implementations
Replies: 3
Views: 1249

Re: Aimeos implementations

No, because the CMS applications perform more database queries than the PHP frameworks so it doesn't matter how many products you have. If you would have a large number of products in Aimeos but only a few user request, CMS applications could handle them well too.
by aimeos
05 Mar 2021, 14:35
Forum: Laravel package
Topic: How to Hit Refund method In Custome Payment gateway
Replies: 5
Views: 1346

Re: How to Hit Refund method In Custome Payment gateway

This is the save() method for the order invoice subpart: https://github.com/aimeos/ai-admin-jqadm/blob/master/admin/jqadm/src/Admin/JQAdm/Order/Invoice/Standard.php#L86-L108 This is where the order data is really stored: https://github.com/aimeos/ai-admin-jqadm/blob/master/admin/jqadm/src/Admin/JQAd...
by aimeos
05 Mar 2021, 14:32
Forum: Help
Topic: Checkout process-update shipping cost
Replies: 11
Views: 4517

Re: Checkout process-update shipping cost

1) i think i have to extend my decorator from Costs decorator because i want to recalculate the shipping cost so how can i extend from Costs decorator.please tell me how, not redirect me to docs this time. No, because it's easier to extend from the Weight decorator and implement the calcPrice() met...
by aimeos
05 Mar 2021, 14:23
Forum: Laravel package
Topic: i would like to add a column and need to write some query by myself.. Need a help
Replies: 3
Views: 818

Re: i would like to add a column and need to write some query by myself.. Need a help

First of all, Aimeos is an Open Source project mainly supported by developers using it for their own projects so we are all helping others in our spare time and it depends on how much work we have to do on our own. If you need immediate support, you should pay the Aimeos company for 1:1 developer su...
by aimeos
05 Mar 2021, 14:11
Forum: Help
Topic: Aimeos implementations
Replies: 3
Views: 1249

Re: Aimeos implementations

The Laravel and Symfony PHP frameworks are always faster then TYPO3 or any other full featured CMS due the different feature sets. You can see this in the performance tests for the Aimeos #gigacommerce extension:
https://aimeos.org/tips/gigacommerce-ai ... ion-items/
by aimeos
04 Mar 2021, 13:19
Forum: Laravel package
Topic: How to track Buyers?
Replies: 1
Views: 751

Re: How to track Buyers?

Do you mean in the order panel of the admin backend? Please be more specific.
by aimeos
04 Mar 2021, 13:11
Forum: Laravel package
Topic: category names in search result
Replies: 3
Views: 1209

Re: category names in search result

There's currently no configuration option to enable such a behavior and you have to implement it yourself. You can add a decorator for the catalog/suggest HTML client which searches for the text string in the "label" column in the "mshop_catalog" table: https://github.com/aimeos/...
by aimeos
04 Mar 2021, 13:06
Forum: Laravel package
Topic: How to Hit Refund method In Custome Payment gateway
Replies: 5
Views: 1346

Re: How to Hit Refund method In Custome Payment gateway

The admin backend currently doesn't handle refunds and pay outs.
Help to implement that is very welcome :-)
by aimeos
04 Mar 2021, 13:05
Forum: Laravel package
Topic: Remove specific div and nav at aimeos project
Replies: 5
Views: 1476

Re: Remove specific div and nav at aimeos project

Can you please be more specific about what you want to achieve?
by aimeos
03 Mar 2021, 10:53
Forum: Help
Topic: CMS extension
Replies: 62
Views: 61100

Re: CMS extension

We've found the problem:
The name in the manifest.php file was still "ai-cms-grapejs" instead of "ai-cms-grapesjs". This has been fixed now and adding columns should work now.