Hide Shop Extension
-
Hello, I am using the Bagisto 1.1.2 and installed successfully this extension (Hide the Shop from guest) on it.
My question is, after the client logins on the shop the profile page is shown. Can I change to show the main page of the shop instead of appear the profile page?
If it is possible, could you guide me how to do it please? -
Hi @sanjana-singh
Yes, this is possible to redirect on main page, allow us some time so that we can check this and will get back to you soon.Thanks
-
@Vaishali-Agarwal,
Thank you ! -
just change show function in vendor/bagisto/bagisto/packages/Webkul/Customer/src/Http/Controllers
public function show() { if (auth()->guard('customer')->check()) { return redirect()->route('customer.profile.index'); } else { $intendedUrl = url()->route('shop.home.index'); session()->put('url.intended', $intendedUrl); return view($this->_config['view']); } }