Here is a video description of my question: http://screencast.com/t/IYxNvn9qJyzy
I am having low trial conversion, even though I am promoting my site with a trail.
In my email template, like most I use $url to generate the verification email link that is sent after a registration. Currently the verification email link of my site is:
https://mysite/email-verify-check/********** and once the $url is clicked in the email it will default to my index page (dashboard) with a confirmation event.
I would like to change the default $url link to https://mysite/membership/subscribe/ , how do I do this?
I think it is in email_verify_service.php , but I’m not 100% sure
$vars = array(
'code' => $emailVerifiedData->hash,
'url' => OW::getRouter()->urlForRoute('base_email_verify_code_check', array('code' => $emailVerifiedData->hash)),
'verification_page_url' => OW::getRouter()->urlForRoute('base_email_verify_code_form')
);