更改Magento中结帐按钮的显示顺序

Dol*_*lly 4 shopping-cart magento

我需要按顺序在购物车页面中放置结帐按钮

1) Proceed to checkout 
2) Google checkout 
3) Paypal Express
Run Code Online (Sandbox Code Playgroud)

checkout.xml里面

      <checkout_cart_index>
          <block type="core/text_list" name="checkout.cart.methods" as="methods" translate="label">
                <label>Payment Methods After Checkout Button</label>
                <block type="checkout/onepage_link" name="checkout.cart.methods.onepage"  as="testproceed" after="-" template="checkout/onepage/link.phtml"/>
                <block type="checkout/multishipping_link" name="checkout.cart.methods.multishipping" template="checkout/multishipping/link.phtml"/>
            </block>
Run Code Online (Sandbox Code Playgroud)

googlecheckout.xml

     <reference name="checkout.cart.methods">
        <block type="googlecheckout/link" name="checkout.cart.methods.googlecheckout.bottom" after="testproceed" as="testgoogle" template="googlecheckout/link.phtml"/>
    </reference>
Run Code Online (Sandbox Code Playgroud)

paypal.xml

    <reference name="checkout.cart.methods">
        <block type="paypal/express_shortcut" name="checkout.cart.methods.paypal_express.bottom" as="testpaypal"  after="testgoogle"  template="paypal/express/shortcut.phtml">
            <action method="setIsQuoteAllowed"><value>1</value></action>
             <action method="setIsInCatalogProduct"><value>1</value></action>
                <action method="setShowOrPosition"><value>before</value></action>
        </block>
    </reference>
Run Code Online (Sandbox Code Playgroud)

但没有得到正确的顺序.请帮忙..

Dol*_*lly 5

我刚改变

      <block type="paypal/express_shortcut" after="checkout.cart.methods.googlecheckout.bottom"  name="checkout.cart.methods.paypal_express.bottom"  template="paypal/express/shortcut.phtml">
Run Code Online (Sandbox Code Playgroud)