Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
snippets:misc_cart_and_checkout:removing_paypal_from_the_cart [2015/02/03 04:34] – [Step 1: Add a style to your cart template] adamsnippets:misc_cart_and_checkout:removing_paypal_from_the_cart [2017/04/26 07:02] (current) – external edit 127.0.0.1
Line 17: Line 17:
 <wrap hi> Taking this approach actually makes the customer have to enter more information, and doesn't show PayPal immediately on the cart template which could hurt conversions if someone is looking specifically for PayPal.</wrap> <wrap hi> Taking this approach actually makes the customer have to enter more information, and doesn't show PayPal immediately on the cart template which could hurt conversions if someone is looking specifically for PayPal.</wrap>
  
-==== Step 1: Add a style to your store configuration ====+==== Step 1: Add a style to your cart template ====
  
-Within your store's FoxyCart administrationadd the following within the configuration page to the "add custom code to the header or footer" option - in the "header" textbox:+On your cart templatepaste the following in the ''<head>'' section, after your ''<title>'' tag and before any javascript includes:
  
 <code css> <code css>
 <style type="text/css" > <style type="text/css" >
-  .fc-action--payment--or, .fc-action--payment--paypal-express-checkout {+  #fc_cart_container a.fc_cart_checkout_paypal, .fc_cart_checkout_or { 
 +    display:none !important; 
 +  } 
 +</style> 
 +</code> 
 + 
 +If using FoxyCart version 2.0, within your store's FoxyCart administration, add the following within the configuration page to the "add custom code to the header or footer" option - to the "header" textbox: 
 + 
 +<code css> 
 +<style type="text/css"
 +  .fc-action--payment--or, .fc-action--payment--paypal-express-checkout, .fc-action--payment--paypal-ec {
     display:none !important;     display:none !important;
   }   }

Site Tools