Quote:
Originally Posted by mikem164
UPDATE:
If I manually up a thumb to my photos/thumbs with the name that failed to upload then it appears.
Screenshots fail uploading as well, but source showed where it was looking for the image of the screenshot here: microcart/photos/thumbs/6155b071b57f091add071aaa4c48a2c7.jpg
All I need to do is figure why the upload is failing. When I upload a folder, it hangs on the blank Vb screen. I tried this on another forum with Vb 4.0.2 and exact same result.
|
please make sure your folder microcart and all folders within this folder are chmodded to 777
Quote:
Originally Posted by Arseynimz
Great mod here michael - thanks heaps!
I'm trying to go about modifying it a touch here and there though, but thought I'd ask you first in case you were already on to it. I would like to show tax inclusive pricing in the shop (i.e. before going through to the cart - is there any plan for this?
Also, can you direct me to where I can modify the pdf invoice output? I am trying to add a few lines to the invoice, and also modify some of the tables that are created - all help appreciated!
Edit: Also any way to get rid of the funky psychadelic background on the pdf's?!
|
to remove or modify the background look at line 2060 to 2089
to edit the PDF out put you will need to look for this
PHP Code:
if ($_REQUEST['do'] == 'invoice')
{
and change it the way you like here.
to add a new line use this
PHP Code:
$pdf->ezText('<b><u>'.$vbphrase["microcart_invoice_to"].'</u></b>');