【问题标题】:how to hide paypal button code from user?如何向用户隐藏贝宝按钮代码?
【发布时间】:2014-06-21 08:48:06
【问题描述】:

如何对用户隐藏 paypal 按钮代码?

例如 codecanyon.net,当我购买某些商品时,我看不到 paypal 表单,我该怎么做?

我的用户将编辑价格和货币代码

我使用的代码是这样的。

<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name" value="Teddy Bear">
<input type="hidden" name="amount" value="12.99">
<input type="image" src="http://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>

【问题讨论】:

  • 为什么不把风格放在上面呢? style='可见性:隐藏' ?
  • 用户将使用检查元素进行编辑。
  • 然后放置一个 php 条件,在您进行编辑操作时将其隐藏
  • 你能给我演示一下吗?
  • 您已经有了这个想法,如果它适合您的代码,您将如何使用它现在取决于您。

标签: php paypal


【解决方案1】:
<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="text" name="currency_code" value="USD"> 
<input type="hidden" name="item_name" value="Teddy Bear">
<input type="text" name="amount" value="12.99">

<!-- for submit button -->
<input type="submit" name="submit" value="Pay now"> 

<!-- for image button -->
<input type="image" src="your button image url" border="0" name="submit" alt="Give here some title">
</form>

对于货币,您应该使用选择框

<input type="text" name="currency_code" value="USD">

<select name="currency_code" >
<option value="USD">USD</option>
</select>

【讨论】:

    【解决方案2】:

    当您使用按钮工具创建保存按钮时,所有敏感数据都存储在帐户中,并被“按钮 ID”替换。这是一个例子:

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="L7NSNLBNU69AC">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    

    【讨论】:

      【解决方案3】:

      用途:

      <input type="image" src="your image url" border="0" name="submit" alt="Pay Now">
      

      【讨论】:

        猜你喜欢
        • 2020-03-17
        • 2023-01-28
        • 2010-12-31
        • 2013-01-16
        • 2020-06-09
        • 2013-02-06
        • 2015-11-01
        • 2014-05-19
        • 1970-01-01
        相关资源
        最近更新 更多