You will need to send me the WP-Cart database to do with the orders.
You will need to send me the WP-Cart database to do with the orders.
asricksclesc (17-09-2013),aupeteeactea (05-11-2013),hersamuchpeich (22-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)
All that is in the orders now. The orders show up. The downloads do not.
Specifically, what all has to be populated, what conditions must be met in what table before the download appears?
asricksclesc (17-09-2013),aupeteeactea (05-11-2013),ciojennacgalac (07-01-2013),hersamuchpeich (22-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)
asricksclesc (17-09-2013),aupeteeactea (05-11-2013),ciojennacgalac (07-01-2013),hersamuchpeich (22-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)
Found another issue too, not sure if it's on the orders side or download side of the script:
In the admin panel for order #3517, which is the very first order I ever made, the amount is ridiculously high $398.00 where it should be 19.95. In the front end, the order shows correctly. Users wont see this I know, but really should reflect accurate amount.
asricksclesc (17-09-2013),aupeteeactea (05-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)
asricksclesc (17-09-2013),aupeteeactea (05-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)
One small fix:
How can I get the above to group the downloads together and put something like this instead:Download links
1 - Arcadem Pro 2.95 Standard License
Download - 10.12Mb Link expires:
Saturday 18 September, 2010 5 downloads remaining
1 - Arcadem Pro 2.95 Standard License
Download - 490.51Mb Link expires:
Saturday 18 September, 2010 4 downloads remaining
[Product Name]:<br />
<button>[Download File Description] Size: [Link Expires] [# Downloads Remaining]<br />
<button>[Download File Description] Size: [Link Expires] [# Downloads Remaining]<br />
<button>[Download File Description] Size: [Link Expires] [# Downloads Remaining]<br />
I would like to see the downloads grouped under the product name as above, and existing method does not tell the user what file they are actually downloading. It's showing the same description for each one.
By Download File Description, I am meaning the plain English description we assigned to the download under the "Files in Group" in the admin panel.
Otherwise, excellent work and thanks.
asricksclesc (17-09-2013),aupeteeactea (05-11-2013),hersamuchpeich (22-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)
The above wasn't showing correctly as filename description in your database was incorrect.
It looks like this now:
1 - Arcadem Pro 2.95 Standard License - Arcade Script
Download - 10.12Mb Link expires:
Saturday 18 September, 2010 5 downloads remaining
1 - Arcadem Pro 2.95 Standard License - Default Game Pack
Download - 490.51Mb Link expires:
Saturday 18 September, 2010 4 downloads remaining
1 - Arcadem Pro 2.95 Standard License - Thumbnails
Download - 22.77Mb Link expires:
Saturday 18 September, 2010 5 downloads remaining
1 - Arcadem Pro 2.95 Standard License - 500 Game SQL File
Download - 277Bytes Link expires:
Saturday 18 September, 2010 5 downloads remaining
asricksclesc (17-09-2013),hersamuchpeich (22-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)
Near perfect....how can I put a <br /> after the product name where the hypen is now?
asricksclesc (17-09-2013),hersamuchpeich (22-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)
Edit shop/includes/modules/downloads.php
On line 99:
Change
ToPHP Code:
echo ' <td class="main" align="center">' . $downloads['products_name'] . ' - <a href="' . tep_href_link(FILENAME_DOWNLOAD, 'order=' . $last_order . '&id=' . $downloads['orders_products_download_id']) . '">' . $file_array['download_group_file_description'] . '<br>' . tep_image_button('button_download.gif', 'Download') . '</a> - ' . $file_size . '</td>' . "\n";
That should do it.PHP Code:
echo ' <td class="main" align="center">' . $downloads['products_name'] . ' <br /> <a href="' . tep_href_link(FILENAME_DOWNLOAD, 'order=' . $last_order . '&id=' . $downloads['orders_products_download_id']) . '">' . $file_array['download_group_file_description'] . '<br>' . tep_image_button('button_download.gif', 'Download') . '</a> - ' . $file_size . '</td>' . "\n";
asricksclesc (17-09-2013),hersamuchpeich (22-11-2013),lrybuywejewe (22-11-2012),nbrregiordthor (29-11-2012),tasaraheache (01-12-2012)