Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: Google Checkout and PayPal Express buttons on shoppingcart.aspx

  1. #1
    hha is offline Junior Member
    Join Date
    Aug 2011
    Posts
    11

    Default Google Checkout and PayPal Express buttons on shoppingcart.aspx

    Finished setting up Google checkout on both on Google and Admin panel, but for some reason the Google Checkout and PayPal Express buttons on shoppingcart.aspx are not visible.

    Suggestion?

    Thanks.

    Btw both PayPal.Express.ShowOnCartPage and GoogleCheckout.ShowOnCartPage on AppConfig are set to true, with GoogleCheckout.MerchantKey and GoogleCheckout.MerchantID.
    Last edited by hha; 12-06-2011 at 11:18 AM.

  2. #2
    hha is offline Junior Member
    Join Date
    Aug 2011
    Posts
    11

    Default

    Turns out that on the shoppingcart.aspx.cs the following values were set to false. Setting them to true solved the problem.
    .
    .
    PayPalExpressSpan.Visible = true;
    PayPalExpressSpan2.Visible = true;
    .
    .
    GoogleCheckoutSpan.Visible = true;
    GoogleCheckoutSpan2.Visible = true;

    Tested the checkout process on the sandbox then set to production. It's working well.