Edit Buy One Now Button to "More Details" take shopper to Product Display Page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Spinner
    Mini Mivite

    • Oct 2011
    • 45

    #1

    Edit Buy One Now Button to "More Details" take shopper to Product Display Page

    Hello all,I would like to edit the Buy One Now Button on the Category page so that it says More Details and takes shopper to the Product Listing Page. I found the code for the Buy One Now Button on the buttons tab, but I do not know what to changes to make to the code. Any help would be appreciated.Thank you! Spinner
  • Bruce - PhosphorMedia
    Developer Partner











    • Mar 2006
    • 11257

    #2
    Re: Edit Buy One Now Button to "More Details" take shopper to Product Display Page

    You need to find the code that Calls the button on the Category's page Category Product list Layout template. It will look like this (you might need to switch to Advance Mode):

    Code:
    				<form method="post" action="&mvte:global:secure_sessionurl;Screen=OINF">
    				<input type="hidden" name="Old_Screen" value="&mvte:global:Screen;" />
    				<input type="hidden" name="Old_Search" value="&mvte:global:Search;" />
    				<input type="hidden" name="Action" value="ADPR" />
    				<input type="hidden" name="Quantity" value="1" />
    				<input type="hidden" name="Attributes" value="Yes" />
    				<input type="hidden" name="Store_Code" value="&mvte:store:code;" />
    				<input type="hidden" name="Product_Code" value="&mvte:product:code;" />
    				<input type="hidden" name="Current_Product_Code" value="&mvte:global:Product_Code;" />
    				<input type="hidden" name="Category_Code" value="&mvte:global:Category_Code;" />
    				<input type="hidden" name="Offset" value="&mvte:global:CatListingOffset;" />
    				<input type="hidden" name="AllOffset" value="&mvte:global:AllOffset;" />
    				<input type="hidden" name="CatListingOffset" value="&mvte:global:CatListingOffset;" />
    				<input type="hidden" name="RelatedOffset" value="&mvte:global:RelatedOffset;" />
    				<input type="hidden" name="SearchOffset" value="&mvte:global:SearchOffset;" />
    				<mvt:item name="buttons" param="BuyNowE" />
    				</form>
    Change it to:

    Code:
    				<form method="post" action="&mvte:global:secure_sessionurl;Screen=PROD">
    				<input type="hidden" name="Product_Code" value="&mvte:product:code;" />
    				<input type="hidden" name="Category_Code" value="&mvte:global:Category_Code;" />
    				<input type="hidden" name="Offset" value="&mvte:global:CatListingOffset;" />
    				<input type="hidden" name="AllOffset" value="&mvte:global:AllOffset;" />
    				<input type="hidden" name="CatListingOffset" value="&mvte:global:CatListingOffset;" />
    				<input type="submit" value="More Information" class="button" />
    				</form>
    Bruce Golub
    Phosphor Media - "Your Success is our Business"

    Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
    phosphormedia.com

    Comment

    Working...
    X