Shopping Cart Operations > Template Support

Mobile template redirect?

(1/1)

mikev619:
Hello i have been using AbanteCart for a couple months now and have been wondering if i could somehow redirect AbanteCart to use either the mobile or default template folder?
       References -
--- Quote ---
0
down vote
way more better, would be to load the set of templates based on the user agent / device, so for example:

$template_dir = '/path/to/default/templates/';
if($mobile_device) {
    $template_dir = '/path/to/default/templates/';
}
or more dynamic like this:

$template_dir = '/path/to/templates/' . $device;
how granular $device here can be, depends on the application needs.

--- End quote ---

From a stack overflow that i found someone posted

Thanks, Mike.

8/11/2013


So i just found this in the index php and was wondering if this may be what I'm looking for?

A way to say if user agent Ios,Android etc then define('RDIR_TEMPLATE',  'admin/view/default/MOBILETHEME'); else define('RDIR_TEMPLATE',  'admin/view/default/');

Look at the text file I added, for some reason i couldn't paste the code because of it being a external link?

abantecart:
There was a suggestion on stackoverflow that looks correct to me.

http://stackoverflow.com/questions/18141708/smarty-php-abantecart-e-commerce-user-agent-theme

You can not simply redirect to URL with sf=[template_id] parameter. This will be the template id of your mobile template set in abantecart.

Navigation

[0] Message Index

Go to full version
Powered by SMFPacks Social Login Mod