Page 5 of 10 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 98
  1. #41

    Default Re: creinold Pinterest Button Addon

    Quote Originally Posted by creinold View Post
    addThis code: Was something I created real fast. I never tested it. You were my guinea pic... ;) LOL I need to play with it later. I don't use addThis on my site. You can remove it till I figure it out better...

    to remove, delete:
    HTML Code:
    <a class="addthis_button_pinterest"
    pi:pinit:url="<?php echo zen_href_link(FILENAME_PRODUCT_INFO); ?>"
    pi:pinit:media="<?php echo HTTP_SERVER . DIR_WS_CATALOG . $products_image_medium; ?>"
    pi:pinit:description="<?php echo stripslashes(strip_tags($products_description)); ?>"
    pi:pinit:layout="horizontal">
    my pinterest codes:
    You need to put the javascript_main.php codes back in too... ;)
    Thanks again for all your help!

  2. #42
    Join Date
    Sep 2008
    Location
    North Highlands, California 95660
    Posts
    286
    Plugin Contributions
    1

    Default Re: creinold Pinterest Button Addon

    I think i know what causing the image not to show... are you using some kind of image manager?
    http://www.sidewalkstyles.com Comfort Footwear, Accessories and More.
    creinold SBA with Dynamic Drop Downs latest Alpha release: http://www.sidewalkstyles.com/creino...art_V1.5.0.zip

  3. #43

    Default Re: creinold Pinterest Button Addon

    Quote Originally Posted by creinold View Post
    I think i know what causing the image not to show... are you using some kind of image manager?
    Yeah Image Handler 3.

  4. #44
    Join Date
    Sep 2008
    Location
    North Highlands, California 95660
    Posts
    286
    Plugin Contributions
    1

    Default Re: creinold Pinterest Button Addon

    I will have to look into how it pulls the image file. The url to the image my sql query pulls is the standard zen cart image.

    ie the url would look like this: http://frompropertorocker.com/images...etters_MED.jpg

    image handler url looks more like: http://frompropertorocker.com/bmz_ca...ge.250x184.jpg

    Ill have download image handler later and look into how it generates it image codes.
    http://www.sidewalkstyles.com Comfort Footwear, Accessories and More.
    creinold SBA with Dynamic Drop Downs latest Alpha release: http://www.sidewalkstyles.com/creino...art_V1.5.0.zip

  5. #45

    Default Re: creinold Pinterest Button Addon

    Quote Originally Posted by creinold View Post
    I will have to look into how it pulls the image file. The url to the image my sql query pulls is the standard zen cart image.

    ie the url would look like this: http://frompropertorocker.com/images...-arrivals/Blue Block Letters_MED.jpg

    image handler url looks more like: http://frompropertorocker.com/bmz_ca...ge.250x184.jpg

    Ill have download image handler later and look into how it generates it image codes.
    Sounds good! Thanks again!

  6. #46
    Join Date
    Sep 2008
    Location
    North Highlands, California 95660
    Posts
    286
    Plugin Contributions
    1

    Default Re: creinold Pinterest Button Addon

    Also please make sure when you upload images they don't have any spaces in the name IE:

    Blue Block Letters.jpg should be Blue_Block_Letters.jpg or similar....

    It will mess up url coding...
    http://www.sidewalkstyles.com Comfort Footwear, Accessories and More.
    creinold SBA with Dynamic Drop Downs latest Alpha release: http://www.sidewalkstyles.com/creino...art_V1.5.0.zip

  7. #47
    Join Date
    Sep 2008
    Location
    North Highlands, California 95660
    Posts
    286
    Plugin Contributions
    1

    Default Re: creinold Pinterest Button Addon

    You welcome... You are almost there just got to get your images working now. =)
    http://www.sidewalkstyles.com Comfort Footwear, Accessories and More.
    creinold SBA with Dynamic Drop Downs latest Alpha release: http://www.sidewalkstyles.com/creino...art_V1.5.0.zip

  8. #48

    Default Re: creinold Pinterest Button Addon

    Quote Originally Posted by creinold View Post
    Also please make sure when you upload images they don't have any spaces in the name IE:

    Blue Block Letters.jpg should be Blue_Block_Letters.jpg or similar....

    It will mess up url coding...
    I will fix those right away. :) Thanks for the heads up.

  9. #49
    Join Date
    Sep 2008
    Location
    North Highlands, California 95660
    Posts
    286
    Plugin Contributions
    1

    Default Re: creinold Pinterest Button Addon

    Okay let see if this fixes the image issue:

    change:
    Code:
    <!--Bof creinold Pinterest Modifications, (You can move this anywhere you like the Pin it Button to show up on Product Info page.) -->
    <div id="pinterest"><a href="http://pinterest.com/pin/create/button/?url=<?php echo zen_href_link(FILENAME_PRODUCT_INFO); ?>&media=<?php echo HTTP_SERVER . DIR_WS_CATALOG . $products_image_medium; ?>&description=<?php echo stripslashes(strip_tags($products_description)); ?>" class="pin-it-button" count-layout="horizontal">Pin It</a></div>
    <!--eof creinold Pinterest Modifications, (You can move this anywhere you like the Pin it Button to show up on Product Info page.) -->

    to:
    Code:
    <!--Bof creinold Pinterest Modifications, (You can move this anywhere you like the Pin it Button to show up on Product Info page.) -->
    <div id="pinterest"><a href="http://pinterest.com/pin/create/button/?url=<?php echo zen_href_link(FILENAME_PRODUCT_INFO); ?>&media=<?php echo HTTP_SERVER . DIR_WS_CATALOG . $products_image; ?>&description=<?php echo stripslashes(strip_tags($products_description)); ?>" class="pin-it-button" count-layout="horizontal">Pin It</a></div>
    <!--eof creinold Pinterest Modifications, (You can move this anywhere you like the Pin it Button to show up on Product Info page.) -->
    http://www.sidewalkstyles.com Comfort Footwear, Accessories and More.
    creinold SBA with Dynamic Drop Downs latest Alpha release: http://www.sidewalkstyles.com/creino...art_V1.5.0.zip

  10. #50

    Default Re: creinold Pinterest Button Addon

    Quote Originally Posted by creinold View Post
    Okay let see if this fixes the image issue:

    change:
    Code:
    <!--Bof creinold Pinterest Modifications, (You can move this anywhere you like the Pin it Button to show up on Product Info page.) -->
    <div id="pinterest"><a href="http://pinterest.com/pin/create/button/?url=<?php echo zen_href_link(FILENAME_PRODUCT_INFO); ?>&media=<?php echo HTTP_SERVER . DIR_WS_CATALOG . $products_image_medium; ?>&description=<?php echo stripslashes(strip_tags($products_description)); ?>" class="pin-it-button" count-layout="horizontal">Pin It</a></div>
    <!--eof creinold Pinterest Modifications, (You can move this anywhere you like the Pin it Button to show up on Product Info page.) -->

    to:
    Code:
    <!--Bof creinold Pinterest Modifications, (You can move this anywhere you like the Pin it Button to show up on Product Info page.) -->
    <div id="pinterest"><a href="http://pinterest.com/pin/create/button/?url=<?php echo zen_href_link(FILENAME_PRODUCT_INFO); ?>&media=<?php echo HTTP_SERVER . DIR_WS_CATALOG . $products_image; ?>&description=<?php echo stripslashes(strip_tags($products_description)); ?>" class="pin-it-button" count-layout="horizontal">Pin It</a></div>
    <!--eof creinold Pinterest Modifications, (You can move this anywhere you like the Pin it Button to show up on Product Info page.) -->
    Nope

 

 
Page 5 of 10 FirstFirst ... 34567 ... LastLast

Similar Threads

  1. v139f Need help with my social icons pinterest button
    By ffdotnet in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 26 Jan 2013, 03:14 PM
  2. v150 Ultimate-SEO addon conflicting with CSS-Button addon
    By Rony in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 16 Jan 2013, 08:06 PM
  3. v139h Pinterest Pinit Button (Numinix)
    By enchanted1 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Sep 2012, 02:42 PM
  4. Move my Pinterest "pin it" button
    By Terrill_Taylor in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 11 Feb 2012, 04:06 PM
  5. adding a class to button element - CSS button addon
    By australican in forum Addon Templates
    Replies: 3
    Last Post: 26 May 2010, 08:53 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR