Announcement

Collapse
No announcement yet.

I only have PayPal Express as a payment method but I still get the option to go ...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    I only have PayPal Express as a payment method but I still get the option to go ...

    I only have PayPal Express as a payment method but I still get the option to go through checkout. How can I stop this?

    There are three areas that will allow a customer to go through the normal SellerDeck checkout process where the 'Checkout with Paypal' button appears - the first checkout page, 'View Cart' page and 'Add to cart confirmation' page (only used when the shopping mode is set to 'Quantity on confirmation page').

    To remove the 'Next' button from the first checkout page:
    • on the 'Design' tab and select 'Checkout 0' from the 'Select Page Type' drop-down box
    • on the 'Preview Pane' scroll to the bottom until you see the 'Checkout Now' buttons
    • click on one of the 'Checkout Now' buttons. This will put the 'Checkout Now Button' layout into the 'Layout Code' window
    • click on the 'Navigate to parent' icon so that the 'Order 00 Bulk Area' layout is displayed in the 'Layout Code' window. Alternatively, you can click on the layout name in the layout breadcrumb at the bottom of the screen

    • locate the following code:

    • move the '/block' tag so that it is on a new line above '<td nowrap="nowrap">'
    • comment out the code from '<td nowrap="nowrap">' down to the '</td>' tag after the 'Checkout Next Button' variable, so it looks like:

    • Here is the code to replace the above with:


    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22IsPaypalProEnabled%22%20%2f%3e">
          <td align="right">
          <actinic:variable name="PaypalProCheckoutButton" value="Paypal Pro Checkout Button" />
           </td>
          </actinic:block>
          <!--<td nowrap="nowrap">
          - or -
          </td>
          <td align="right">
          <actinic:variable name="CheckoutButtons" value="Checkout Next Button" />
          </td>-->
          </tr>
          </table>
    • click 'Apply'



    To remove the 'Checkout Now' button from the 'View Cart' page:
    • on the 'Design' tab and select 'Shopping Cart' from the 'Select Page Type' drop-down box
    • on the 'Preview Pane' scroll to the bottom until you see the 'Checkout Now' buttons
    • click on one of the 'Checkout Now' buttons. This will put the 'Checkout Now Button' layout into the 'Layout Code' window
    • click on the 'Navigate to parent' icon so that the 'View Cart Bulk Area' layout is displayed in the 'Layout Code' window. Alternatively, you can click on the layout name in the layout breadcrumb at the bottom of the screen
    • locate the following code:

    • move the 'block if' tag to a new line directly above the 'Paypal Pro Checkout Button' variable
    • comment out the code from '<Actinic:REMOVE TAG="CheckoutButton">' down to the 2nd '<br/>' tag so it looks like:

    • Here is the code to replace the above with:


    Code:
    <td align="center" valign="top">
          <!--<Actinic:REMOVE TAG="CheckoutButton">
          <actinic:variable name="ShoppingCartButton" value="Checkout Now Button" />
          </Actinic:REMOVE>
          <Actinic:REMOVE TAG="CheckoutButtonDisabled">
          <actinic:variable name="ShoppingCartButton" value="Checkout Now Button Disabled" />
          </Actinic:REMOVE>
          <br />
          - or -
          <br />-->
          <actinic:block if="%3cactinic%3avariable%20name%3d%22IsPaypalProEnabled%22%20%2f%3e">
          <actinic:variable name="PaypalProCheckoutButton" value="Paypal Pro Checkout Button" />
          </actinic:block>
          </td>
          </tr>
          </table>
    • click 'Apply'



    To remove the 'Checkout Now' button from the 'Confirmation' page (only used when shopping mode is set to 'Quantity on Confirmation Page'):
    • on the 'Design' tab and select 'Add to Cart Confirmation' from the 'Select Page Type' drop-down box
    • on the 'Preview Pane' scroll to the bottom until you see the 'Checkout Now' button
    • click on the 'Checkout Now' button. This will put the 'Checkout Now Button' layout into the 'Layout Code' window
    • click on the 'Navigate to parent' icon so that the 'Order Details Bulk Area' layout is displayed in the 'Layout Code' window. Alternatively, you can click on the layout name in the layout breadcrumb at the bottom of the screen
    • locate the following code:

    • move the 'block if' tag to a new line directly after:


    - or -
    </td>
    • comment out the code from the 'Checkout Now Button' variable to '- or -' so it looks like the following:



    # Here is the code to replace the above:

    Code:
    <table border="0">
    <tr>
    <td>
    <actinic:variable name="ShoppingCartButton" value="Confirm Button" />
    <!--<actinic:variable name="ShoppingCartButton" value="Checkout Now Button" />
    </td>
    <td>
    - or - -->
    </td>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22IsPaypalProEnabled%22%20%2f%3e">
    <td>
    <actinic:variable name="PaypalProCheckoutButton" value="Paypal Pro Checkout Button" />
    </td>
    </actinic:block>
    • click 'Apply'
    • update the site.
    Attached Files
Working...
X