

leelee2023
Members-
Content count
28 -
Joined
-
Last visited
Everything posted by leelee2023
-
Hi there, I've just installed this great contrib but when I've come to test it - my discount code is generating the message: "The minimum order total for this coupon is £20.00. Some or all of the products in your cart are excluded." Now I've read some of the other posts with regards to this and it seems people had exclusions within the discount rules.. but I've just checked on mine and there are absolutely none featured! Just wondering then if anyone has any clues/advice on how to resolve this issue? Edit: And just to clarify, the basket total is currently £79.96 and this 5% discount should be applicable to any conditions Thanks, Lee
-
Oops forget that.. I've just found the mod bit :) Nice one!!
-
Hey there ggbig, just wondering if this was ever achieved? I've just installed the mod but I couldn't see this feature, which is something I'd absolutely love to see on there!
-
[Contribution] Additional Images Module
leelee2023 replied to Parikesit's topic in General Add-Ons Support
Using: v2.2 RC2a of the osCommerce and 2.2.0 of this contrib I'm not sure my previous explanation said as I wanted it to. When I upload the image now and refresh the product info page, the visible image is the correct size specified within my admin section. BUT there is a whole section of white space (the dimensions of the original image uploaded) and the resized image is shown in the middle. If I then mouse over the other images and go back to the resized parent image.. this now is shown in full size and takes up the whole space.. which is a bit of a dilema! -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Hello (again!) ;) I've got my grid set as thumbnails and it looks awesome with 9 products (3 on each row) BUT if there are an amount of products that isnt a multiple of 3... then the bottom set of images isn't laid out from left to right... it's sort of scattered across the page. (see image below for example) Am I missing an option in the admin settings, or is there another way to configure this? -
[Contribution] Additional Images Module
leelee2023 replied to Parikesit's topic in General Add-Ons Support
Hmm well I took a look and I set my Admin>Config>Images to be around 180 width each and on the Admin>Congif>Additional Images to be true for image sizes. But yet the parent picture area is still huge (although the picture has been resized to it's limits) so now it's a smaller picture within a large white space. Any further thoughts? Cheers -
[Contribution] Additional Images Module
leelee2023 replied to Parikesit's topic in General Add-Ons Support
Hi all, I have a quick question regarding this awesome contrib! This is how my product info currently looks after having configured a few items around: The only issue I have is that I need the parent image to be restricted in size... so it doesn't take up the whole product info width (like it is on the example). Any ideas? -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Thanks ever so much for all your help spooks... "U DA MAN" :lol: -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Thanks again spooks, very helpful. Regarding my (Previous Post) do you have any thoughts as how to incorperate that code into the product_listing? Honestly, this is my last issue and shalln't bug you anymore once this one is working :lol: -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Ok.. one more *minor* issue I've been wondering about - the Sort by drop down... I would like to alter the order of the list... i.e. Product Name, Product Name, Price, Price instead of the current Product Name, Price, Product Name, Price... I've looked in product_listing.php and tried altering the stuff on around line 32 (the cases - which is the only reference to ALPHA_ORDER etc) but I can't work out how to re-order! Any ideas? Cheers -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Hi airsofting, I was looking on my product_listing.php earlier and I was playing with the settings at the top. When I enabled $ttip as true it duplicated the images like with your first issue. I know that's probably not very useful, but it might be a start! -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Ok Spooks.. I might need you help after all! B) These were my original instructions: "10. In catalog/includes/modules/product_listing.php find around line 110 the section that reads as follows:" case 'PRODUCT_LIST_PRICE': $lc_align = 'right'; if (tep_not_null($listing['specials_new_products_price'])) { $lc_text = ' <s>' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $lc_text = ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } break; and change it to read as follows: case 'PRODUCT_LIST_PRICE': $lc_align = 'right'; if ($listing['products_msrp'] > $listing['products_price']) { if (tep_not_null($listing['specials_new_products_price'])) { $lc_text = ' <span class="oldPrice">' . $currencies->display_price($listing['products_msrp'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $lc_text = ' <span class="oldPrice">' . $currencies->display_price($listing['products_msrp'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } } else { if (tep_not_null($listing['specials_new_products_price'])) { $lc_text = ' <span class="oldPrice">' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $lc_text = ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } } Now I changed the portion of code starting at line 440 of this Product Listing contrib for the above code, but changing $lc_text to $price. But sadly it just brings all of the products at £0. Any ideas? (Original code I altered) $price = (function_exists(display_short_price)) ? $currencies->display_short_price($products['products_price'], tep_get_tax_rate($products['products_tax_class_id'])) : $currencies->display_price($products['products_price'], tep_get_tax_rate($products['products_tax_class_id'])); if (tep_not_null($products['specials_new_products_price'])) { $price = '<s>' . $currencies->display_price($products['products_price'], tep_get_tax_rate($products['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($products['specials_new_products_price'], tep_get_tax_rate($products['products_tax_class_id'])) . '</span>'; } to this if ($listing['products_msrp'] > $listing['products_price']) { if (tep_not_null($listing['specials_new_products_price'])) { $price = ' <span class="oldPrice">' . $currencies->display_price($listing['products_msrp'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $price = ' <span class="oldPrice">' . $currencies->display_price($listing['products_msrp'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } } else { if (tep_not_null($listing['specials_new_products_price'])) { $price = ' <span class="oldPrice">' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $price = ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } } -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Ok thanks a lot spooks, I'll play around with this - and hopefully won't need to trouble you anymore (although... apologies if I do B) ) -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Not being an expert (hence my other posts begging for help) I'm not great at this.. but to me I'd have thought the include file your referencing doesn't contain the right info. It should be in the catalog/includes/language/english/index.php e.g. define('NUM_ORDER', ': Ascending'); define('APHA_ORDER', ': A-Z'); define('REVERSE_ALPHA_ORDER', ': Z-A'); define('REVERSE_NUM_ORDER', ': Descending'); Even though this was fine for me, I had an additional page that was using the product listing (shop by price contrib) so therefore I had to input this information onto my catalog/includes/language/english/shopbyprice.php also Hope this is of use to you! -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
I'm using the Thumbnail listing option. I would have assumed that modifying that portion of code would then have made at least some modification to the display? If not, I really don't know where else to configure the code! :'( -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Just to give a bit of further info... I've analysed the installation file for that contribution and this one... and the only change I can see (that I haven't already taken account for is)... 10. In catalog/includes/modules/product_listing.php find around line 110 the section that reads as follows: case 'PRODUCT_LIST_PRICE': $lc_align = 'right'; if (tep_not_null($listing['specials_new_products_price'])) { $lc_text = ' <s>' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $lc_text = ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } break; and change it to read as follows: case 'PRODUCT_LIST_PRICE': $lc_align = 'right'; if ($listing['products_msrp'] > $listing['products_price']) { if (tep_not_null($listing['specials_new_products_price'])) { $lc_text = ' <span class="oldPrice">' . $currencies->display_price($listing['products_msrp'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $lc_text = ' <span class="oldPrice">' . $currencies->display_price($listing['products_msrp'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } } else { if (tep_not_null($listing['specials_new_products_price'])) { $lc_text = ' <span class="oldPrice">' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $lc_text = ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } } break; But yet, when I've replaced this for the coding from Prodct Listing Enhancement contrib, the current product_listing.php still isn't including the MSRP! I'm very :huh: right now! -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Sorry The addon can be found here: http://addons.oscommerce.com/info/3574 -
Simple Multi Image Add-on (Un-Limited) with FancyBox Popups
leelee2023 replied to spooks's topic in General Add-Ons Support
Hi all! I've got a bit of a problem! I've installed the contrib and from what I can see within the admin > categories is working fine. The problem is with the product_info.php page. For some reason it was giving me an error of "Product not found" but I went over the instructions several times and now that message has gone and it's just displaying "Our Price: £0.00" and no product heading, info, pictures or anything! (See example: http://yourbrandoutlet.co.uk/catalog/product_info.php?products_id=16 ) Now I uploaded the product_info.php file that came standard with this contrib.. but this also errors (No product name, images or prices) and the page has no header.php, the sideboxes are both below the page etc etc. Just wondering if anyone with better programming ability would kindly offer me some help? Thanks! -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
leelee2023 replied to spooks's topic in General Add-Ons Support
Hi all, I just did a quick search of this thread but can't see to find the answer anywhere. Basically I had the MSRP (Display MSRP & Savings contrib) being displayed with my product listing, but since installing this cracking add-on... It's vanished and I can't seem to work out how to get it back again! Any help would be greatly appreciated! Cheers -
Edit: No worries actually - solved this... was a bit silly on my part! In my include file I didn't include enough in my defining: Previous:'<a href="' . tep_href_link(FILENAME_INFOBOX_CONFIGURATION) . '" class="menuBoxContentLink">' . BOX_HEADING_BOXES . '</a>'. New:'<a href="' . tep_href_link(FILENAME_INFOBOX_CONFIGURATION, 'gID=1', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_HEADING_BOXES . '</a>'.
-
And on other problem I have.... I also have the "Store Mode (Open | Closed | Maintenance)" contrib which basically puts a link to the store opening/closing on the configuration.php page... but since the installation it isn't displayed! Now I have looked at the coding for this page, and the installation for this contrib is still present! Again, any thoughts with this? Cheers!
-
Hi there, Thanks very much for this contribution, it's definitley a HUGE improvement on the standard admin section! Most of my contribs seem to have been installed in to their relevant sections, except the InfoBox. I've fixed this to be in my Tools box.. but as soon as I click on the link the corresponding page is blank! It takes me to .../infobox_configuration.php which I know is the right file - and the header/footer are there but there's no content to be displayed! Any ideas? Cheers
-
Hi all, Just got a quick query that hopefully someone will be able to help me with (I think I've gone past the point of being able to think anymore with this issue) I installed the above contribution into my site and seems to work fine - the page loads as it should, even sending the contact us email says it works. But.. I'm not recieving anything to any of the email adresses I've set up. So, I checked my list of email addresses in the Admin > Config section (which are exactly in the format required) I even started a fresh contact_us.php file (from the original download of the oscommerce package) and tested that - which worked as it should. Then I made the suggested modifications to the page (from the contribution download) - and yet the same problem occurs! It's so frustrating!!! Does anyone have any ideas that could help me? Thanks!
-
Choose Your Recipient for Contact Us Page
leelee2023 replied to leelee2023's topic in General Add-Ons Support
Anyone?!???? -
Hi there, As a few have already mentioned within this thread that they've just recieved "Reference file creation failed." by itself when pressing either of the 3 update buttons for the first time. I've also just experienced the same problem, but cannot work out what it's problem is (others mentioned it was to do with it not being configured properly) Admin User, Password, Directory seem fine (although I do have .htaccess to get to the admin page - is that a problem?) My Start Directory is the only thing I'm a bit iffy about - having changed username to be the username i log into my web host with - this should also be correct! Any help would be much appreciated, I think this tool would be very useful indeed (if I managed to get it working :D) Thanks in advance, Lee