Hey I want to remove some things on the check out page or completely change the layout
It looks like this atm
But I want to remove the shipping since its a online purchase ( VIP )
Also want to change the YulxVol Test Store etc...
** Both images are test pages
HTML/PHP CODE
It looks like this atm
But I want to remove the shipping since its a online purchase ( VIP )
Also want to change the YulxVol Test Store etc...
** Both images are test pages
HTML/PHP CODE
PHP:
<form id="form" action="https://www.<?= $production ? "" : "sandbox." ?>paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="business" value="<?= $email ?>"/>
<input type="hidden" name="description" value="<?= $description ?>"/>
<input type="hidden" name="notify_url" value="https://<?= $_SERVER['HTTP_HOST'] ?>/ipn.php"/>
<input type="hidden" name="cancel_return" value="https://<?= $_SERVER['HTTP_HOST'] ?>?cancelled"/>
<input type="hidden" name="return" value="https://<?= $_SERVER['HTTP_HOST'] ?>">
<input type="hidden" name="rm" value="2"/> <input type="hidden" name="lc" value="1"/>
<input type="hidden" name="no_note" value="1"/> <input type="hidden" name="currency_code" value="USD"/>
<input type="hidden" name="page_style" value="paypal"/> <input type="hidden" name="charset" value="utf-8"/>
<input type="hidden" name="item_name" value="<?= $storeinfo->product_name ?>"/>
<input type="hidden" name="item_number" value="<?= $storeinfo->product_id ?>"/>
<input type="hidden" name="quantity" value="1"> <input type="hidden" name="cbt" value="Back to the website"/>
<input type="hidden" value="_xclick" name="cmd"/>
<input type="hidden" name="amount" value="<?= $storeinfo->product_price ?>"/>
<input type="hidden" name="invoice" value='<?= $storeinfo->invoiceid ?>'/>
</form>
