Landing Page with Buy now Buttons for products?

Hi,
I've been searching all morning and was hoping someone could point me in the right direction please.
We have 1000 products on BC and I wanted to create a custom landing style page offering 3 set products that people can click to buy now. ie just a simple buy now button.
I don't want it to look like our normal small or large catalogue but as a separate landing page.
I would like when the customers to click Buy Now or Add to Cart that it adds them to the cart.
e.g
blah blah blah
large image of the item
underneath = Buy Now / Add to cart
blah blah blah
large image of the item
underneath = Buy Now / Add to cart
etc.
I tried using {module_product} inseting the item but it only shows a tiny pic and has no buy now button.
I also tried inserting an actual html code of the products button, but it didn't work either.
<div><img src="/images/btn_addtocart.png" alt="add to cart" onclick="AddToCart(98416,1375845,'',3,'','',false);return false;" /></div>
If I just create them as text is there a product specific buy now button I can insert so that item gets added?
I've seen websites do this with a paypal buy button but then it wont go through our CRM etc.
Any ideas?
Thank you

My routine, as always, has been to do the pages in iWeb and then using iWeb I select "Publish site changes" to a folder locally on my drive. Then, using Transmit (and I have used Cyberduck) I upload the folder of files and the file ending in .html for the changed pages to my server that hosts the site. What you are telling me is that either iWeb is not "publishing" all the changed files to my local folder, or there are files that are located somewhere else within the structure of the site that I have failed to upload.
I looked for paste.css files and found it in the scripts > regions or whatever folder but these are not files that I typically have ever looked for or uploaded when changing a page in iWeb.

Similar Messages

  • How do i add buy now buttons for paypal on thumbnails in Adobe Bridge photoalbums

    I have a series of photographs which i am selling online. I have found Bridge to be wonderful in creating a photoalbum but can't add the buy now button from paypal as I can in Dreamweavers albums

    ashbid wrote:
    I have found Bridge to be wonderful in creating a photoalbum but can't add the buy now button from paypal as I can in Dreamweavers albums
    Nor should you. Bridge is merely focused on processing images. Whatever limited HTML code it spits out is solely to the purpose of allowing others to view your image collections online. nothing more. Bridge has no graps of web design. Still, I don't really see your problem. Nothing stops you from copy&pasting different peices of code together or looking for alternate solutions with dynamic JavaScript or Flash based galleries as well as using PHP-based content managemnt systems for spitting out hundreds of pages based on a server template... if you get my meaning: It's more of a problem with your workflow and placing expectations on something that never was meant to be used that way.
    Mylenium

  • Paypal payment processing with Buy Now Button JSC component

    The "Buy Now Button" JSC component is having a property postBackUrl which is supposed to run a program to read (and process) the information from the Paypal server about the payment.
    Can this be a pagebean? (or it must be a Servlet?) Can anyone give sample codes for this implementation?(It is enough to show how to receive the POST data from the Paypal server)
    Any help from anyone is very much appreciated.
    Thank you very much.

    I used the following servlet to update my database with the information from Paypal. Any improvements (or criticism) to the codes are greatly wellcome !!
    public class Payment extends HttpServlet {
    public Payment() {
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    public void destroy() {
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    // read post from PayPal system and add 'cmd'
    Enumeration en = request.getParameterNames();
    String str = "cmd=_notify-validate";
    while(en.hasMoreElements()){
    String paramName = (String)en.nextElement();
    String paramValue = request.getParameter(paramName);
    try{
    str = str + "&" + paramName + "=" + URLEncoder.encode(paramValue, "UTF-8");
    }catch(UnsupportedEncodingException e){
    System.out.println(" ERROR !! (Payment.java Servlet/procesRequest()/catch block "+e.getMessage());
    // post back to PayPal system to validate
    // NOTE: change http: to https: in the following URL to verify using SSL (for increased security).
    // using HTTPS requires either Java 1.4 or greater, or Java Secure Socket Extension (JSSE)
    // and configured for older versions.
    URL u = new URL("http://www.paypal.com/cgi-bin/webscr");
    URLConnection uc = u.openConnection();
    uc.setDoOutput(true);
    uc.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
    PrintWriter pw = new PrintWriter(uc.getOutputStream());
    pw.println(str);
    pw.close();
    BufferedReader in = new BufferedReader(
    new InputStreamReader(uc.getInputStream()));
    String res = in.readLine();
    in.close();
    // assign posted variables to local variables
    String itemName = request.getParameter("item_name");
    String itemNumber = request.getParameter("item_number");
    String paymentStatus = request.getParameter("payment_status");
    String paymentAmount = request.getParameter("mc_gross");
    String paymentCurrency = request.getParameter("mc_currency");
    String txnId = request.getParameter("txn_id");
    String receiverEmail = request.getParameter("receiver_email");
    String payerEmail = request.getParameter("payer_email");
    String pk = request.getParameter("custom");
    //check notification validation
    if(res.equals("VERIFIED")) {
    //if(res.equals("INVALID")) {
    // check that txnId has not been previously processed
    // check that receiverEmail is your Primary PayPal email
    // check that paymentAmount/paymentCurrency are correct
    String membershipTypeValue="Please conform";
    if (itemNumber.equals("0")){
    membershipTypeValue="TEST" ;
    if (itemNumber.equals("1")){
    membershipTypeValue="BASIC" ;
    if (itemNumber.equals("2")){
    membershipTypeValue="GOLD" ;
    if (itemNumber.equals("3")){
    membershipTypeValue="PLATINUM" ;
    String query="INSERT INTO payment (PK, PAYMENT_ID, DATE_OF_PAYMENT, MEMBERSHIP_TYPE)" +
    // "PREVIOUS_PAYMENT_ID, PREVIOUS_DATE_OF_PAYMENT, PREVIOUS_MEMBERSHIP_TYPE ) " +
    "VALUES " +
    "("+pk+", \""+txnId+"\", NOW(), \""+membershipTypeValue+"\")";
    // check that paymentStatus=Completed, if so update database
    if (paymentStatus.equals("Completed")){
    updateDatabase(query);
    } else if(res.equals("INVALID")) {
    System.out.println("\"INVALID\" is returned by Paypal when processing payment for PK:"+pk);
    } else {
    System.out.println("Neither \"INVALID\" nor \"VALID\" is returned by Paypal when processing payment for PK:"+pk);
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    private void updateDatabase(String query){
    Statement sta=null;
    Connection con=null;
    // ResultSet rs=null;
    try {
    //Class.forName("com.mysql.jdbc.Driver")
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    Context initContext = new InitialContext();
    DataSource ds = (DataSource)initContext.lookup("jdbc/MySQLDataSource");
    Connection conn = ds.getConnection();
    sta = conn.createStatement();
    sta.executeUpdate(query);
    // rs.close();
    sta.close();
    conn.close();
    } catch (Exception e) {
    System.out.println(" ERROR!! (servlet/Payment.java/UpdateDatabase()/catch blok) "+e.getMessage());
    // e.printStackTrace();
    }

  • We want to customize some of our product pages with different colored buy now buttons, but we know that when using the module it is already set, can we create an app to use

    We have some items for sale on our site that have a separate buy now button and layout then others. Is there away to customize some of our product buy now buttons through the web apps?

    Use this Link to Contact Apple ID Support and request assistance...
    http://www.apple.com/support/appleid/contact/
    Also, You have 90 days Free Telephone Support for your New Mac... ( 3 Years if you Purchased the AppleCare Protection Plan)

  • How to style 'Related Products' "Buy Now" Button?

    I have been styling my site to the way I want it, but I hit a road block.
    I styled the "Buy Now" button on my store with - input.productSubmitInput in my css stylesheet
    But it is making ALL the Buy Now buttons the same size...
    Now my "Related Products" section is smaller, so I want the "Buy Now" button to be smaller than the regular ones.
    How can I achieve this? I can't seem to target the button in my css file for just my Related Products section...
    Thanks in advance!

    Beautiful! That worked. Thanks so much Alex:
    Themes For Muse - Templates for Adobe Muse
    One more question...The same thing is happening to me on another button at the top of the page here:
    Elegant Restaurant Theme
    I tried to amend your code, but I have a hard time understanding this stuff sometimes!
    Any idea how I can give the second button a transparent background?
    Thanks again Alex!

  • I can `t buy OS X Mountain. A game can buy. When I click on the Buy Now button, this message appears: We could not complete your purchase, the product distribution file could not be scanned. It may be damaged or not signed.

    I can `t buy OS X Mountain. A game can buy. When I click on the Buy Now button, this message appears: We could not complete your purchase, the product distribution file could not be scanned. It may be damaged or not signed. I have macbook air 11-inch Mid 2011.

    Quit the App Store if it's open.
    Open the Finder. From the Finder menu bar top of your screen click Go > Go to Folder
    Type or copy / paste:    /Library/Preferences/SystemConfiguration
    Click Go then move the NetworkInterfaces.plist file from the SystemConfiguration folder to the Trash.
    Relaunch the App Store. Try purchasing Mountain Lion.

  • How do I get the packing slips to print the selections made under a buy now button

    So I started using paypal packing slips about a year and half ago, instead of manually copying the info into an excel document version to create the packing slip. I use the packing slips to make sure I have the order correct and done before packing and then printing out the label. For the past year and half if it is a 'buy now' button with drop down selections, I have to manually edit each one to copy and paste the info from the payment notification into the end of  'thank you' text field. and in the process I have to remember to de-select the save button each time so I don't accidently put that info on my next order. Is there a way either with the button itself or the packing slip to select to have it print out the selections made on the packing slip? Given that in a few cases there are several drop downs, I need them all to list. It would save me a little time with each order and more importantly make sure I have the correct information on the correct packing slip. The information is there. just have not figured out how to automatically have it print on the packing slip. For trivia: I have no problem when I send an invoice or have an item with no selections, but for those items that have selections, because most of my items have several similar variations available, it would be really nice to be able to have it automatically put that information on the packing slip.
    Thanks for any help.

    Could you check your "shrink to fit" and scaling settings? Easiest way is:
    tap the Alt key > File > Page Setup
    The default would be
    * Scale: 100
    * Shrink to fit checked (this disables editing the Scale box, but you can uncheck it, edit, then re-check it)
    If those are at their default settings, perhaps they do not work well for particular pages? You can use Print Preview to examine how shrink-to-fit works on that page and override it by using a different percentage instead.
    Occasionally Firefox printer data gets garbled and manual adjustments don't seem to work. In that case, you can "reset" those printer settings. This article has the steps: http://kb.mozillazine.org/Problems_printing_web_pages#Reset_printer

  • PayPal Buy Now Button Problem

    I have a Photography site that uses the BUY NOW buttons from
    the PayPal ecommerce tool kit extension. Each of the "buy" pages
    have the same info for purchasing. I recently upgraded to 8 (pc, XP
    Home Edition), since then, when I copy/paste my "buy now" table (
    which has always worked before), somewhere between the copy and
    Paste a number 2 is added to "cmd" on one line of the code (see
    below). This breaks the buttons. Even the Buy Now button disappears
    from the wizard window as well.
    Any idea what's up with this?
    Thanks in advance for any help you may be able to give.
    Jan

    You may want to turn off "Rename form items when pasting"
    It's under:
    Edit -> Preferences -> Code Rewriting

  • How to change shopping cart Buy Now button?

    Hello All,
    I've been racking my brain on this one and could really use some help!
    Check out the "BUY NOW" button on my website here:
    Themes For MuseHome
    How do I get rid of the grey/white color behind the text? (it's grey on one browser, white on another!)
    I want it to be a solid red button and would like the gray area to be transparent.
    I looked in a lot of the css files but can;t figure out which style matches up with this button.
    Does anyone know where I'm supposed to go to change this?
    Any help would be greatly appreciated. Thanks!
    Jason

    Beautiful! That worked. Thanks so much Alex:
    Themes For Muse - Templates for Adobe Muse
    One more question...The same thing is happening to me on another button at the top of the page here:
    Elegant Restaurant Theme
    I tried to amend your code, but I have a hard time understanding this stuff sometimes!
    Any idea how I can give the second button a transparent background?
    Thanks again Alex!

  • How can I link the buy now button in "The Geek Shirt Designer" to my paypal?

    I'm currently creating an Adobe Muse ecommerce site where the user can create custom knitted hats.
    I was going to make this with a seperate page for each of the possible options, but I did the math, and there are over 15,000 different possible combinations! So I figured a system like the one in the tutorial would be very beneficial!
    I've used edge animate a fair amount, but an quite new to coding. (maybe 1 year's experience)
    I followed the tutorial and think I understand it all, but I don't know how to link the final script to a paypal button.
    Would love some help on this! Many Thanks
    Ollie

    Hi, Ollie-
    You can do a buy now button in either by using the rectangle in Animate or by drawing something in Muse.  Either way, you'll need to apply a "payment script" that a payment site like PayPal will give you.
    Here's something I found that will help:
    https://developer.paypal.com/docs/integration/direct/identity/button-js-builder/
    Thanks,
    -Elaine

  • Trying to put Buy Now button on my site

    I downloaded code for a 'Buy Now' button. When I view my page, I see the code.  Will the viewer of my website see code or the button? Is there an extra step I'm missing

    The code needs to be pasted into an HTML Snippet...
    http://www.iwebformusicians.com/Internet-Music-Sell-Distribute/PayPal.html

  • Trouble aligning Paypal Buy Now buttons in table

    This can't be that hard to fix, but I'm despite my best
    efforts, ie playing around with valign, various combinations of
    <p> and <br> tages, I can't line up the Buy Now buttons
    better than this :
    link
    here
    Can anyone help me out to best get then aligned with the
    price?

    Figured it out - just needed to place the form's opening and
    closing tags outside the <td> tag for some random
    reason.

  • Can not take a screenshot with Maverick and track pad.  can not use apple chat to talk with a tech.  there are other issues also like I used to be able to go back a page with the delete button.  No Maverick PDF to instruct on how to use Maverick

    Can not take a screenshot with Maverick and track pad.  can not use apple chat to talk with a tech.  there are other issues also like I used to be able to go back a page with the delete button.  No Maverick PDF to instruct on how to use Maverick
    THE use of the apple support is a mess also.
    I want to be able to use my MAC fully and easily like I used to with Snow Leopard. 
    What is wrong with this maverick OS?

    The only people who can possibly assist you with this is Apple Customer Relations, call your local Apple contact number and ask for Customer Relations then explain your situation clearly and politely (be firm but don't rant).
    You might want to investiage what the local laws are regarding defective goods and 'fit for use' definitions on warranties etc. Consumer Protection can be a useful tool to use or bargain with if needed ...

  • Buy Now message for purchased version of Photoshop Elements 12

    I keep getting the Buy Now message for my purchased version of Photoshop Elements 12.
    I used the trial version before and think this may be what is causing the problem.
    I have tried uninstalling and reinstalling but this does not solve teh problem.

    I have already installed the version I bought on CD. It worked for a while, but then I got the message about the trial being over and I had to Buy Now.
    I had been using the trial version before buying it on CD, so it is extremely annoying to be told I should be buying it now. I have bought it, but cannot use it as I cannot get past the welcome screen!
    I have entered the serial number which came with the CD! But the Buy Now persists. If I could find anyone at Adobe to tell them, I would, but unfortunately there is no help line or contact email.
    Thanks for trying to help.

  • When I press the buy now button nothing happens. any ideas?,

    When I press the buy now button nothing happens. any ideas?,

    I do not know the answer but with itunes store which is essentially a website most errors seem to be on the Apple side. Report it to itunes store support
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Hard Drive Is Flickering:

    I have been podcasting...downloading lots of the free ones... and some of them are a few megabytes but some are 1/2 of a gigabite. This takes up space, and also OS X And OS 9 on the same 10gb hard drive. There is 1.5 gb left. My 80gb samsung hard dri

  • My cloud won't work. I get error code #10003. Anyone else had this?

    I can't back up anything, my Cloud worked initially to back up everything- except my contacts, they would never back up, now it won't even let me sign in via the computer. It says unknown error and to call customer service when I try to login online.

  • SOST and SOSC items link to crmd_orderadm_h/ crmd_orderadm_h

    Hi I need to check if my items (Shopping Cart, PO, PR) are already queued for sending in SOST. I need to know where to find the Object ID of the item to match with the Object No. in SOST or SOSC. I can use GUID as well. Does anyone know?

  • EREC BSP link not working on dev portal

    Hi, I need to find the link to open the E-Rec BSP application through portal. I am new to the system and dont know how to find it. Can any one help? I know the link for PROD system but not for DEV....any clues..suggestion... Thanks & Regards, Shruti

  • Table for Normal Duration of the activity

    Hi all, In which table ( not structure), is the normal duration of the activity is stored ?. How do we really understand this information from looking at the structure AFVGD? Warm regards, Srinivas Potluri