FindRetros Setup

Quit

Need help ? Inbox me!
Nov 29, 2013
94
10
CMS: RevCMS

How to add voting to my me page so a user can vote after they login, and also after they register
My return url is DOMAIN NAME)/me
 

Jeffrey

Devbest Indian Tech Support
FindRetros Moderator
Feb 5, 2013
1,180
412
Hey,
Open up class.user.php
Find

PHP:
$template->form->unsetData();
                        header('Location: ' . $_CONFIG['hotel']['url'] . '/me');
                        exit;
                    }
Replace that with
PHP:
$template->form->unsetData();
                        header('Location: http://findretros.com/vote/[YOUR PAGE NAME]');
                        exit;
                    }
 

Quit

Need help ? Inbox me!
Nov 29, 2013
94
10
Hey,
Open up class.user.php
Find

PHP:
$template->form->unsetData();
                        header('Location: ' . $_CONFIG['hotel']['url'] . '/me');
                        exit;
                    }
Replace that with
PHP:
$template->form->unsetData();
                        header('Location: http://findretros.com/vote/[YOUR PAGE NAME]');
                        exit;
                    }

Thanks dude it worked!!
 

Users who are viewing this thread

Top