Its actually FEC v 1.9.5
Printable View
Its actually FEC v 1.9.5
How can I make changes to login.php template file to make it go to "ACCOUNT" page when they log-in?
What I mean is that when you login to any store and you just come to check your orders, etc. and you don't have anything in your shopping cart, the system will direct you automatically to the index page, which I don't want. Just in case, I don't want this because I have a non-SSL sidebox which I can't change the link to https because it won't work.
I am using latest fec with 1.5 and have just noticed on Checkout Without An Account I have 2 State/province boxes 1 is a drop down and the other is a normal box that needs filling in ..I have checked it against another site and that is OK ..Have also reloaded all FEC files too
any ideas please
thanks
Andy
Can't edit but have found if I change countries it's OK again
@ideagirl Could you get by without showing the sidebox on non SSL pages. Using an if else statement?
Sorry it's a short answer but posting for a mobile is limiting.
I am sure it listed in the FAQ
I have an issue with the shipping address being dropped if the customer navigates away from the check out page to add something else to the cart. If they have changed the address add something else to the cart and then return to the checkout page the address has defaulted back to the primary address of the customer and not kept the address they changed to.
How can we keep the content of the final page - shopping cart and addresses and notes from being lost?
Hope this helps
http://www.zen-cart.com/content.php?...-my-sideboxes-
appear-only-when-a-visitor-is-logged-in
Again posting on the go, sorry for the short answer.
I don't think this will solve the problem (I was so happy when thought it might).Quote:
appear-only-when-a-visitor-is-logged-in
See, I don't want to hide the sidebox for non logged users. The problem is that I had hidden the sidebox from SSL pages to avoid the issue (the whole sidecolumn BTW). But when a customer logs in (without having anything in their cart, just going directly) the system will send them to the main page with SSL (https://) and then the non-encrypted warning shows up.
@ Ideasgirl
Ah! I see, then would something like this help then. I'm at home now and can give you a fuller answer
If you use scripts in side it I wouls wrap the scriptCode:<?php // If page is SSL then use Secure Code
if($_SERVER['HTTPS']=='on'){
echo '<div class="sslon">';
echo '<p><strong>Your are on a secure SSL connection!</strong><br />Some social link providers do not supply a secure link to page data. Thank you</p>';
echo '</div>';
}
else { // Else use Non-SSLCode
echo '<div class="ssloff">';
//echo '<strong>Put whatever you like.</strong>';
echo '<table width="100%" border="0" cellspacing="5px" cellpadding="5px">';
echo '<tr>';
echo '<td>I used a table</td>';
echo '<td>It was on a main page</td>';
echo '</tr>';
echo '<tr>';
echo '<td>You could use this in your sidebox</td>';
echo '<td>It can hide text only or scripts</td>';
echo '</tr>';
echo '</table>';
echo '</div>';
} // End if
?>
Again, sorry for the short answers earlier hope this covers it for you.Code:<script type="text/javascript">//<![CDATA[
Whatever code
//]]></script>
BTW: like your store layout and colour scheme.