Page 7 of 7 FirstFirst ... 567
Results 61 to 68 of 68
  1. #61
    Join Date
    Sep 2007
    Posts
    2
    Plugin Contributions
    0

    Default Re: how to sell high res images allowing download after paying? Gallery2

    Yellow: that's helpful, but I don't want to sell the digital files, I want to sell prints of different sizes, and have the script e-mail me the orders so I can make and ship the prints myself. Any suggestions there?

    Quote Originally Posted by yellow1912 View Post
    The easiest way, which I did, would be:
    1. Forget about the Gallery2 thing, you don't need it.
    2. ZC already has a built in module that let you sell file, so use it instead.
    3. Install image handler 2, let it water mark and shrink down the sample image, that will be the product's image.
    4. Once the customers pay, they can download the real file (psd files, perhap)

    That would be the best way, you need to install only 1 mod (IH2), or you may choose not to install it, you can batch watermark you pics using Photoshop or many other softwares.

    Regards.

  2. #62
    Join Date
    Nov 2006
    Location
    Papworth, Cambridgeshire, UK
    Posts
    731
    Plugin Contributions
    3

    Default Re: how to sell high res images allowing download after paying? Gallery2

    Spyderboyy, I'd suggest you take a look at Dayo Akanji's latest release, in the 3rd Party Modules and Themes section of the Gallery2 forums. It is much more focused on the 'sale of traditional photographic prints' model rather than the 'digital download' model, and includes sample templates, product options and similar.

    I'd also hang on for a day or so before downloading it, as Dayo and I are busy integrating the latest bugfixes into it.

    Rgds,

    Chuck

  3. #63
    Join Date
    May 2007
    Location
    NSW, Australia
    Posts
    19
    Plugin Contributions
    0

    Default Re: how to sell high res images allowing download after paying? Gallery2

    Hello

    I am getting back to working on my Zencart/Gallery integration site.

    I am trying to disable the larger image link on the product detail page.

    I am trying to change tpl_product_gallery_info_display.php

    Original code

    <td align="center" valign="top" class="smallText" rowspan="3" width="<?php
    echo SMALL_IMAGE_WIDTH;
    ?>">
    <?php
    if (zen_not_null($productImage)) {
    echo '<a href="' . $productUrl . '"><img src="'
    . DIR_WS_IMAGES . $productImage . '"&g2_imageViewsIndex=1 border="0" alt="' . $products_name . '" title="'
    . $products_name . '" hspace="5" vspace="5" />' . '<br />' . TEXT_CLICK_TO_ENLARGE . '</a>';
    } else {
    echo '&nbsp;';
    }
    ?>
    </td>

    I have tried amending this to


    <td align="center" valign="top" class="smallText" rowspan="3" width="<?php
    echo SMALL_IMAGE_WIDTH;
    ?>">
    <?php
    if (zen_not_null($productImage)) {
    echo '<img src="'
    . DIR_WS_IMAGES . $productImage . '"&g2_imageViewsIndex=1 border="0" alt="' . $products_name . '" title="'
    . $products_name . '" hspace="5" vspace="5" />' . '<br />' . TEXT_CLICK_TO_ENLARGE .;
    } else {
    echo '&nbsp;';
    }
    ?>
    </td>



    But this has not worked.

    Could someone please point me in the right direction to do this?

    Cheers
    Danielle

  4. #64
    Join Date
    Apr 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: how to sell high res images allowing download after paying? Gallery2

    Does anyone have links to existing websites using zen cart with gallery2? I'm considering adding this to my website and would like to see some real world examples.

  5. #65
    Join Date
    Dec 2006
    Posts
    163
    Plugin Contributions
    1

    Default Re: how to sell high res images allowing download after paying? Gallery2

    Danielle

    Change the code to

    Code:
    <td align="center" valign="top" class="smallText" rowspan="3" width="<?php
    echo SMALL_IMAGE_WIDTH;
    ?>">
    <?php
    if (zen_not_null($productImage)) {
    echo '<a href="' . $productUrl . '"><img src="'
    . DIR_WS_IMAGES . $productImage . '"&g2_imageViewsIndex=1 border="0" alt="' . $products_name . '" title="'
    . $products_name . '" hspace="5" vspace="5" /></a>';
    } else {
    echo '&nbsp;';
    }
    ?>
    </td>

    On your other query on the G2 site,

    The image sizes are defined in the zencart admin under configuration, layout settings.

  6. #66
    Join Date
    Mar 2005
    Posts
    123
    Plugin Contributions
    0

    Default Re: how to sell high res images allowing download after paying? Gallery2

    I'm having real problems with this mod - Chuck, if you read this I have emailed you at your hotmail address (included in the zip) but if you didn't get this I hope you can help here?

    Basically I have the following setup:

    Zencart 1.3.8a
    Gallery 2.2.4

    Paths are:

    zencart = "/" (root)
    gallery= "/gallery"

    I have tried using the same DB and different DB's with cross permissions on the DB users.

    The install went really well - I can configure the Gallery2 module just fine, it accepts the path to zen and finds the correct category to use for images.

    I can upload pictures to Gallery2 and they show in the correct place in zencart and in the correct folders - even zen lightbox works!!!!!

    The only file that I couldn't upload was functions_general.php which caused a blank zencart mainpage when used so I reverted back to the core zencart file.

    The problem is this - once a customer selects a download size and goes through the checkout they are presented with a download button which when pressed just goes to a blank screen - nothing happens!

    I have checked the zencart download folder and a symbolic link has been created with the correct filename, but the contents of this symbolic link when viewed in a text editor is just "sample download"????

    I feel that I am really really close to getting this working so if anyone can help or has any suggestions then I would really appreciate it!!!!

    Thanks

    Tony

  7. #67
    Join Date
    Mar 2005
    Posts
    123
    Plugin Contributions
    0

    Default Re: how to sell high res images allowing download after paying? Gallery2

    BUMP---

    Does Chuck visit the Zencart forums anymore? Does anyone know where / how I can get hold of him please?

    Thanks

    Tony

  8. #68
    Join Date
    Sep 2007
    Location
    Texas
    Posts
    34
    Plugin Contributions
    0

    Default Re: how to sell high res images allowing download after paying? Gallery2


 

 
Page 7 of 7 FirstFirst ... 567

Similar Threads

  1. Selling High Res images, unavailable until paid for.
    By Scotchmonster in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 3 Feb 2011, 12:35 AM
  2. Images with width percentages messing up on IE when image res is high
    By Donn in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 8 Apr 2010, 05:53 PM
  3. Replies: 3
    Last Post: 12 Jun 2008, 03:41 AM
  4. Gallery2 integration: Digital picture shop: instant download of purchase?
    By vw.amontero in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 5 May 2008, 09:19 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