
coolpapes
Members-
Posts
59 -
Joined
-
Last visited
Everything posted by coolpapes
-
OPC address not displaying city, state zip
coolpapes replied to coolpapes's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
Nevermind. I just replaced those 2 files with the current versions on Github and it works fine. -
OPC address not displaying city, state zip
coolpapes replied to coolpapes's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
Can anybody give me any insight into how to fix this? I think the html is generated by js but I don't know js well enough to troubleshoot. I think its either in themes/mytheme/order-address.js or order-ops.js Please help. -
OPC address not displaying city, state zip
coolpapes replied to coolpapes's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
This is still a problem. Has anybody solved this yet? -
I think the problem is in the product-list-colors.tpl : <ul class="color_to_pick_list clearfix"> {foreach from=$colors_list item='color'} <li> <a href="{$link->getProductLink($color.id_product, null, null, null, null, null, $color.id_product_attribute)|escape:'html':'UTF-8'}" id="color_{$color.id_product_attribute|intval}" class="color_pick"style="background: {$color.color};"> {if file_exists($col_img_dir|cat:$color.id_attribute|cat:'.jpg')} <img src="{$img_col_dir}{$color.id_attribute|intval}.jpg" alt="{$color.name|escape:'html':'UTF-8'}" title="{$color.name|escape:'html':'UTF-8'}" width="36" height="36" /> {/if} </a> </li> {/foreach} </ul> I can't find where the $colors_list array is set, not that I would know what to do if I did find it. Can anyone help? I need to get this figured out. Thank you.
-
I can't figure out how the order of the little color picker boxes on the product list is determined. The colors are displayed in one order on the product list and a different order on the product page. Here's a link to the product list: http://discountwallc.../1880-geometric The order on the product page is the order of the colors in the list of values in the BO but the order on the product list makes no sense. I am using 1.6.0.8 but have updated product-list-colors.tpl with the latest forge update. I just cannot figure this out. Any help would be greatly appreciated. Thank you.
-
Product Combinations - Images - Fancybox
coolpapes replied to Haegendoorn's topic in Core developers
Same problem with 1.6.0.8. Any solutions? Modules?- 1 reply
-
- Combinations
- Images
-
(and 2 more)
Tagged with:
-
Product combination default image
coolpapes replied to afattahi's topic in Configuring and using PrestaShop
I have the same problem. It would be better to only load the images of the default combination. Does anyone know how to make this happen? -
I cannot figure this out. When I go to the checkout page the address initially does not display the line containing the city, state and zip. When I examined the HTML I find this: <li class="address_city, State:name postcode" style="display: none;">Morgantown, Pennsylvania 19520</li> The content is there but the inline style is causing it not to display. I cannot find where this is set. Does anyone have any ideas about this?
-
My site crashed and these are the error messages I am getting FO: Fatal error: Class 'IndexController' not found in /home2/fredfred/public_html/classes/controller/Controller.php on line 135 BO: Notice: Undefined index: AdminOrdersControllerCore in /home2/fredfred/public_html/classes/PrestaShopAutoload.php on line 121 Warning: require(/home2/fredfred/public_html/) [function.require]: failed to open stream: No such device in /home2/fredfred/public_html/classes/PrestaShopAutoload.php on line 121 Fatal error: require() [function.require]: Failed opening required '/home2/fredfred/public_html/' (include_path='/home2/fredfred/public_html/tools/htmlpurifier/standalone:.:/opt/php52/lib/php') in/home2/fredfred/public_html/classes/PrestaShopAutoload.php on line 121 Can anyone tell me what they mean?
-
[SOLVED] Create new hook in the header for blocktopmenu
coolpapes replied to NelutuO's topic in OUT - 1.6.0.11 [7 Jan 2015]
I also have it hooked to displayHeader as well as the action hooks and AfterTop -
[SOLVED] Create new hook in the header for blocktopmenu
coolpapes replied to NelutuO's topic in OUT - 1.6.0.11 [7 Jan 2015]
To summarize this is what I did: I created a new hook in the DB named "AfterTop" I added the following code to blocktopmenu.php just befor the closing bracket: public function hookAfterTop($params){ return $this->hookDisplayTop($params); } public function hookdisplayHeader($params){ $this->context->controller->addJS($this->_path.'js/hoverIntent.js'); $this->context->controller->addJS($this->_path.'js/superfish-modified.js'); $this->context->controller->addJS($this->_path.'js/blocktopmenu.js'); $this->context->controller->addCSS($this->_path.'css/blocktopmenu.css'); $this->context->controller->addCSS($this->_path.'css/superfish-modified.css'); } Then I added this hook in header.tpl: {hook::exec('AfterTop')} </div> </header> Then I selected the Top Menu module in the BO and clicked on configure and then save to recompile it. That moved the menu to the bottom of the header, after the container div so I could make it full width. I hope this helps clarify things -
[SOLVED] Create new hook in the header for blocktopmenu
coolpapes replied to NelutuO's topic in OUT - 1.6.0.11 [7 Jan 2015]
Nevermind I fixed it by following Vekia's excellent tutorial: how to move block top menu module to top section Thanks for all you do Vekia -
[SOLVED] Create new hook in the header for blocktopmenu
coolpapes replied to NelutuO's topic in OUT - 1.6.0.11 [7 Jan 2015]
I did exactly as instructed, at least I think I did, and still no css. I just get plain text. What am I doing wrong? I created the hook in DB, added the code to the mod php file and added the new hook to header.tpl with the code provided. Am I missing something? -
[SOLVED] Create new hook in the header for blocktopmenu
coolpapes replied to NelutuO's topic in OUT - 1.6.0.11 [7 Jan 2015]
I did this and and the menu is in the right location but superfish-modified .css is not loading or something. The menu displays as plain text and when I inspect element superfish is not there. -
If a product has a combination AND a specific price the base price displayed on the product page is doubled and the percentage reduction is taken from the doubled base price resulting in a doubled product price. I tested this with a clean install of 1.6.0.5 with the unmodified default theme as well as 1.6.0.8 with a modified default theme and got the same result. The price displays correctly on the subcategory page and in the cart, the only place where it displays incorrectly is on the product page.
-
Here is what I discovered. If a product has a combination AND a specific price the base price displayed on the product page is doubled and the percentage reduction is taken from the doubled base price resulting in a doubled product price. I tested this with a clean install of 1.6.0.5 with the unmodified default theme and got the same result. The price displays correctly on the subcategory page and in the cart, the only place where it displays incorrectly is on the product page. Please help.
-
I just upgraded to 1.6.0.8 and I noticed that any products w/ specific price set display double the actual price. Here is a link to an example: http://discountwallcovering.com/leaf-scroll/1430-aspen-leaf-raised-print-wallpaper.html The correct price flashes when loading the page but is quickly replaced by the double price. The price also is correct in the cart. I am using a modified default theme. Thanks
-
Advanced Stock Man. and Supply Order broken in 1.6?
coolpapes replied to bloggus's topic in OUT - 1.6.0.11 [7 Jan 2015]
How do I do that? -
Advanced Stock Man. and Supply Order broken in 1.6?
coolpapes replied to bloggus's topic in OUT - 1.6.0.11 [7 Jan 2015]
Also the Search/ Filter feature doesn't work. I can't search by date or supplier or anything. -
Advanced Stock Man. and Supply Order broken in 1.6?
coolpapes replied to bloggus's topic in OUT - 1.6.0.11 [7 Jan 2015]
I've seen other bug reports on this that were cancelled because the problem was supposedly fixed but it clearly wasn't. I hope this report gets addressed and not ignored. This is an important feature that I really need to work properly. It would be nice if I didn't have to go through 5 different order statuses either. I place an order then I receive it. I think that changing the order status to "order received completely" from any other status should add the stock. I shouldn't have to go through several statuses. -
Advanced Stock Man. and Supply Order broken in 1.6?
coolpapes replied to bloggus's topic in OUT - 1.6.0.11 [7 Jan 2015]
Does anyone have a fix for this yet? -
where are the featured products?
coolpapes replied to alfredopacino's topic in OUT - 1.6.0.11 [7 Jan 2015]
It looks like the video got cut off at the end. It looks like you were about to modify homefeatured.php.