Search found 122 matches

by VirtualSpy
07 Feb 2023, 13:00
Forum: Laravel package
Topic: product search
Replies: 2
Views: 651

Re: product search

laravel version 9.48.0 , Aimeos version 2022.10.4 and PHP version 8.1.3 (Win) product search is using =~ (string starts with) and ~= (string contains, slow!) so I want to change the operator but I could not understand from where it will change please help me change the operator of the product searc...
by VirtualSpy
07 Feb 2023, 07:42
Forum: Laravel package
Topic: product search
Replies: 2
Views: 651

product search

laravel version 9.48.0 , Aimeos version 2022.10.4 and PHP version 8.1.3 (Win) product search is using =~ (string starts with) and ~= (string contains, slow!) so I want to change the operator but I could not understand from where it will change please help me change the operator of the product search...
by VirtualSpy
04 Feb 2023, 03:37
Forum: Laravel package
Topic: How do I integrate Razorpay Payment Gateway
Replies: 4
Views: 7979

Re: How do I integrate Razorpay Payment Gateway

@veeran ambalam did you find a solution how to integrate razorpay? Just follow the create payment provider documentation https://aimeos.org/docs/latest/providers/service/payment/ and try to integrate there razorpay payment gateway api. If you get success to integrate razorpay payment gateway api ht...
by VirtualSpy
03 Feb 2023, 14:37
Forum: Laravel package
Topic: Migration/setup task
Replies: 1
Views: 506

Migration/setup task

laravel version 9.48.0 , Aimeos version 2022.10.4 and PHP version 8.1.3 (Win) does Aimeos migration have column modifiers like laravel migration https://laravel.com/docs/9.x/migrations#column-modifiers ,because i want to Place the column "after" another column please tell me if it is possi...
by VirtualSpy
03 Feb 2023, 13:52
Forum: Laravel package
Topic: Index rebuild job
Replies: 1
Views: 516

Index rebuild job

laravel version 9.48.0 , Aimeos version 2022.10.4 and PHP version 8.1.3 (Win) i want to modify index rebuild job for mshop_index_text table , there i want to insert product name only in content coloumn i got manager for text "\vendor\aimeos\aimeos-core\src\MShop\Index\Manager\Text\Standard.php&...
by VirtualSpy
04 Jan 2023, 14:46
Forum: Laravel package
Topic: Multi site redirect based on location
Replies: 7
Views: 1533

Re: Multi site redirect based on location

You should implement a redirect for the home page ("/") using a GeoIP database. i tried like this $ip = \Request::ip(); $currentUserInfo = Location::get($ip); if($currentUserInfo!==false) { $country=$currentUserInfo->countryName; } if (config('app.shop_multishop')) { if(isset($country)) {...
by VirtualSpy
04 Jan 2023, 14:14
Forum: Laravel package
Topic: Multi site redirect based on location
Replies: 7
Views: 1533

Re: Multi site redirect based on location

You should implement a redirect for the home page ("/") using a GeoIP database. i tried like this $ip = \Request::ip(); $currentUserInfo = Location::get($ip); if($currentUserInfo!==false) { $country=$currentUserInfo->countryName; } if (config('app.shop_multishop')) { if(isset($country)) {...
by VirtualSpy
03 Jan 2023, 04:55
Forum: Laravel package
Topic: Multi site redirect based on location
Replies: 7
Views: 1533

Re: Multi site redirect based on location

You should implement a redirect for the home page ("/") using a GeoIP database. i tried like this $ip = \Request::ip(); $currentUserInfo = Location::get($ip); if($currentUserInfo!==false) { $country=$currentUserInfo->countryName; } if (config('app.shop_multishop')) { if(isset($country)) {...
by VirtualSpy
29 Dec 2022, 10:02
Forum: Laravel package
Topic: hover subcategories on right side
Replies: 3
Views: 854

Re: hover subcategories on right side

aimeos wrote: 28 Dec 2022, 20:50 You need to adapt the HTML/CSS and maybe the JS for the catalog/tree component
can you tell me how to get child categories of level 2 category?
by VirtualSpy
28 Dec 2022, 23:24
Forum: Laravel package
Topic: Multi site redirect based on location
Replies: 7
Views: 1533

Re: Multi site redirect based on location

aimeos wrote: 28 Dec 2022, 21:03 What is "location" in terms of what you know from the user? IP? Zip code?
Location is based on IP address