Re: Paypal with surcharge?
I went on your website.
It doen't work.
I click Add to Basket.
It dosen't add it.
It must be something wrong with that.
Can you please come back to me with the solution?
Thanks
- Fri May 14, 2010 11:22 pm
- Replies 5
- Views 1197
Re: Creating a new product from an existing product
You mean the COPY button is under "Catalog>Pruducts" area.
If your answer is YES then I cannot see anything to do with COPY.
I have attached the image here for you to see it.
Thanks for your reply.
- Thu Apr 22, 2010 10:22 pm
- Replies 6
- Views 1122
Creating a new product from an existing product
Hello All, Creating a new product from an existing product ========================================= I have products that they have almost same features and images apart from few changes. When I create a new product, if there was an option, I could copy it from an existing product then change little...
Jump to post- Thu Apr 22, 2010 8:01 pm
- Replies 6
- Views 1122
Re: [1.4.7] doesn't send out email -RESOLVED
Thanks for your kindly help. It has been resolved. admin/controller/setting/setting.php In the "setting.php" file, I changed 32 to 64... then no errror anymore. find: $this->request->post['config_email'])) < 32)) replace with: $this->request->post['config_email'])) > 64))
Jump to post- Thu Apr 22, 2010 5:27 pm
- Replies 4
- Views 1664
Resolved
Thanks for your kindly help.
It has been resolved.
admin/controller/setting/setting.php
In the "setting.php" file, I changed 32 to 64... then no errror anymore.
$this->request->post['config_email'])) > 32
change to:
$this->request->post['config_email'])) > 64
- Thu Apr 22, 2010 5:27 pm
- Replies 2
- Views 840
increase the text filed valu of the email in CP - Resolved
Hello Does anyone know how can I increase the text filed valu (textfield" maxlength="50") in the control pannel where; Settings>General tab =================== E-Mail: Currently when I add an email that has more than 32 charecters, it gives the following error. ..........................
Jump to post- Wed Apr 21, 2010 5:17 pm
- Replies 2
- Views 840
Re: [1.4.7] doesn't send out email
I am wondering if the email is very long and maybe the filed has been set for a short valu... I think I found it out.. The email filed has been set to 32.. if the email address is bigger than 32 then it gives an error. But I don't know where I can set this value bigger valu.. Can you please let me k...
Jump to post- Tue Apr 20, 2010 8:09 pm
- Replies 4
- Views 1664
Re: [1.4.7] doesn't send out email
There were no changes in 1.4.7 to email. Not sure about 1.4.5 or 1.4.6. I'll see what I can find Also can you try to make the email look more like your real one? info@mydomainemail.co.uk that worked fine in the email area of settings. Assuming you just replaced the real with a fake, but I assume yo...
Jump to post- Tue Apr 20, 2010 8:02 pm
- Replies 4
- Views 1664
[1.4.7] doesn't send out email
I have the latest version (Version 1.4.7) of the OpenCart installed in my server. I have created email. I have tested email and it receives and sends email with no issues. I also contacted to my web hosting company and they said there is no restriction to send out email from my server. So... In cont...
Jump to post- Tue Apr 20, 2010 6:15 pm
- Replies 4
- Views 1664
Disabling the Latest Products
Hello,
I am using the OpenCart Version 1.4.7.
I have disabled the "Latest Products" at the control panel. However, it still shows in front of the store page.
Is there anyway, to disable it?
Thanks for your help.
- Mon Apr 19, 2010 3:26 am
- Replies 2
- Views 962
Image sizes and specially popup image entry place
Product Image Thumb Size:250x250 Product Image Popup Size: 500x500 Category List Size:120x120 Product List Size:100x100 When we attached/added image we can do it with the following options Category>Data>Image Products>Dat>Image Products> Image My question is: ================ In front of the store, ...
Jump to post- Sat Apr 17, 2010 8:50 pm
- Replies 0
- Views 546
SOLVED
catalog>view>theme>stylesheet>stylesheet.css In the stylesheet.css made the following changes: #column_left { float: left; width: 0px; <---- change it from 190px margin-left: 10px; clear: left; display: none; <---- add this line } #content { margin-right: 190px; margin-left: 0px; <----- this is very...
Jump to post- Fri Apr 16, 2010 4:15 am
- Replies 1
- Views 616
[Solved]Opencart only with middel and right side pane
Hello,
I am trying to get rid off the left pane of the opencart and just leave the right side and middle side pane of the cart.
I already disabled the modules on the left side.. but it looks blank..
I was wondering if that is possible.
Thanks for your help. I know I am giving you a hard time...
- Thu Apr 15, 2010 7:51 pm
- Replies 1
- Views 616
Re: Product don't appear infront store after 10
"country" has nothing to do with products. You likely didn't add them to the current store. Try using the "copy" feature on one of the working products. Does the copied one show up? I had read one of the post. It was mentioned there. That is why I wrote the country. You are righ...
Jump to post- Thu Apr 15, 2010 5:01 pm
- Replies 7
- Views 1184
Re: Product don't appear infront store after 10
Ha, didn't even notice he was in the completely wrong spot. :o /catalog/controller/common/home.php foreach ($this->model_catalog_product->getLatestProducts(8) as $result) to foreach ($this->model_catalog_product->getLatestProducts(20) as $result) Might be worth putting something in the settings tab...
Jump to post- Thu Apr 15, 2010 4:59 pm
- Replies 7
- Views 1184
Re: Product don't appear infront store after 10
Thank you. That is solved the issue. Jump to postrph wrote:'start' => ($page - 1) * 20
- Thu Apr 15, 2010 4:58 pm
- Replies 7
- Views 1184
Product don't appear infront store after 10
Hi, I have inserted 15 products in the control pannel. However, I only can see 10 product at the public side of the store. I have changed $data = array( 'sort' => $sort, 'order' => $order, 'start' => ($page - 1) * 10, 'limit' => 10 'limit' => 10 to 20 I still cannot see any differnces. in admin>cont...
Jump to post- Thu Apr 15, 2010 8:57 am
- Replies 7
- Views 1184
Re: Post any OpenCart 1.4.7 Bugs here!
There is a minor bug in the admin\controller\localisation\country.php and admin\controller\localisation\zone.php files. In getList() method when creating the $data array, there is a hard coded 10 for the start and limit. Its not broke, it just doesn't use the admin limit. Change: 10 To: $this->conf...
Jump to post- Thu Apr 15, 2010 8:46 am
- Replies 242
- Views 121871
phpBB
I was wondering if you would be able to give me some guidance on how you have insert the phpBB forum in to your website.
I mean resized it into your websie.
Thanks
- Fri Apr 02, 2010 11:10 pm
- Replies 1
- Views 746
Re: Image Popup Resize
Go to admin side, then under the "system/manage store then under action click the "edit" button. A new page will appear on that page click the "image" tab..
From that page you can change all image sizes.
Hope that helps you.
- Thu Apr 01, 2010 2:51 am
- Replies 16
- Views 8856