Adding paypal to a site already upgraded

hi
the site ceramicplanet.co.uk is about to open an ebay shop so we openned a paypal account and thought we'd add it to the site as an extra payment option for customers but I and paypal uk are having trouble.
we went live just taking card payments so I removed the payment method.
Now I want to add paypal ive added the original radio buttons with the options
   <div class="item">
    <label>Payment Method <span class="req">*</span></label><br />
    <input checked="checked" type="radio" name="PaymentMethodType" id="PaymentMethodType_1" value="1" />Credit Card<br />
    <input id="PaymentMethodType" type="radio" name="PaymentMethodType" value="8" />Direct Debit<br />
    <input type="radio" name="PaymentMethodType" id="PaymentMethodType_5" value="5" />PayPal<br />
    </div>
and I follwed the instructions on implementing paypal http://kb.worldsecuresystems.com/kb/set-paypal-standard.html
however Its still not obvious to me how the customer is meant to use the paypal option on the checkout pay?
Im under the impression they are taken to a paypal site to complete the order and then back to the site but how?
do they select the radio button and press the submit button because all that happens is the page states the credit card details havent been filled in and that they are required.
Am i meant to add a paypal button to the page? I havent see anything on business catalyst saying i have to but when settting up the paypal account they seem to have a lot of button options to add to your site?
Is it something to do with my order form? Ive changed it over time to suite our look but cant see why that would have anything to do with paypal not working.
Also I work in the UK. whenever i talk to people/services like paypal uk about business catalyst most dont know alot about the system. Im assuming its more an american and australian thing but im asking there isnt anything special I have to do to make paypal work do I? the service advisor has asked me to keep him updated on this intergration as he says they have had problems the last few months trying to implement paypal on catalyst sites, Im guessing this is them not being use to your systems but thought id put it out there that paypal dont seem up to date with catalyst. 
any help appreciated
Dave
ps just read this on http://www.siroccowebdesign.com.au/business-catalyst-tutorials/tag/Payment_Gateways/
Please note that non-seamless payment gateways such as PayPal can only be used within the online shop and the checkout process. This type of payment gateway by its nature, cannot be used in conjunction with the web forms functionality to process credit card payments.
So now im abit lost on how to implement paypal?

just to let you guys know I was missing parts of java from my page. This is what was originally at the bottom of the reg-buy template.
  <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
    <script language="javascript" type="text/javascript">
                              //<![CDATA[
                              var submitcount42059 = 0;function checkWholeForm42059(theForm){var why = "";if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name");if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); if (!theForm.PaymentMethodType || getRadioSelected(theForm.PaymentMethodType) == 1) { if (theForm.CardName) why += isEmpty(theForm.CardName.value, "Name on Card"); if (theForm.CardNumber) why += isNumeric(theForm.CardNumber.value, "Card Number"); if (theForm.Amount) why += isCurrency(theForm.Amount.value, "Amount"); } if (theForm.PaymentMethodType) why += checkSelected(theForm.PaymentMethodType, "Payment Method");if(why != ""){alert(why);return false;}if(submitcount42059 == 0){submitcount42059++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
                              // Credit Card info is not required if paying by PayPal, Hosted Credit Card, COD etc
                              function ShowCCFields(val) {
                                        if (!document.getElementById('paymentdiv'))
                                                  return;  
                                        if (val != 1)
                                                  document.getElementById('paymentdiv').style.display = 'none';
                                        else
                                                  document.getElementById('paymentdiv').style.display = 'inline';
                              //]]>
                    </script>
now my only problem is that being a UK site we have debit card sales and of course this need the card details box open when the radio button is picked so i added this line to the java
  if (val != 1)
        if (val != 8)
  document.getElementById('paymentdiv').style.display = 'none';
  else
  document.getElementById('paymentdiv').style.display = 'inline';
  //]]>
  </script>
however I dont think ive added the line correctly because when testing the site if I pick paypal the card details collapes. If i then select credit card the card details box does not expand, but it does expand for the direct debit if selected. How should I add the (val !=8) so that the credit card val != 1 still works.
dave

Similar Messages

  • Adding Paypal onto your site?

    Hi,
    I'm just learning iWeb and am working on creating a website for my soap and beauty products. When I'm done I will be publishing to my own domain name and I do not have a Mac account. Is it possible to add paypal onto my site? If so does anyone know how you go about doing this or the basics?
    Thanks,
    S.

    Varkgirl,
    Your website is so colourful and fun, I love it. Did you make that using iWeb? Thanks for the link. Between both these answers I'm sure I'll find out how to export my pages (I know I have to use an FTP server like Cyberduck) to an site other than .Mac and how to place pictures in properly. I'm having problems with that already. They don't seem to fit in the template boxes right and I've tried dragging in and out on both picture and the frame itself.
    S.

  • Adding a file to an already created Archive throws error

    Hello Experts,
    In one of the WLST python scripts, we had a piece of code which was adding a file to an already created archive. Below is the code snippet:
    import zipfile
    try:
    conn='1.properties'
    fileName='/home/pbnagara/temp/Zip1.par'
    myZip = zipfile.ZipFile(fileName, mode='a')
    myZip.write(conn)
    myZip.close()
    except Exception:
    print 'Exception occurred while writing to Zip file: ' + fileName
    --> it makes use of the standard python module [zipfile] to add a file to the archive.
    This code has started failing [for some strange unknown reason] when we upgraded.
    The same script works fine in a standalone mode[using the system's default python packages] but fails only when run within WLST.
    Does WLST package a different set of zipfile libraries? Can anyone point out what might be going wrong here?

    I did get a reply from someone on the jfreechart forum, but need to ask more questions. This was his reply:
    Hi Allyson,
    You are trying to add a (subclass of) JFrame to a JPanel...that won't work, of course, and Java tells you so.
    You need to create a ChartPanel to display your chart. This is a subclass of JComponent, which you can happily add to a JPanel (or any other container).
    Regards,
    Dave Gilbert
    Here is the code for the method:
    private void LineChartFrame() {
    double[][] data = new double[][] {
    { 1.0, 4.0, 3.0, 5.0, 5.0, 7.0, 7.0, 8.0 },
    { 5.0, 7.0, 6.0, 8.0, 4.0, 4.0, 2.0, 1.0 },
    { 4.0, 3.0, 2.0, 3.0, 6.0, 3.0, 4.0, 3.0 }
    DefaultCategoryDataset dataset = new DefaultCategoryDataset(data);
    // set the series names...
    String[] seriesNames = new String[] { "First", "Second", "Third" };
    dataset.setSeriesNames(seriesNames);
    // set the category names...
    String[] categories = new String[] { "Type 1", "Type 2", "Type 3", "Type 4", "Type 5", "Type 6", "Type 7", "Type 8" };
    dataset.setCategories(categories);
    // create the chart...
    chart = ChartFactory.createLineChart(
    "Line Chart Demo 1", // chart title
    "Category", // domain axis label
    "Value", // range axis label
    dataset, // data
    true, // include legend
    true, // tooltips
    false); // urls
    chartPanel = new ChartPanel(chart);
    chartPanel.setPreferredSize(new java.awt.Dimension(500, 270));
    setContentPane(chartPanel);
    }And I tried this to add it to my panel:
    jPanel1.add(chartPanel, null);But I get this error:
    java.lang.NullPointerException
    ChartPanel is defined globally in this file.
    jPanel1 is my main panel that I want to add the chart to.
    I am putting my last duke dollar on this in the hopes that someone can help. Thanks.
    Allyson

  • Issue in Custom Blog site definition based on SharePoint 2010 blog site definition after migrating the sites to SharePoint 2013 and site collection upgrade

    I have created a custom blog site definition using SharePoint 2010 blog site definition with Configuration ID 31 in onet.xml (new value). This was working fine for SharePoint 2010.
    We created new SharePoint 2013 farm and deployed the all Custom solutions in
    14/15 folders. After migrating the sites to SharePoint 2013 using Content DB approach, site created previously using my custom definition are working fine.
    But after running site collection upgrade these sites stop working. When I post a comment then comments not getting listed on post detail page. However comments are getting added to Comments List but
    PostTitle column  of Comment is not getting populated.
    Also, when we create a new site in SharePoint 2013 using my custom blog template then that is also not getting provisioned.  default.aspx and look-up between post and comment list are not working.
    If any one has faced such issue then please share your findings and any solution to fix this.
    Thanks in Advance :)

    Hi ,
    According to your description, my understanding is that the blog based on custom blog site definition didn’t work correctly after migrating custom blog site definition to SharePoint 2013.
    If you customized the Onet.xml file in a previous version's site definition, you should modify some sections in the file to work in the current version, like  <BaseTypes> and  <ListTemplate>  etc. More information, please refer
    to the link below:
    http://msdn.microsoft.com/en-us/library/office/aa543837(v=office.14).aspx
    For that the PostTitle column  of Comment is not getting populated, please try to modify the view, then compare the result.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Move a site from one Mac to another without losing sites already there

    I would like to move a site from one Mac to another without losing the websites that I have already built on the other Mac. Transfering the Domain file is not helping. Is there away to open the new domain file and adding those sites to the domain file associated with this copy of iWeb? I have searched the discussions but am not seeing any clear answers. They all seam to invilve new users or losing the sites already on that mac.

    I seem to have solved my own problem. This may help other users. I found a tip and a web page that suggested moving the Domain File from the application support folder to another on the desktop on one of the computers and then putting the 2nd Domain File from the other computer in a separate folder on the desktop. This is because you can not change the name of the Domain File . Then by double clicking the Domain File with the site wanted, iWeb opens with that set of sites.
    I started with what was to be the new master Domain File and stated a new site with a blank page. saved, did not publish and closed iWeb. Opened from the other Domain File and then clicked and opened the site and page I wanted, then selected all, copied all and closed iweb. Went back to the master Domain File , opened iWeb using that, went to the blank page and pasted in the page from the other Domain File from the other computer. Saved, closed iWeb and repeated till I had all pages. Changed the names to match the sites and Pages. I did not allow iWeb to publish during this process. Took all of 10 minutes and I now have a Domain File with all the sites in one place. I then copied this file back into its original location in Library/application support/iWeb on both computers. I now have all sites in iWeb on both computers.

  • SharePoint 2013 site collection 'upgrade completed with errors'

    Hi All, 
    I am in process to upgrade SharePoint 2010 to SharePoint 2013 with all steps as mentioned in TechNet. 
    I was able to get all the SP2010 UI in SP2013 environment. However, when I navigated to top level site and clicked on “Site
    Collection health checks”. In SP2010 environment I never used (as Farm Admin) any Video content type. It belongs
    to out-of-the-box "digital asset content types" and cannot be deleted.
    Therefore I changed the name of Video to our department name like "Video - Company" and ran the site collection health check again. This time there was no conflict for content types. 
    After ran the site collection upgrade I got following error. 
    -------------------------------------------START------------------------------------------
    05/05/2014 14:34:28.66 OWSTIMER (0x1474)
    0x123C SharePoint Foundation Upgrade
    SPFeatureDefinition aj2bj
    ERROR Feature upgrade action 'AddContentTypeField' threw an exception upgrading Feature 'CTypes' (Id: 15/'695b6570-a48b-4a8e-8ea5-26ea7fc1d162') in Site 'http://sp13fe01-dev': Field type
    Rating is not installed properly. Go to the list settings page to delete this field.
    32d48d9c-70d4-f09a-6073-526808f844be
    05/05/2014 14:34:53.04 OWSTIMER (0x1474)
    0x123C SharePoint Foundation Upgrade
    SPSiteWssSequence2 ajy6m
    ERROR Feature upgrade incomplete for Feature 'CTypes' (Id: 15/'695b6570-a48b-4a8e-8ea5-26ea7fc1d162') in Site 'http://sp13fe01-dev'. Exception: Field type Rating is not installed properly. Go to the list settings
    page to delete this field. 32d48d9c-70d4-f09a-6073-526808f844be
    05/05/2014 15:18:43.95 OWSTIMER (0x1474)
    0x123C SharePoint Foundation Upgrade
    SPManager ajxoe
    ERROR RunUpgradeSiteSession [SPSite Url=http://sp13fe01-dev] failed.
    32d48d9c-70d4-f09a-6073-526808f844be
    05/05/2014 15:18:44.16 OWSTIMER (0x1474)
    0x123C SharePoint Foundation Upgrade
    SPManager ajxoe
    ERROR Exception: Upgrade completed with errors.  Review the upgrade log file located in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS\SiteUpgrade-20140505-143330-61.log.  The
    number of errors and warnings is listed at the end of the upgrade log file.
    32d48d9c-70d4-f09a-6073-526808f844be
    05/05/2014 15:18:44.16 OWSTIMER (0x1474)
    0x123C SharePoint Foundation Upgrade
    SPManager ajxoe
    ERROR   at Microsoft.SharePoint.Upgrade.SPUpgradeSession.CheckPoint()     at Microsoft.SharePoint.Upgrade.SPUpgradeSession.LogEnd()     at Microsoft.SharePoint.Upgrade.SPManager.RunUpgradeSiteSessionCore(Object
    lockObject, SPSite site, SPUpgradeOperationFlags upgradeOperationFlags, Boolean checkConcurrentSiteUpgradeSessi
    32d48d9c-70d4-f09a-6073-526808f844be
    -----------------------------------END-------------------------------------
    Feature ID 695b6570-a48b-4a8e-8ea5-26ea7fc1d162 is Standard Content Type Definitions  https://social.technet.microsoft.com/wiki/contents/articles/7695.sharepoint-2010-list-of-features-id-displayname-and-scopes.aspx. 
    Any expert to solve the issue?? 
    Thank you. 
    regards, 
    Aroh Shukla

    Hi All and Inderjeet,
    Thanks for your reply and pointers. 
    I did follow the steps as mentioned in the links above. I used some third party solutions but not for any Video solution. I was able to successfully migrated the SP2010 (WSS_Content) to SP2013 (WSS_Content) environment a few weeks back with exactly same
    third party solutions and no site collection error:
    I renamed the default and out-of-the box video site content type as shown:
    I ran the "Site Collection Health Check" and did not receive any error as in my second screenshot. 
    But, after upgrade the Site Collection Upgrade and got the same errors. 
    I don't know if there is any SharePoint Server 2013 patch gave this error as I keep run the Windows Server 2012 (not running R2) and SharePoint Server 2013 regularly.  
    Can suggest how to resolve this error?
    Many Thanks!!
    --Aaroh 
    Aroh Shukla
    The same here. Opening a support ticket with MS.

  • Aperture 3 keeps crashing on me, consistently. More frequently after using Burn tool or skin smoothing - and even more often when I feather. What can I do? I already upgraded my RAM. I'm at a loss!

    Aperture 3 keeps crashing on me, consistently. More frequently after using Burn tool or skin smoothing - and even more often when I feather. What can I do? I already upgraded my RAM. I'm at a loss!

    4) When my computer crashes, once it starts again, it says "repairing" ... but I am not familiar with reparing permissions -- can you explain how I might do that?
    If you are running OS X Lion, then you can restart your computer and then press and hold the 'Option' key immediately after you hear the start up 'gong' (usually heard when grey screen shows as it restarts).
    You should see at least two Disks to choose from. Choose 'Recovery Disk' and wait for it to load, then choose 'Disk Utility' option in the Utilities dialog.
    Once Disk Utility loads, do the following:
    1 - In the left hand pane, choose your system partition (usually called either 'Macintosh HD' or 'Macintosh SSD'). Note - don't choose the actual hard drive listed above the partition when using Disk Utility in OS X Lion as this doesn't offer options for repairing due to it including the Recovery Disk you have loaded in memory.
    2 - Click the 'First Aid' tab
    3 - Click the 'Repair Disk Permissions' button in lower portion of main pane and allow to complete. Ideally, you will get a final message in main pane saying Disk Permissions are repaired.
    4 - At lower right of same pane, click the 'Repair Disk' button and allow to complete. Ideally, you will get a final message indicating that Disk Repair is completed and all appears to be good.
    5 - Quit Disk Utility > Close Utilities dialog window > Click 'Restart' button (confirm as needed).
    You should boot straight into the system partition when complete.
    Note - any red text in the main pane text while running the repairs will be issues and you will need to follow the advice given or post back.
    If you are running Snow Leopard; then (as David mentions) boot from your first OS X reinstall disc and run the Disk Utility the same way; except you select the actual hard drive listed at top of left pane (not the partition below it). This is because Snow Leopard does not use a 'Recovery Disk' partition and repairs can be run on the HD or SSD itself.
    Hope that helps.

  • I upgraded to Mavericks.  I just spent an hour in Pages.  Now I can't open my documents, it says I need to upgrade to a newer version.  It looks like the new 5.0 when I typed but it's saying I'm running 4.3.  the App store says I've already upgraded.  Hel

    I upgraded to Mavericks.  I just spent an hour in Pages.  Now I can't open my documents, it says I need to upgrade to a newer version.  It looks like the new 5.0 when I typed but it's saying I'm running 4.3.  the App store says I've already upgraded.  HelP

    Actually, there seems to be a bit of a bug.  Encountered this with a couple of files my wife made.  The files were set to "open with" the new Keynote, but clicking the file brought up this error.  Right-clicking and selecting "open with..." worked correctly.  I can only assume the OS was attempting to open the file with Keynote '09 despite the file property setting.
    Probably requires a Launch Services DB reset (although I haven't actually tried it on my wife's MBA yet...since she's still "working on stuff".  So I can't confirm if it will solve the problem).
    /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.fram ework/Support/lsregister -kill -r -domain local -domain system -domain user ; killall Dock

  • My Iphone and Ipad wouldn't appear in itunes when i connect them to my mac. I have already upgraded my itunes to the latest version. I have no problem synching my ipod though. Could it be because I am using an older mac? (Mac OS X version 10.4.11)?

    Neither my iphone nor my ipad would appear in itunes when i connect them to my mac. I have already upgraded my itunes to the latest version. I have no problem synching my ipod to itunes using the same mac though. Could it be because I am using an older mac? (Mac OS X version 10.4.11)?

    You need to be using a Mac OS X version at least as new as the one given in the device's original system requirements.
    (74595)

  • Get the current context of the site where web-part is added in the same site collection

    Hi,
    I'm creating a visual web-part in SharePoint 2013 using server object model (can't user COM as the code will run on the same server) to get all the members of "Members" group of the site/web wherever this web-part
    will be added (in the same site-collection), so it will take the context of the site wherever it is added.
    For Eg: I have a site collection "http://<Server_name>/sites/Finance" OR "http://<Server_name>/sites/Finance/Microsoft" OR some other subsite. I have used SPContext.Current property to get the current context
    , but no success :( . 
    I tried in SPSite: SPContext.Current.Site ; new SPSite(SPContext.Current.Web.URL) and many other combinations with SPSite.
    in SPWeb : site.openweb()
    But I'm always getting the URL as "http://<Server_name>/" and not the context where the web-part is added in the same site collection.
    Vipul Jain

    Hi Bjoern,
    Thanks for the reply. I'm able to get the access of members group through API's. Just wanted to know about the context in SPSite & SPWeb. As you suggested , is there no need to use SPSite ?
    using (SPWeb web = SPContext.Current.Web)
                            SPGroup membersGroup = web.Groups[web.Name + " Members"];                     
                            SPUserCollection lstMembers = web.Groups[web.Name + " Members"].Users;
                            foreach (SPUser member in lstMembers)
                                // add all the group users to the list                            
                                users.Add(member.Name);
    It's not working 
    Vipul Jain

  • Adding or reconfiguring some site of OC4J

    Hi,
    I'm going to add some new sites on my OC4J. I try to do it according to command line admin tool admin.jar. I can't
    What's correct syntax of adding/reconfiguring some OC4J site. I'll be glad seeing some example
    Thanks in advance
    Krzysztof

    Hi,
    According to your post, my understanding is that Site does not load after some minutes of creation or after restart the server.
    Please make sure you create a test environment for existing production site correctly.
    Here are some great articles for your reference:
    Moving content between SharePoint environments
    Copy SharePoint production data to a test environment
    Build a SharePoint 2010 Test/Development Farm
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support
    Hello Linda Li,
    I follwed that steps to create my test enviroment... and I have recreated it some times using that same steps, but the problem persits. After some minutes or after I restart the SharePoint server the site does not load.
    Melvintt
    MCTS, Windows Server 2008 R2: Network Infrastructure
    MCTS, Windows Server 2008 R2: Active Directory, Configuring

  • Another site already exists at . Delete this site before attempting to create a new site with the same URL

    Hi Everyone,
    It would be great if you can help me with the below.
    Few days ago one of our content db went into suspect mode.  Our DB team had resolved the issue. But one of the sites that was created probably around the same time is no more available. When I try to create a site on the same URL, I get the following
    error.
    Another site already exists at <URL>. Delete this site before attempting to create a new site with the same URL
    When I try to delete the site or if I try to view the details of the site using Central Administration, I can find the site, but it doesn't display any details like Title, DB Name etc.
    If I use stsad -o enumsites command to list ll the site, for the given site I get the following error:
    <nativehr>0x80070002</nativehr><nativestack></nativestack>There is no Web named <URL>.
    I am not even able to delete it using Powershell.
    Please suggest.
    Thanks,
    Uttkarsh

    You might be dealing with orphaned site. Go through the following blog post and see if it helps you delete the orphaned sites.
    http://www.cjvandyk.com/blog/Lists/Posts/Post.aspx?ID=299
    Amit

  • My mac is running 10.7.2 and wondering why the "find my mac" feature is not working. Instead, it says I need to system upgrade requires.. I believe it's already upgraded together with the 10.7.2

    My mac is running 10.7.2 and wondering why the "find my mac" feature is not working. Instead, it says I need to system upgrade requires.. I believe it's already upgraded together with the 10.7.2

    i get the spinning beach ball in all of my applications
    have a look at this article: Troubleshoot the spinning beach ball

  • Adding PayPal to my page pastes some unwanted text

    Hello,
    When i add PayPal Buy (or else) on my page, it pastes content from my website. Black text, unwanted. I tried adding PayPal html also. The same problem.
    Check out the picture.
    Dropbox - Screenshot 2014-11-20 18.06.17.png

    Seems something related to the ID you are using , can you please try with new page , add the button and then check ?
    Thanks,
    Sanjit

  • When I try to update my iPod touch I get a message that the iTunes is already upgraded. My iPod is 4.1

    When I try to update my iPod touch I get a message that the iTunes is already upgraded. My iPod is 4.1

    Do you have a 2G, 3G or 4G iPod?
    A 2G can go to 4.2.1
    A 3G and 4G ro 5.1
    Identify yours yours here:
    Identifying iPod models
    Do you have iTunes 10.6 on the computer?
    What computer OS and version do you have?
    If a Mac OSX 10.4.11 you need to update to t least 10.5.8. With 10.4.11 you can only go to iTunes 9.X and going beyond 4.1 requires 10.X

Maybe you are looking for

  • How to execute a scenario from Windows command prompt

    Hi, I have a package which is executing fine from Designer. But the same scenario if I am trying to execute from windows command prompt, then it is giving error. The package is getting a refresh variable, passing to interface which is creating a file

  • Manage content of web-app

    Hi All, I am developing a web application using Spring/Hibernate frameworks. My application is going to be a public facing application. The pages on this application can be divided into categories. Pre-login & Post login. Pre-Login pages: These are m

  • How do I connect the MBP?

    Hey guys, I'm new to this so bear with me. I wanna connect my MacBook Pro to a Bose system through the optical digital audio on the MBP. How would i go about doing this? Do I need extra cables? If so, which ones? this is the Bose system I have at hom

  • Receiver Agreement error

    Hi friends, I have few scenarios on jdbc-rfc.. for now i can say 6 similar kind at the receiver.. and the rfc is also same.. Now first interface is sucessfull. for the second one i am trying to create new receiver agreement then it is saying it is al

  • Volumes Greyed out in disk utility

    tried to do averify and repair disk when it finished the volumes/partitions are greyed out