prince 2006-10-26 01:47
Hello, Can someone please let me know how to add my personal contact information under the contacts link. on the left hand side of the form. Thanks Aj
Aj 2006-10-26 08:46
prince - Admin -> Categories-> contact -> edit (little button on right) -> enter your text or description in "Full description" field -> save (gray button on bottom)
prince 2006-10-26 17:17
Hey Claps, Thanks so much, I didn't even notice that before. Aj
prince 2006-11-02 06:27
Hey Claps, can u please help me. here is my messages.tpl file <!-- BEGIN ORDER_PAYPAL --> <div id="message"> <div id="ok"> <form target="paypal" name="_$iOrder" action="https://www.paypal.com/cgi-bin/webscr";;; method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="$config[email]"> <input type="hidden" name="item_name" value="Order ID $iOrder"> <input type="hidden" name="currency_code" value="GBP"> <input type="hidden" name="amount" value="$aList[fSummary]"> <input type="hidden" name="shipping" value="$aData[fCourierPrice]"> <input type="hidden" name="no_note" value="1"> <input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but6.gif";;; name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form><br /> $lang[Order_finished]<br /> <a href="javascript:windowNew( '?p=ordersWindowPrint&iOrder=$iOrder' );">» $lang[Order_print]</a><br /> <a href="?p=">$lang[Homepage]</a> </div> </div> <!-- END ORDER_PAYPAL --> <!-- BEGIN DONE --> <div id="message"> <div id="ok"> $lang[operation_completed]<br /> <a href="?p=$link">« $lang[operation_go_back]</a> </div> </div> <!-- END DONE --> and my orders.php if( checkOrderFields( $_POST ) === true && checkOrderProducts( $iOrder ) === true ){ saveOrder( $iOrder, $_POST ); //--------- Start PayPal Code $aData = throwOrder( $iOrder ); listBasket( $iOrder); $aData['fSummary'] = sprintf( '%01.2f', $aData['fCourierPrice'] + $aList['fSummary'] ); if( $aData['fCourierPrice'] > 0 ){ $content .= $tpl->tbHtml( 'messages.tpl', 'ORDER_PAYPAL' ); } else //-------- End PayPal Code $content .= $tpl->tbHtml( 'messages.tpl', 'ORDER_SAVED' ); No paypal button shows up, please help. Thanks Aj » http://beckiesbliss.com/cart
aj