Search found 8147 matches

by aimeos
27 Apr 2021, 05:25
Forum: TYPO3 extension
Topic: Problems with routeEnhancers and Slash PageTypeSuffix
Replies: 3
Views: 5568

Re: Problems with routeEnhancers and Slash PageTypeSuffix

Guess that these lines: type: PageType default: / map: /: 0 Overwrite the page type used by the count, suggest and stock URLs: https://github.com/aimeos/aimeos-typo3/blob/master/Configuration/TypoScript/setup.txt#L35-L37 Which changes the content type to application/javascript and remove any HTML in...
by aimeos
27 Apr 2021, 05:20
Forum: Help
Topic: Price item not available
Replies: 9
Views: 5361

Re: Price item not available

Is a price for the used currency and quantity "1" available?
by aimeos
24 Apr 2021, 09:40
Forum: Help
Topic: Booking and appointments
Replies: 1
Views: 1180

Re: Booking and appointments

Yes, if you use a selection of event articles with start and end date set.
by aimeos
24 Apr 2021, 09:37
Forum: Laravel package
Topic: Implementing a custom payment
Replies: 1
Views: 1001

Re: Implementing a custom payment

$get_order = $this->getOrder($order); This is unnecessary because the order item is already passed to the method. $order_base = $this->getOrderBase($order->getBaseId(), \Aimeos\MShop\Order\Item\Base\Base::PARTS_ALL); Both $this->getOrder() and $this->getOrderBase() return just an array with the ori...
by aimeos
24 Apr 2021, 09:31
Forum: Laravel package
Topic: Get the list of properties in media
Replies: 4
Views: 1985

Re: Get the list of properties in media

Media items doesn't have a configuration but you can attach property items to them (type, language, value pairs) in the admin backend. Then, you can get them using: foreach($this->homeTree->getRefItems('media','default') as $mediaItem) { print_r($mediaItem->getProperties('<type of the property>')); }
by aimeos
24 Apr 2021, 09:26
Forum: Laravel package
Topic: How to make changes in front-end
Replies: 5
Views: 4280

Re: How to make changes in front-end

The logo is defined in the ./resources/views/app.blade.php template.
by aimeos
24 Apr 2021, 09:25
Forum: Laravel package
Topic: Integrating PayPro with Aimeos
Replies: 3
Views: 1350

Re: Integrating PayPro with Aimeos

Here's the documentation how to configure it in Aimeos after installing it via composer:
https://aimeos.org/docs/latest/manual/s ... ay-generic

Read the Omnipay docs and ask in an Omnipay forum what must be done to update the driver.
by aimeos
24 Apr 2021, 09:23
Forum: Laravel package
Topic: Use arabic language with latin numbers
Replies: 6
Views: 3523

Re: Use arabic language with latin numbers

The number view helper is available here: https://github.com/aimeos/aimeos-core/blob/master/lib/mwlib/src/MW/View/Helper/Number/Locale.php There's also another one available: https://github.com/aimeos/aimeos-core/blob/master/lib/mwlib/src/MW/View/Helper/Number/Standard.php You can change it overwrit...
by aimeos
24 Apr 2021, 09:19
Forum: Help
Topic: Price item not available
Replies: 9
Views: 5361

Re: Price item not available

Does your product has a price at all?