FridayNight Posted January 27, 2007 Share Posted January 27, 2007 (edited) ... at least an idea ... Edited January 27, 2007 by FridayNight Quote Link to comment Share on other sites More sharing options...
andytc Posted January 27, 2007 Share Posted January 27, 2007 ... at least an idea ... Why not try Front page featured products ? it does that , but displays in 2 columns. Quote Link to comment Share on other sites More sharing options...
sweetyjenny Posted January 31, 2007 Share Posted January 31, 2007 Hi. I'm Jenny. I have install Star Product v 1.6 and have trouble turning it on at the admin side. Did I miss a step or two? And before this contribution I have installed Graphical Borders v2.1 and was going to install individual boxes v1.2 after this star features. :'( Quote Link to comment Share on other sites More sharing options...
HSMagic Posted February 25, 2007 Share Posted February 25, 2007 After reading the thread I figured out how to "unfix" the HTML by removing "strip_tags" from the code... now the products look as they were intended. Also saw a similar question that went unanswered: How to remove the curved corner from the box? It ignores the "false, false" that other boxes use... so I'm still trying to figure this out. Quote Link to comment Share on other sites More sharing options...
toadyyy Posted March 14, 2007 Share Posted March 14, 2007 Apologies if this has been asked/answered already but I'm painfully new to this!! Installed contribution fine. Did the mod listed to get tax, also did the mod to get image to click through to product description, finally I can live with a large image showing. Thanks to all you guys for your inputs on these. What I can't work out is how to get the desription in the Star Product box to use the HTML formatting I have put into said description!! Can someone put it to me like I'm a five year old please??? Thanks!! Quote Link to comment Share on other sites More sharing options...
i2Paq Posted March 19, 2007 Share Posted March 19, 2007 Apologies if this has been asked/answered already but I'm painfully new to this!! Installed contribution fine. Did the mod listed to get tax, also did the mod to get image to click through to product description, finally I can live with a large image showing. Thanks to all you guys for your inputs on these. What I can't work out is how to get the desription in the Star Product box to use the HTML formatting I have put into said description!! Can someone put it to me like I'm a five year old please??? Thanks!! In includes\modules\star_product.php find en remove 2x strip_tags. Also, to have the fontsize look better and nicer change: .star-product { font-family: Verdana, Arial, sans-serif; font-size: 12px; font-weight: normal; color: #000000; } To: .star-product { font-family: Verdana, Arial, sans-serif; font-size: 10px; font-weight: normal; color: #000000; } Quote Norman in 't Veldt Moderator osCommerce The Netherlands Link to comment Share on other sites More sharing options...
i2Paq Posted March 19, 2007 Share Posted March 19, 2007 Hi the prices are taken of the price of product It does not show the special price, only the regular price! I'm looking into this to see if I can fix this "bug". Quote Norman in 't Veldt Moderator osCommerce The Netherlands Link to comment Share on other sites More sharing options...
i2Paq Posted March 19, 2007 Share Posted March 19, 2007 It does not show the special price, only the regular price! I'm looking into this to see if I can fix this "bug". OK, the problem is caused by the tax-fix on page four (4). So, just change Line 39 and line 60: $products_price = $currencies->display_price($star_products['products_price'], tep_get_tax_rate($star_products['products_tax_class_id'])) . '</td> into: $products_price = $currencies->display_price($star_products['final_price'], tep_get_tax_rate($star_products['products_tax_class_id'])) . '</td> Quote Norman in 't Veldt Moderator osCommerce The Netherlands Link to comment Share on other sites More sharing options...
toadyyy Posted March 20, 2007 Share Posted March 20, 2007 i2Paq thank you very much for your follow up. Was being a bit thick r.e. formatting, have now edited in stylesheet.css. Quote Link to comment Share on other sites More sharing options...
loziofester Posted May 10, 2007 Share Posted May 10, 2007 hi - sorry bad english I've big problem side ADMIN When i set on star produc i redirect logoff is impossible change staus product star. i think haved a proble whith a session and chace tank you Quote Link to comment Share on other sites More sharing options...
edeal4u Posted May 15, 2007 Share Posted May 15, 2007 thank you all very much for releasing this contributions. we really like it. however, we are getting the following error messages: Fatal error: Class 'contentBoxHeading' not found in /home/martnova/public_html/storefront/admin/star_product.php on line 5 can someone please tell us how could we fix the problem? it seems that there is something not being included in the pakcage so that star_product.php can't find such class called 'contentBoxHeading'.. thank you, edeal4u Quote Link to comment Share on other sites More sharing options...
carl_skerritt Posted May 22, 2007 Share Posted May 22, 2007 Hi, I had this 1054 problem. It is to do with a change in supported syntax in MySql 5. I fix it on my site, so thought I share the fix. Change Line 20 in the star_products.php to the following $star_products_query = tep_db_query("select substring(pd.products_description, 1, 598) as products_description, p.products_id, p.products_image, p.manufacturers_id, p.products_price, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price, p.products_tax_class_id, sp.product_id from ((" . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_STAR_PRODUCT . " sp) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id) where p.products_id = pd.products_id and p.products_status = '1' and pd.products_description != '' and p.products_id=sp.product_id and pd.language_id = '" . $languages_id . "'"); that should fix it. hi guys i need a litle help, this contribution give me this error "1054 - Unknown column 'p.products_id' in 'on clause' select substring(pd.products_description, 1, 598) as products_description, p.products_id, p.products_image, p.manufacturers_id, p.products_price, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price, p.products_tax_class_id, sp.product_id from products p, products_description pd, star_product sp left join specials s on p.products_id = s.products_id where p.products_id = pd.products_id and p.products_status = '1' and pd.products_description != '' and p.products_id=sp.product_id and pd.language_id = '4' [TEP STOP]" i see every steps and everything its ok the contribution is a star_product 1.5, i dont now what i can do plese help me whit this~. best regards Quote Link to comment Share on other sites More sharing options...
FridayNight Posted June 3, 2007 Share Posted June 3, 2007 ... sorry for asking a similar question again :-" is there a mod for displaying a group of star products randomly? e.g. I have around three featured products which I want to display on the front page. THX Quote Link to comment Share on other sites More sharing options...
Onkel Sid Posted June 8, 2007 Share Posted June 8, 2007 For some reason i get a lot of space under my buttons. Anyone know have to fix this. I woud like my buttons to be just over the frame. Or even better the frame smaller. Thanks Quote Link to comment Share on other sites More sharing options...
Guest Posted June 9, 2007 Share Posted June 9, 2007 Hi, I had this 1054 problem. It is to do with a change in supported syntax in MySql 5. I fix it on my site, so thought I share the fix..... Carl, thanks for the re-posting of that "1054 Error" Fix. It nearly drove me nuts -All day Today!! :thumbsup: Quote Link to comment Share on other sites More sharing options...
benilope Posted July 31, 2007 Share Posted July 31, 2007 Is it possible to change the size of the box /Per Quote Link to comment Share on other sites More sharing options...
Get-Wireless 2 Posted August 12, 2007 Share Posted August 12, 2007 (edited) I have now installed more pics 6 version 2 dated 19th Feb by matix france, I also tried to put the image thumbnailer mod on, which works really well except that star product doesnt seem to allow it. I am guessing its something to do with the image in star product but not sure how to rectify the problem. Look at http://www.get-wireless.co.uk/dev to see what I get Instead of my star product and th rest of my index page I get Fehlende® oder ungültige® Größenparameter! In the star product box Can anyone help resolve this ? Also I would like instead of when the image is clicked it opening the image in a new page it just takes them into the product like clicking on the info button Regards Shaun Edited August 12, 2007 by Get-Wireless 2 Quote Contributions installed so far Discount Coupon Codes Ultimate SEO Urls Star Product Product Description Header template Modern design Search box Add to favorites Discount Plus All Manufacturers Loginbox Best Lightbox V2 Optional Related Products Plus Many more Link to comment Share on other sites More sharing options...
stevemills Posted August 13, 2007 Share Posted August 13, 2007 I have Star Product working fine. What I need to do is strip away the price display (as in "Hide Price if Less Than $0.00"). Where do I edit the files to stop showing a price? All my items have various prices as attributes, none of them are free. ;) Quote Link to comment Share on other sites More sharing options...
stevemills Posted October 8, 2007 Share Posted October 8, 2007 I am missing everything after Star Product on my Index page. The right column and footer are both missing. Can anyone point to what is wrong with my code? I get right column and footer on ALL other pages. <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0"><tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="main"><?php echo tep_customer_greeting(); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_MAIN; ?></td> </tr> <? // STAR PRODUCT START... if (SHOW_STARPRODUCT=="true") { ?> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_STAR_PRODUCT); ?></td> </tr> <? } // STAR PRODUCT END... ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> </table></td> </tr> </table></td> <?php } ?> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> Quote Link to comment Share on other sites More sharing options...
Guest Posted November 4, 2007 Share Posted November 4, 2007 I just installed this mod twice and get this error on the store index page? Warning: Cannot modify header information - headers already sent by (output started at /home/content/m/t/s/mtsblori/html/store/includes/database_tables.php:66) in /home/content/m/t/s/mtsblori/html/store/includes/functions/general.php on line 1183 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/content/m/t/s/mtsblori/html/store/includes/database_tables.php:66) in /home/content/m/t/s/mtsblori/html/store/includes/functions/sessions.php on line 67 What did I do wrong? :blink: Quote Link to comment Share on other sites More sharing options...
agentjensen Posted November 5, 2007 Share Posted November 5, 2007 STARPRODUCT AND PHP5 :huh: Is not working at my testsite. My normal store works with PHP4, but my host is upgrading to PHP5.... I have a testsite with exactly same shop, runs with PHP5 and when starproduct is enabled my startpage "fucks" up.... Anyone that has exspirience with this??? Best regards. Agent Jensen / Michael. Quote Link to comment Share on other sites More sharing options...
crazymetzel Posted November 21, 2007 Share Posted November 21, 2007 Hi How can i display a special price in this contrib??? I want it to show the same way as in product description, first the old price and after it the new special price. is it possible???? Quote Link to comment Share on other sites More sharing options...
guillaume7684 Posted January 12, 2008 Share Posted January 12, 2008 Hello, I installed the contribution "star_product_v_1.6_1" , everything works well but in the catalog the product doesn't appear!!!! Thank you to help me. Quote Link to comment Share on other sites More sharing options...
Tsuri Japan Posted January 13, 2008 Share Posted January 13, 2008 Hi, I had this 1054 problem. It is to do with a change in supported syntax in MySql 5. I fix it on my site, so thought I share the fix. Change Line 20 in the star_products.php to the following $star_products_query = tep_db_query("select substring(pd.products_description, 1, 598) as products_description, p.products_id, p.products_image, p.manufacturers_id, p.products_price, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price, p.products_tax_class_id, sp.product_id from ((" . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_STAR_PRODUCT . " sp) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id) where p.products_id = pd.products_id and p.products_status = '1' and pd.products_description != '' and p.products_id=sp.product_id and pd.language_id = '" . $languages_id . "'"); that should fix it. Great thanks for this info...this totally fixed my site that was having the infamous 1054 MySql 5 problem. Note to the above poster agentjensen about this fix. Nigel Quote Link to comment Share on other sites More sharing options...
Jayman11 Posted January 14, 2008 Share Posted January 14, 2008 Ok, love this mod, however.... I cannot for the life of me figure out how to shorten the description that shows up. I want to cut it in half. Couldnt find anything in the module itself and can't figure out what to look for in myphpadmin in the star product table to change. Anyone? Jayman Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.