avengermx Posted April 17, 2008 Share Posted April 17, 2008 i have just ad a new ticket system installed and now i need to re-direct my contact us page to my new ticket support system how can i do this? Link to comment https://forums.phpfreaks.com/topic/101509-link-properties/ Share on other sites More sharing options...
djpic Posted April 17, 2008 Share Posted April 17, 2008 Are you trying to do it in Apache or just in the HTML of the page? HTML of the page, you could use javascript. <script language="JavaScript"> var time = null function move() { window.location = 'http://www.yourdomain.com' } //--> </script> <body onload="timer=setTimeout('move()',2000)"> Link to comment https://forums.phpfreaks.com/topic/101509-link-properties/#findComment-519597 Share on other sites More sharing options...
avengermx Posted April 18, 2008 Author Share Posted April 18, 2008 but where do i insert this script i am using cre-loaded pro inside my contact_us.php file? Link to comment https://forums.phpfreaks.com/topic/101509-link-properties/#findComment-520098 Share on other sites More sharing options...
rameshfaj Posted April 18, 2008 Share Posted April 18, 2008 From the page where the contact link is present change the <a href ......> property and u can give either absolute or relative path. Link to comment https://forums.phpfreaks.com/topic/101509-link-properties/#findComment-520104 Share on other sites More sharing options...
avengermx Posted April 18, 2008 Author Share Posted April 18, 2008 i am not sure where even to find it Link to comment https://forums.phpfreaks.com/topic/101509-link-properties/#findComment-520113 Share on other sites More sharing options...
avengermx Posted April 18, 2008 Author Share Posted April 18, 2008 this is the line here but where do i insert my new link which is supposed to replace the FILENAME_CONTACT_US with my new link which is http://avengermxboard.com/support/index.php 'text' => '<a href="' . tep_href_link(FILENAME_CONTACT_US, '', 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . 'live_support2.gif', IMAGE_LIVE_SUPPORT_NOT_AVAILABLE) . '</a>'); Link to comment https://forums.phpfreaks.com/topic/101509-link-properties/#findComment-520114 Share on other sites More sharing options...
blueman378 Posted April 18, 2008 Share Posted April 18, 2008 'text' => '<a href="http://avengermxboard.com/support/index.php'', 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . 'live_support2.gif', IMAGE_LIVE_SUPPORT_NOT_AVAILABLE) . '[/url]'); lol ignore the enters try that or of course you may not even need the exact url if it is in the right place on your server Link to comment https://forums.phpfreaks.com/topic/101509-link-properties/#findComment-520130 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.