Good job, Q,
I have upgraded to 1.4.9.3, but currently, I don't see the SPECIAL PRICE in product list if the date is 0000-00-00, it works if special items have a date but is there is another way to get them to work for 0000-00-00
If you could kindly add SPECIAL PRICE in product_form.tpl would be great as well
I have upgraded to 1.4.9.3, but currently, I don't see the SPECIAL PRICE in product list if the date is 0000-00-00, it works if special items have a date but is there is another way to get them to work for 0000-00-00
If you could kindly add SPECIAL PRICE in product_form.tpl would be great as well
I know nothing about PHP and SQL, but I still try my best to understand it.
I can confirm that I've had a weird issue with the search too - The problem is this line
It assumes you are in a subfolder for your location, when in fact it's not always the case
You can fix it using
instead. This needs to be done in
Code: Select all
url = location.protocol + "//" + location.host + "/" + pathArray[1] + '/';
You can fix it using
Code: Select all
url = '<?php echo HTTP_SERVER; ?>';
Code: Select all
/catalog/view/theme/your-theme/template/common/header.tpl
Yea.. that old IE8 bug.. I never did get around to that.. but if that fixes it great.. Also deleting IE8 from your computer fixes that a whole lot of other problems (like famine, disease, gout... IE causes them all)JAY6390 wrote:I can confirm that I've had a weird issue with the search too - The problem is this lineIt assumes you are in a subfolder for your location, when in fact it's not always the caseCode: Select all
url = location.protocol + "//" + location.host + "/" + pathArray[1] + '/';
You can fix it usinginstead. This needs to be done inCode: Select all
url = '<?php echo HTTP_SERVER; ?>';
Code: Select all
/catalog/view/theme/your-theme/template/common/header.tpl
Getting a date standard that includes times would be good feature to have in the base code.
@ ie
It is the MOST EXPENSIVE item in the world (well, not if you consider XP) ... imagine how much money could be transfered to education and famine if you didn't have spend time and money on fixing those 2.
@ ie
It is the MOST EXPENSIVE item in the world (well, not if you consider XP) ... imagine how much money could be transfered to education and famine if you didn't have spend time and money on fixing those 2.
930sc ... because it is fun!
There is a bug in the BO -> System -> Settings -> Option Tab: Invoice Start No.: (Set the starting number the invoices will begin from.)
This will only work if there are no Invoices yet, after generating an Invoice you can set whatever you like in that box but the system will completely ignore that and just generate the next Invoice-no with 1.
The Prefix function does work.
This is in all version that has this function.
See also: [BUG] Setting new Invoice startno does not work.
This will only work if there are no Invoices yet, after generating an Invoice you can set whatever you like in that box but the system will completely ignore that and just generate the next Invoice-no with 1.
The Prefix function does work.
This is in all version that has this function.
See also: [BUG] Setting new Invoice startno does not work.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
As 2011 is just around the corner I think a quick fix is needed.i2Paq wrote:There is a bug in the BO -> System -> Settings -> Option Tab: Invoice Start No.: (Set the starting number the invoices will begin from.)
This will only work if there are no Invoices yet, after generating an Invoice you can set whatever you like in that box but the system will completely ignore that and just generate the next Invoice-no with 1.
The Prefix function does work.
This is in all version that has this function.
See also: [BUG] Setting new Invoice startno does not work.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
LIES AND SLANDER!JAY6390 wrote:It was actually in chrome that I had the issue
The original issue was IE only
http://forum.opencart.com/viewtopic.php ... 33#p108330
Tho, I just tried it with FF, Chrome, and IE8 and couldn't reproduce it here:
http://unbannable.com/v1493/desktops/pc/hp3065
but I know I saw it at one point
I'm actually using a two-level deep install that it happened on, ie http://localhost/dir/subdir/index.php?.......
From the JS code it only takes one part, in the case above the dir, not the subdir as well
From the JS code it only takes one part, in the case above the dir, not the subdir as well
and your fix above seems to fix it all?JAY6390 wrote:I'm actually using a two-level deep install that it happened on, ie http://localhost/dir/subdir/index.php?.......
From the JS code it only takes one part, in the case above the dir, not the subdir as well
Files get uploaded, they are listed in the download table of the database, but they are not displaying in the list of downloads in the Admin. It says 'No Results' ..... but 'Showing 1 to 3 of 3 (1 Pages)' at bottom right indicates that there are indeed 3 files, they are just not getting listed.
The files are also not showing as available to mark as a download in the product data screen.
Have tested on 2 separate installations, different domains.
The files are also not showing as available to mark as a download in the product data screen.
Have tested on 2 separate installations, different domains.
Cannot reproduce. The download system hasn't changed. Do you have multiple languages and possibly not entering the second language entry?SiteE@se wrote:Files get uploaded, they are listed in the download table of the database, but they are not displaying in the list of downloads in the Admin. It says 'No Results' ..... but 'Showing 1 to 3 of 3 (1 Pages)' at bottom right indicates that there are indeed 3 files, they are just not getting listed.
The files are also not showing as available to mark as a download in the product data screen.
Have tested on 2 separate installations, different domains.
No, only one language - default English. Languages and currencies set to disabled to avoid the display of the switchers but that shouldn't affect anything, should it?Cannot reproduce. The download system hasn't changed. Do you have multiple languages and possibly not entering the second language entry?
This from the error log might shed some light. Nothing is being written to the download_description table:Qphoria wrote: Cannot reproduce. The download system hasn't changed. Do you have multiple languages and possibly not entering the second language entry?
2010-12-23 17:35:30 - PHP Notice: Undefined index: download_description in xxx/admin/controller/catalog/download.php on line 420
2010-12-23 17:35:30 - PHP Warning: Invalid argument supplied for foreach() in xxx/admin/controller/catalog/download.php on line 420
2010-12-23 17:35:30 - PHP Notice: Undefined index: download_description in xxx/admin/model/catalog/download.php on line 12
2010-12-23 17:35:30 - PHP Warning: Invalid argument supplied for foreach() in xxx/admin/model/catalog/download.php on line 12
Line 420 seems language related?
Yup - Definitely language related - caused by me disabling the default and only language. As a result the Download Name field hadn't shown up in the insert download admin page. It still allowed me to choose and submit a file though. Perhaps this could be looked at so that the behaviour would be to return an error on the page itself.SiteE@se wrote:
Line 420 seems language related?
The language switcher code will now just have to be deleted manually from the header.tpl template file. I always thought the advice had been to disable this and the currency in the admin backend? Perhaps things have changed ......
thanksJAY6390 wrote:I can confirm that I've had a weird issue with the search too - The problem is this lineIt assumes you are in a subfolder for your location, when in fact it's not always the caseCode: Select all
url = location.protocol + "//" + location.host + "/" + pathArray[1] + '/';
You can fix it usinginstead. This needs to be done inCode: Select all
url = '<?php echo HTTP_SERVER; ?>';
Code: Select all
/catalog/view/theme/your-theme/template/common/header.tpl

Who is online
Users browsing this forum: No registered users and 22 guests