XF 2.1 Set Style for guest user

fahad ashraf

Well-known member
Hello,

I am working on a project which have following features
  1. User can set a style for a forum
  2. User can set a style for a thread
For login user i am setting style from the following code
PHP:
$visitor->style_id=$style_id;
$visitor->save():

It is working fine for login user,

But for guest user i am using following code.

PHP:
$this->app->response()->setCookie('style_id',$style_id);

The problem is for guest, style set when i refresh the page two times . How can i set a style for guest on first time page refresh anyone please ? @Chris D ?

Thanks,
 
Last edited:
Top Bottom