| PayPal Check Out Page style Problem |

Status
This thread has been locked.

IAmVolvic

Supreme
Feedback score
4
Posts
177
Reactions
49
Resources
0
Hey I want to remove some things on the check out page or completely change the layout

It looks like this atm
iSKwrQ0.png

But I want to remove the shipping since its a online purchase ( VIP )
Also want to change the YulxVol Test Store etc...
4KGQPWe.png



** 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>
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.
Status
This thread has been locked.
Top