Re: Manufacturer Box
Sorry, I wasn't paying attention.
Yes, setting width kind of works, but not with IE.
It clips the options.
I kind of have a javascript fix that works with both IE and everone else's browsers.
I just have to solve the select box clipping.
The options display correctly.
Will post when done.
- Thu Aug 27, 2009 10:12 pm
- Replies 4
- Views 2492
Re: Manufacturer Box
In catalog\view\theme\default\template\module\manufacturer.tpl
Change
Code: Select all
<select onchange="location=this.value">
Code: Select all
<select size="20" onchange="location=this.value">
- Wed Aug 26, 2009 9:32 pm
- Replies 4
- Views 2492
Re: Continue Shopping to Index Page
You could use something like
Code: Select all
$this->data['continue'] = "history.back()";
in the cart controller file.
The referer method is buggy as IE does not set referer. Jump to post
- Wed Aug 19, 2009 3:53 am
- Replies 8
- Views 3212
Re: how to show product description and manufacturer in home
When description is saved, special characters are escaped.
You just need to convert back to characters you need in you display.
You can check out the manual on php special character handling as well as mysql have some docs
- Sun Aug 16, 2009 2:51 am
- Replies 8
- Views 6462
Re: how to show product description and manufacturer in home
Try
Code: Select all
<?php echo html_entity_decode($products[$j]['description']);?>
- Sat Aug 15, 2009 11:10 pm
- Replies 8
- Views 6462
Re: SMTP Mail Help!
I'd check the mail server logs.
You might find it is sending the mail, but due to invalid email address,
the recipient server is rejecting it.
I have my server route all outgoing mail through a valid email address.
- Wed Aug 12, 2009 8:50 pm
- Replies 1
- Views 2202
Re: jquery form submit mystery
As I am not that familiar with this bit of code, I can only suggest you are missing the setting of the variable $button_add_to_cart so you get the proper language. To test, why don't you try changing the php echo from the variable $button_add_to_cart to a string like "AddToCart" . That wil...
Jump to post- Tue Jul 21, 2009 7:47 am
- Replies 51
- Views 30832
Re: jquery form submit mystery
$this->data['products'][] = array( 'name' => $result['name'], 'model' => $result['model'], 'product_id' => $result['product_id'] // THIS WOULD BE A GOOD PLACE TO START 'rating' => $rating, 'stars' => sprintf($this->language->get('text_stars'), $rating), 'thumb' => HelperImage::resize($image, 120, 12...
Jump to post- Sat Jul 18, 2009 3:58 am
- Replies 51
- Views 30832
Re: jquery form submit mystery
This is sample from category. ID. Everything including button, input, image, quantity have unique id. <?php if ($category_addtocart) { ?> <?php $option = $product_options[$key]['option_status']; If ($option) {?> <div class="options"><?php echo $options_text; ?></div> <?php } else { ?> <div...
Jump to post- Tue Jun 30, 2009 9:30 am
- Replies 51
- Views 30832
Re: jquery form submit mystery
You can use ajax add to cart and not have W3C Validation Problems.
I have it in all modules, category, search, and product pages and they all validate fine.
- Tue Jun 30, 2009 7:35 am
- Replies 51
- Views 30832
Re: List of accessories for each product
I converted a package, related products into a stand alone module for 7.9 which sounds like what you are after. Maybe Danial could create something like that. It only loads on the product page, and only if related products are available for the product you are viewing. http://forum.opencart.com/inde...
Jump to post- Tue Feb 10, 2009 2:06 am
- Replies 1
- Views 2132
Re: Enable Countrys and Zones in Admin 7.9F
Updated to correct zone update.
Jump to post- Sat Feb 07, 2009 5:27 am
- Replies 2
- Views 13144
Re: Quebec province problem
Sorry, there is an error in Zone update.
Corrected file is attached.
Up load this to admin/controller/
and then edit Quebec and past in new name.
- Sat Feb 07, 2009 5:20 am
- Replies 1
- Views 12357
Re: Undefined variable and character display in Opera
Fido
In \catalog\view\template\module/layout.tpl
swap line 1 with line 3
I think that will cure the rendering problem.
- Fri Feb 06, 2009 10:44 am
- Replies 6
- Views 4554
Re: Offline Credit Card payment processing
I'm no expert on database or database security, but I know some other carts use a separate
database for information like credit card as well as Password and user information.
- Thu Feb 05, 2009 10:36 pm
- Replies 21
- Views 44765
Re: Featured Products
I think his problem with the tables is not the version of cart, but the version of Latest/Featured/Specials.
Most of his page is CSS except the contrib. The original version was tables in the TPL.
Qphoria's update was CSS
- Thu Feb 05, 2009 8:54 am
- Replies 18
- Views 32041
Re: Enhanced Search for 7.9 Final
It does not need consecutive words in a phrase. You also have the ability to search description words that won't be displayed. That way, you could include search terms like 30" inches and whether the keywords contain 30" or 30 inches, results are returned. You can also include commonly mi...
Jump to post- Thu Feb 05, 2009 12:12 am
- Replies 2
- Views 12564
Enhanced Search for 7.9 Final
I have attached a little package to enhance the catalog search.
Maybe some one could try it out and see how it works.
All files are virgin 7.9 with only the search enhancements so they are drop in and run.
There are no database modifications required.
Let me know if there are any problems.
- Wed Feb 04, 2009 9:55 pm
- Replies 2
- Views 12564
Re: Block Countries
Log into PHPMyAdmin and open up you database. Click on SQL Query at the top for the screen and a Query box will open. Paste the SQL into this box and press the go button at the bottom. You will get a confirmation that the query has updated 240 row in country and 3841 in zone. You are done. Just logo...
Jump to post- Wed Feb 04, 2009 6:43 am
- Replies 26
- Views 14742
Re: buggy issue with cart or basket
I think you have an htaccess problem.
I had a similar situation on a windows server.
It probably works fine with URL Alias turned off.
I had to use this RewriteRule to correct it with all versions of opencart.
Code: Select all
RewriteRule ^(.*) index.php/$1 [L,QSA]
- Tue Feb 03, 2009 8:46 am
- Replies 5
- Views 15344