Post by i2Paq » Sat May 15, 2010 2:22 am

Qphoria wrote:yea thats fixed too. just edit the low_order file in catalog/model/total/low_order
and replace the copy/paste of "handling" with "low_order"
If I do copy the "handling" to the "low_order" module and change the "handling" with "low_order" the module does not even show up during checkout.

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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by Qphoria » Sat May 15, 2010 3:59 am

that is not what I said.
edit catalog/model/total/low_order
remove all words that say "handling" with "low_order"

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by VladZablotskyy » Sat May 15, 2010 3:01 pm

New products do not show in the store front....

I have updated to 1.4.7 two weeks ago and everything worked fine until today... I was trying to place an additional image right into the product's description and instead of using the new picture management (which I love by the way) I just used the the "insert image button" in the top of the wysiwyg editor (see the attachment).
Screenshot-2.png

Screenshot-2.png (16.39 KiB) Viewed 7188 times

After browsing the file and hitting "Send it to the Server" button, nothing happened. After this I used the new picture management system to upload the additional image to be placed in the product's description, however once I hit save the product(s) do not show in the front store. They can be found in the admin area, but not in the front end of the store. Tried to ad other products, same looks like they are added and the message says "Success: You have modified products!" - but they do not show in the store, only in the admin area. Would greatly appreciate your help.

New member

Posts

Joined
Wed Oct 07, 2009 3:47 am

Post by i2Paq » Sat May 15, 2010 5:45 pm

Qphoria wrote:that is not what I said.
edit catalog/model/total/low_order
remove all words that say "handling" with "low_order"
I still cannot see what you are talking about.

This is the code:

Code: Select all

<?php
class ModelTotalLowOrderFee extends Model {
    public function getTotal(&$total_data, &$total, &$taxes) {
        if ($this->config->get('low_order_fee_status') && ($this->cart->getSubTotal() < $this->config->get('low_order_fee_total'))) {
            $this->load->language('total/low_order_fee');
             
            $this->load->model('localisation/currency');
            
            $total_data[] = array( 
                'title'      => $this->language->get('text_low_order_fee'),
                'text'       => $this->currency->format($this->config->get('low_order_fee_fee')),
                'value'      => $this->config->get('low_order_fee_fee'),
                'sort_order' => $this->config->get('low_order_fee_sort_order')
            );
            
            if ($this->config->get('low_order_fee_tax_class_id')) {
                if (!isset($taxes[$this->config->get('low_order_fee_tax_class_id')])) {
                    $taxes[$this->config->get('low_order_fee_tax_class_id')] = $this->config->get('handling_fee') / 100 * $this->tax->getRate($this->config->get('low_order_fee_tax_class_id'));
                } else {
                    $taxes[$this->config->get('low_order_fee_tax_class_id')] += $this->config->get('handling_fee') / 100 * $this->tax->getRate($this->config->get('low_order_fee_tax_class_id'));
                }
            }
            
            $total += $this->config->get('low_order_fee_fee');
        }
    }
}
?>
I changed, removed and whatever else that even remotely looks like handling, the only one I can find is:

Code: Select all

            if ($this->config->get('low_order_fee_tax_class_id')) {
                if (!isset($taxes[$this->config->get('low_order_fee_tax_class_id')])) {
                    $taxes[$this->config->get('low_order_fee_tax_class_id')] = $this->config->get('handling_fee') / 100 * $this->tax->getRate($this->config->get('low_order_fee_tax_class_id'));
                } else {
                    $taxes[$this->config->get('low_order_fee_tax_class_id')] += $this->config->get('handling_fee') / 100 * $this->tax->getRate($this->config->get('low_order_fee_tax_class_id'));
                }
            }
 
Whatever I make of it, it still 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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by VladZablotskyy » Sat May 15, 2010 10:42 pm

Never mind Q,
my issue fixed itself (no idea how) - feel free to delete this post along with the one above in this thread. Thanks.
VladZablotskyy wrote:New products do not show in the store front....

I have updated to 1.4.7 two weeks ago and everything worked fine until today... I was trying to place an additional image right into the product's description and instead of using the new picture management (which I love by the way) I just used the the "insert image button" in the top of the wysiwyg editor (see the attachment).
Screenshot-2.png
After browsing the file and hitting "Send it to the Server" button, nothing happened. After this I used the new picture management system to upload the additional image to be placed in the product's description, however once I hit save the product(s) do not show in the front store. They can be found in the admin area, but not in the front end of the store. Tried to ad other products, same looks like they are added and the message says "Success: You have modified products!" - but they do not show in the store, only in the admin area. Would greatly appreciate your help.

New member

Posts

Joined
Wed Oct 07, 2009 3:47 am

Post by Qphoria » Sat May 15, 2010 10:49 pm

i2Paq wrote:
Qphoria wrote:that is not what I said.
edit catalog/model/total/low_order
remove all words that say "handling" with "low_order"
I still cannot see what you are talking about.

I changed, removed and whatever else that even remotely looks like handling, the only one I can find is:

Code: Select all

            if ($this->config->get('low_order_fee_tax_class_id')) {
                if (!isset($taxes[$this->config->get('low_order_fee_tax_class_id')])) {
                    $taxes[$this->config->get('low_order_fee_tax_class_id')] = $this->config->get('handling_fee') / 100 * $this->tax->getRate($this->config->get('low_order_fee_tax_class_id'));
                } else {
                    $taxes[$this->config->get('low_order_fee_tax_class_id')] += $this->config->get('handling_fee') / 100 * $this->tax->getRate($this->config->get('low_order_fee_tax_class_id'));
                }
            }
  
Whatever I make of it, it still does not work.

Just change "handling_fee" to "low_order_fee_fee"
Last edited by i2Paq on Sat May 15, 2010 11:49 pm, edited 1 time in total.
Reason: Added to the confirmed bugs on page 1

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by Moggin » Sat May 15, 2010 11:18 pm

Catalog/language/english/account/success.php - Line 6 or so: priviledges > privileges

Catalog/language/english/checkout/confirm.php - Line 33 or so : it\’s usage limit > should be its

Offered in spirit of helping, not criticism....:)

Active Member

Posts

Joined
Wed May 05, 2010 4:56 am

Post by dannydaman9 » Wed May 19, 2010 4:35 pm

Hi I've had a quick flick through the forum and this seems to be unsolved so far.

There seems to be a problem with the newsletter subscription. Customers seem to recieve the newsletter even if they are not subscribed to it. Is there a fix for it or is it still unsolved.

Thanks

Site finished:
Image
http://www.labelstogo.co.uk


User avatar
New member

Posts

Joined
Tue May 11, 2010 7:00 pm
Location - Manchester, England

Post by Qphoria » Thu May 20, 2010 12:06 am

Moggin wrote:Catalog/language/english/account/success.php - Line 6 or so: priviledges > privileges

Catalog/language/english/checkout/confirm.php - Line 33 or so : it\’s usage limit > should be its

Offered in spirit of helping, not criticism....:)
Fixed in 1.4.8. Thanks!

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by Qphoria » Thu May 20, 2010 1:56 am

dannydaman9 wrote:Hi I've had a quick flick through the forum and this seems to be unsolved so far.

There seems to be a problem with the newsletter subscription. Customers seem to recieve the newsletter even if they are not subscribed to it. Is there a fix for it or is it still unsolved.

Thanks
I've tested this back in 1.4.0 and again just now with 1.4.7. There is no bug that I can see. I have 5 customers. 2 have newsletter checked. 3 do not. I send an email to newsletter only customers and I step it through the debugger. It only sends an email to the 2 customers that have newsletter checked. The other 3 do not. Perhaps this was fixed a while back and you are using an old version

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by American » Sat May 22, 2010 4:30 pm

Searched around but couldn't find if this has been an issue with anyone else.

Enabled the Specials block and set the quantity to 3 but it's not limiting how many are shown in the block.

Am I missing something?

Attachments

2010-05-22_03-28.jpg

Specials Block - 2010-05-22_03-28.jpg (28.6 KiB) Viewed 7034 times

2010-05-22_03-27.jpg

Specials - 2010-05-22_03-27.jpg (15.9 KiB) Viewed 7034 times


Brad G
Granbury, Texas
OC 1.5.6.4


User avatar
New member

Posts

Joined
Fri May 21, 2010 7:39 am
Location - Fort Worth, Texas

Post by i2Paq » Sat May 22, 2010 5:32 pm

Have a look here: Post any OpenCart 1.4.7 Bugs here!

Check the Specials bug.

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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by American » Sat May 22, 2010 9:01 pm

Like I said above, I've searched....but I'll look again. How about a link?

Because if it's this 'fix' it didn't fix my problem.

http://forum.opencart.com/viewtopic.php?p=65131#p65131

Brad G
Granbury, Texas
OC 1.5.6.4


User avatar
New member

Posts

Joined
Fri May 21, 2010 7:39 am
Location - Fort Worth, Texas

Post by Qphoria » Sat May 22, 2010 9:53 pm

1. EDIT: catalog/controller/module/specials.php

2. FIND:

Code: Select all

$results = $this->model_catalog_product->getProductSpecials($this->config->get('special_limit')); 
3. REPLACE WITH:

Code: Select all

$results = $this->model_catalog_product->getProductSpecials('pd.name', 'ASC', 0, $this->config->get('special_limit')); 
Last edited by i2Paq on Sun May 23, 2010 2:43 pm, edited 1 time in total.
Reason: Added to the confirmed bugs on page 1

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by i2Paq » Sun May 23, 2010 1:36 am

Q, is it a bug?

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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by jefrey1983 » Sun May 23, 2010 3:30 am

can't insert category at 1.4.0 i was having this error it was previously working without problem before then suddenly i can't insert any category then i tried upgrading to 1.4.7 hoping the error will be gone but i am still encountering it

User avatar
Active Member

Posts

Joined
Sat Jan 30, 2010 6:58 pm

Post by American » Sun May 23, 2010 4:25 am

Q... you and I are getting to know each other early on huh?

That did the trick.

Thanks again!

Brad G
Granbury, Texas
OC 1.5.6.4


User avatar
New member

Posts

Joined
Fri May 21, 2010 7:39 am
Location - Fort Worth, Texas

Post by Qphoria » Sun May 23, 2010 1:32 pm

Yes it is a bug that was found a few weeks ago in the main bug thread. I just didn't feel like finding it

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by i2Paq » Sun May 23, 2010 2:43 pm

Qphoria wrote:Yes it is a bug that was found a few weeks ago in the main bug thread. I just didn't feel like finding it
No problem ;)

I've added the solution to the first page and merged the topics.

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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by American » Sun May 23, 2010 5:48 pm

The Specials Block bug code fixes the quantity shown but does not update the block when new specials items are added. Shows the first three (in this case I have it set to 3) items in the specials page so until those items sell than the block will not show the others.

It should either show the latest sale/specials additions or random rotation.

Brad G
Granbury, Texas
OC 1.5.6.4


User avatar
New member

Posts

Joined
Fri May 21, 2010 7:39 am
Location - Fort Worth, Texas
Who is online

Users browsing this forum: No registered users and 26 guests