Integrate Amazon Store with Site

Discussion in 'Amazon' started by onedee, Jan 12, 2009.

  1. #1
    I'm wondering if anyone here has successfully integrated an Amazon store with their site. I'm currently building a site and looking to wrap my site around an Amazon store and would like to know if this is possible. Below I have included an image showing what I mean. can this be accomplished with a wordpress site?

    P.S if you can share links of sites wrapped around an amazon store tha would be great.


    [​IMG]
     
    onedee, Jan 12, 2009 IP
  2. newyears1978

    newyears1978 Peon

    Messages:
    125
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I haven't created my astore yet, but I saw the option on there to embed in your site.
    I believe you just paste the provided code into your desired (content) area.
    It's on the last page of the setup process on the astore setup...or click "Get link"

    Edit://

    I just used a "template" I had laying around and I used this Get link and stuck my astore (test astore..not real) into this template..just to show you that it is possible..I will PM the link as I cannot post links yet.

    After you view it you will seethat it obviously would require modifying to make it all fit..etc. Hope this helps.
     
    newyears1978, Jan 12, 2009 IP
  3. armanpi

    armanpi Peon

    Messages:
    122
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    If you know some programming you can Use Amazon Associates Web Service (AWS) for that. http://aws.amazon.com/associates/

    Better yet, just hire a freelancer to do it. It shouldn't cost too much.
     
    armanpi, Jan 14, 2009 IP
  4. idrockthat

    idrockthat Guest

    Messages:
    44
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I've had luck with embedding, and am currently trying to master the amazon web services
     
    idrockthat, Jan 15, 2009 IP
  5. PuReWebDev

    PuReWebDev Peon

    Messages:
    394
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Are you saying you want to integrate an astore, or custom AWS E-commerce site?


    thanks,
    PuReWebDev
     
    PuReWebDev, Jan 15, 2009 IP
  6. newyears1978

    newyears1978 Peon

    Messages:
    125
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Cool, good luck.

    The only way you will be able to COMPLETELY modify the look of your Store including changing features such as Remote shopping card etc..you will have to know programming and do that through AWS..otherwise you might wanna look at some of the builder programs out there..such as E4E (http://ecommerceforeveryone.com)..

    Good luck!
     
    newyears1978, Jan 15, 2009 IP
  7. kodeexii

    kodeexii Peon

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Salam n Hola

    How about turning your astore into a subdomain? You can do this with storebrander.com
    You can also have google ads in your astore with the storebrander.

    If you already own a domain and hosting, I would certainly recommend that you go with solutions like Associates-O-Matic (AOM) or eCommerveForEveryOne. You get better control of your amazon store that way.

    Regards
    Hadee Roslan
     
    kodeexii, Jan 15, 2009 IP
  8. onedee

    onedee Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    I'm talking about integrating or blending an aStore into a site - I feel this will help keep everything looking like they belong together
     
    onedee, Jan 16, 2009 IP
  9. Peterbndrs

    Peterbndrs Active Member

    Messages:
    282
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    58
    #9
    Peterbndrs, Jan 16, 2009 IP
  10. Hoditz

    Hoditz Active Member

    Messages:
    97
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    93
    #10
    For Drupal users there are some Amazon modules that can insert Amazon products into one's site.
     
    Hoditz, Jan 16, 2009 IP
  11. hmansfield

    hmansfield Guest

    Messages:
    7,904
    Likes Received:
    298
    Best Answers:
    0
    Trophy Points:
    280
    #11
    I have gotten a couple of PM's about that. Here is how I did it:

    To get your astore to embed the same way, you need to install a page template that takes out the side bars, yet leaves the header and footer.
    You need to create .php file and insert it into your theme files.

    Use notepad or your text editor, and name a file something like "shop".php or whatever you wish and in the file put this code:

    <?php
    /*
    Template Name: Put the name here
    */
    ?>
    <?php get_header(); ?><div id="content"><div id="menu"><div id="wrap"><?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1><br /><br /> <?php the_content(__('Read more'));?> <!-- <?php trackback_rdf(); ?> --> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> </div></div><?php get_footer(); ?>


    Then go back and remake the page and put in your astore embed code. Where it calls for the Page Template, your new file should show up in the drop down menu.
    Select it, and then save.

    When creating your astore, just open the CSS files of the theme that you are using to match the colors (or use a color tool)

    It may take some tweaking of the astore dimensions, but it should work. (Sometimes it takes a minute or two to show up properly. I don't know why, it just does)

    Note: I haven't updated that code in a while. I still works on all of my themes, and in word press 2.7

    Hope this helps,
    Harold
     
    hmansfield, Jan 16, 2009 IP
  12. idrockthat

    idrockthat Guest

    Messages:
    44
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Sweet! Thanks onedee and Mansfiled
     
    idrockthat, Jan 16, 2009 IP
  13. hmansfield

    hmansfield Guest

    Messages:
    7,904
    Likes Received:
    298
    Best Answers:
    0
    Trophy Points:
    280
    #13
    Let us know how they work out.
     
    hmansfield, Jan 16, 2009 IP
  14. hmansfield

    hmansfield Guest

    Messages:
    7,904
    Likes Received:
    298
    Best Answers:
    0
    Trophy Points:
    280
    #14
    Just thought that I would add, that you can also insert your astore code directly into the template file as well. It actually blends in a little better that way, especially if you aren't going to be changing astores for a while:

    So you would do this:
    __________________________________________
    <?php
    /*
    Template Name: Put the name here
    */
    ?>
    <?php get_header(); ?><div id="content">

    (Insert your astore code here)

    <div id="menu"><div id="wrap"><?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1><br /><br /> <?php the_content(__('Read more'));?> <!-- <?php trackback_rdf(); ?> --> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> </div></div><?php get_footer(); ?>

    ______________________________________

    You can still post content that will appear below the store like ad banners or text (you will not get the contents of this page indexed by search engines) for SEO, and of course use All In One SEO plug in to Optimize the page with keywords and description.

    If you want to have content before the astore, insert the code after this string:
    <?php the_title(); ?></a></h1>

    This should allow you to seamlessly integrate your astore into your Word Press blog Page.

    Hope this helps.
     
    hmansfield, Jan 17, 2009 IP
  15. idrockthat

    idrockthat Guest

    Messages:
    44
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    Awesome. Thanks hmansfield
     
    idrockthat, Jan 22, 2009 IP
  16. kodeexii

    kodeexii Peon

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #16
    Salam n Hola

    Thank you HMansfield. Will surely test it out soon and report back with the result. I've been playing with AOM so far. This looks like another good way to utilize the basic astore.

    Regards
    Hadee Roslan
     
    kodeexii, Feb 9, 2009 IP
  17. robinko

    robinko Peon

    Messages:
    79
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #17
    use aStore CSS
     
    robinko, Feb 26, 2009 IP
  18. BlackTactics

    BlackTactics Banned

    Messages:
    153
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #18
    nice! thanks.
     
    BlackTactics, Feb 26, 2009 IP