Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

ashleylr

Archived
  • Posts

    129
  • Joined

  • Last visited

Everything posted by ashleylr

  1. The current module we are using right now saves the order when the customer gets to the confirmation screen, meaning if they don't click "submit order", there is still already one created (this is an older paypal IPN module). Are there any current ones that don't require paypal payments pro, that generate the order only when the "submit order" button is clicked (not before)? Any good ones you'd recommend? Thanks!
  2. I am having the same issue, it appears when there is different billing and shipping, when the order confirmation is sent, they are the same. Is this happening with anyone else? Any ideas how to fix?
  3. Has anyone gotten this contribution to work with the AJAX Attributes contribution? I've been working on it all day, adding the files to my admin_files table, but I can't for the life of me get it to work. Any ideas???? Thanks!
  4. Has anyone gotten this contribution to work with the Admin Access Level Accounts 2.0? I just installed that and it requires all files in the admin side of the site to be added to a permissions folder to show properly. I've been playing around with it all day but I can't for the life of me get it to work. Any ideas?
  5. I installed the Admin Access Level Accounts contribution yesterday and it is working just great. We just hired a remote employee and set up a log in for her (I tested it and its working fine on my computer). However when she tries to log onto the site using her computer with the log in information I set up, she is getting the following error: Authorization Required This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required. I don't think this is an .htaccess error since this contribution doesn't really use .htacess (and even if it was required from before we installed this contribution, then it doesn't make sense that it would work on my computer and not hers). We had her install a new browser with default security settings and nothing worked. She does have Zone Alarm firewall, could something in those settings block the log on capability? Does anyone have any ideas or suggestions on things we can try to make this work for her? I'm at my wits end. Thanks!! Ashley
  6. I am having issues with my site where any text fields that previously were populated with a number, are now blank. For example in the product listing page I had a quantity box that used to be populated with a 1 (or if the product had to be ordered in multiples of 4, it would be pre-populated with a 4). Now, that field is just blank. I can enter a number in it and click "add to cart", but then when I get to the shopping cart page, the dollar amount is calculated correctly but again the quantity field is shown as blank. This has lead to recent problems where if a customer didn't notice that something had to be ordered in multiples of 4 and they only ordered 3, the shopping cart would calculate a price based upon quantity 4, but since the quantity isn't displaying, all they see is that the price is higher than it should be. I have no idea where the coding is to control these fields to make sure they are populated with the correct figures. I have gone over all the contributions I recently installed but I can't figure where things went wrong. You can check out what I'm talking about here: www.momentsofelegance.com Anyone have any ideas on how I can fix this? I can post my shopping cart code if need be. Thanks a million!!!
  7. Does anyone know how to make this contribution work with other product listings (other than the main product_listing.php) so that the volume prices will show up? Specifically my specials.php, bestsellers page, shop by price page, froogle feeds, featured products box, advanced search results, etc. On my product_listing.php page I have it set up so that it reads "volume priced from...." so the customer sees the volume price before they even click on the product. I want to be able to show the same thing on all the other product listings so people aren't turned off by initially seeing a higher price. Does anyone know the hack in the other files to do this?
  8. Tom, I am interested in your "guaranteed install" service but I do have a question as to how this contribution might interact (or not) with a modification I have made to my images on the product_info pages. I eliminated the pop up window that shows up when a product is clicked on for a larger image and instead installed a contribution that allows the picture to be resized and displayed on the page bigger and smaller when it is clicked on (again rather than having a popup). Check out my website: www.momentsofelegance.com. I would still like to have this functionality rather than the pop up windows on the images. I have already installed the contribution except for the html_output page which is giving me some trouble and I think may need some slight modifications to your code in order to make this work. check out my site (to see what I mean as far as how the images are set up) and I've also pasted below my tep_image function for you to see what changes were made. Please let me know if you think you'd be able to get this contribution to work without using the popu ups and I can go ahead an place the install order on your website. Thanks!!! // The HTML image wrapper function function tep_image($src, $alt = '', $width = '', $height = '', $parameters = '') { if ( (empty($src) || ($src == DIR_WS_IMAGES)) && (IMAGE_REQUIRED == 'false') ) { return false; } if ( (CONFIG_CALCULATE_IMAGE_SIZE == 'true') && (empty($width) || empty($height)) ) { if ($image_size = @getimagesize($src)) { if (empty($width) && tep_not_null($height)) { $ratio = $height / $image_size[1]; $width = $image_size[0] * $ratio; } elseif (tep_not_null($width) && empty($height)) { $ratio = $width / $image_size[0]; $height = $image_size[1] * $ratio; } elseif (empty($width) && empty($height)) { $width = $image_size[0]; $height = $image_size[1]; } } elseif (IMAGE_REQUIRED == 'false') { return false; } } // alt is added to the img tag even if it is null to prevent browsers from outputting // the image filename as default $image = '<img src="' . tep_output_string($src) . '" border="0" alt="' . tep_output_string($alt) . '"'; if (tep_not_null($alt)) { $image .= ' title=" ' . tep_output_string($alt) . ' "'; } if (tep_not_null($width) && tep_not_null($height)) { $image .= ' width="' . tep_output_string($width) . '" height="' . tep_output_string($height) . '"'; } if (tep_not_null($parameters)) $image .= ' ' . $parameters; $image .= '>'; return $image; } //// // The HTML form submit button wrapper function // Outputs a button in the selected language function tep_image_submit($image, $alt = '', $parameters = '') { global $language; $image_submit = '<input type="image" src="' . tep_output_string(DIR_WS_LANGUAGES . $language . '/images/buttons/' . $image) . '" border="0" alt="' . tep_output_string($alt) . '"'; if (tep_not_null($alt)) $image_submit .= ' title=" ' . tep_output_string($alt) . ' "'; if (tep_not_null($parameters)) $image_submit .= ' ' . $parameters; $image_submit .= '>'; return $image_submit; }
  9. Nevermind, I figured it out!!! I was using a modified version of product_listing (a different version to display the products in columns) and it had its own pricing display rules. I deleted those and called out the standard getpricestringshort function and it worked. Thanks so much for your help!!
  10. What part of the priceformatter page are you replacing with that code that JEWbacca wrote? I don't see which part in the priceformatter file would control the category listing, it all looks to me like it controls the product listing. The way my category prices are displayed is controlled by my catalog/includes/modules/product_listing.php page so I guess I don't see how modifying the priceformatter will override that hard coding. What part did you remove from the priceformatter?
  11. Irina, As it stands, the priceformatter class is not called up on the product_listing page (catalog/product_listing.php), so I don't see how that modification within just the price formatter itself would change how the price was displayed in the category listing. It appears that it would only change how the table was displayed when looking at the actual product. Am I wrong there?
  12. Also, it seems as though that "as low as" code was written for display in the product info page, I still want the grid with all the different prices to show up there. I need the "as low as...." pricing to show up in the product listing (where it lists all the products for a particular category). will it work there? If so, where exactly should I paste that code? Also, I'm assuming I'll have to do other modifications elsewhere if I want a product to show up in the search by price function (if one of the price tiers is less than the searched for price)? Thanks so much for helping me figure this out!!! Ashley
  13. JEWBacca - where do I paste that code? Into the products listing module? Thanks!!!
  14. I have installed the Quantity price breaks per product contribution. It works great, but I need to figure out if there is some way to use the lowest price tier pricing as the price that shows on the product listings. I want to list it as something like "As low as $2.00". That way people are not turned away by seeing the highest of the 3 prices that we set up for very small quantities (most of my customers buy in bulk anyways). Does anyone know how to do this? I would also possibly like the capability for the lowest price to register when the customer is searching for a product by price. For example when they want to find items that are less than $1.00, it will pull up items that are $.99 in my tier 3 of pricing. If anyone could help point me in the right direction, I'm not aware of other contributions that do this, I think I would need to modify some of the coding from Quantity Price Breaks. Thanks so much!!! Ashley
  15. I have installed the Quantity price breaks per product contribution but I could not find an official support thread. The contribution works great, but I need to figure out if there is some way to use the lowest price tier pricing as the price that shows on the product listings. I want to list it as something like "As low as $2.00". That way people are not turned away by seeing the highest of the 3 prices that we set up for very small quantities (most of my customers buy in bulk anyways). Does anyone know how to do this? I would also possibly like the capability for the lowest price to register when the customer is searching for a product by price. For example when they want to find items that are less than $1.00, it will pull up items that are $.99 in my tier 3 of pricing. If anyone could help point me in the right direction, I'm not aware of other contributions that do this, I think I would need to modify some of the coding from Quantity Price Breaks. Thanks so much!!! Ashley
  16. I have this contribution installed and it is working great, except for one problem. I have the infobox portion of the URL removed as you suggested: $categories_string .= tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">'; // CategoryBox Enhancement //$categories_string .= tep_href_link(FILENAME_DEFAULT, 'infoBox=' . $boxId . '&' . $cPath_new) . '">'; However when I used this category string rathern than the one with the infobox part in it, I notice that my subcategories won't display when I've clicked on a category that has them. I don't have my categories included in more than one infobox so it should be clear which one needs to open. Is there someway not to use the URL with the "infobox=" part in it and also have the subcategories show up in the left hand navigation when their parent category is opened? Thanks, Ashley
  17. Thanks Radders, I'll give that a try. Of course it will probably be a few days before I know if its working, but we'll keep our fingers crossed!! Hopefully this can help others with the same problem too. :) Ashley
  18. thats an idea but how would I be able to isolate just the affiliate pages? wouldn't I have to put that code on my product_info.php page and thus keeping robots out of non-affiliate versions as well? Is there a way to do an if statement in the meta tags heading part where if there is a referral then perform the no follow command and otherwise allow robots on the page? I'm not a coder so I'm not sure how that would work...
  19. Has anyone had a problem with duplicate content in the serps on google and yahoo with this contribution? I have recently been penalized for some duplicate content (relating to another issue) but I believe I could be getting small penalties for the fact that google is indexing some of the affiliate URLs and when they match exactly to my regular URLs, I get duplicate content. I found the following post that Chemo made on another forum regarding how to fix this but I'm not a coding expert so I'm hoping someone understands what he is recommending and can point me in the right direction for how to fix it. Here is what he said: Anyone know how this can be fixed? Thanks!!!
  20. I've gone through this all morning, if I go back to my previous category structure I think that the same thing will happen. now that google knows about both "versions" of the URL, I'm not sure how to get rid of them in their database. The only thing I can think of is to do a 301 redirect from all of my previous URL's to the new ones. so my /wedding-favors-unique-wedding-favors-c-26_100.html will be redirected to /unique-wedding-favors-c-100.html. Anyone know how to do this? Of course if anyone has any better suggestions I would greatly appreciate it. Thanks! Ashley
  21. I have Chemo's Ultimate SEO URL's installed. About a month ago I installed the "additional category box" contribution that would allow me to create multiple category boxes to better organize and display my categories each under their own heading. I was getting great rankings on google prior to this. However in the last few weeks my rankings have been dropping while subsequently google's index of my site has gone from ~9000 pages to ~19000 pages. Today I realized what is going on. When I moved the categories around and brought up some lower level categories to top level categories in other boxes, I ended up changing the URL that is generated for that category page (from the Ultimate SEO URL's contribution). For example, one of my headings is unique wedding favors. In my previous configuration, this category was a subset of the main category called Wedding favors. Now it is a top level category all of its own. The old URL was: http://www.momentsofelegance.com/catalog/u...s-c-26-_52.html The new URL after the category redesign is: http://www.momentsofelegance.com/catalog/u...avors-c-52.html The way that Chemo's contribution worked is that everything between the / and the c-52 were re-written but non essential to the destination page. All that the website needs to see is the c-52 part and it knows what page to take the browser to. I could also have http://www.momentsofelegance.com/catalog/d...there-c-52.html The problem with this is that now google is seeing these as separate pages and is indexing all different versions of the ....... -c-52.html. Then it sees it as duplicated content and I am penalized. Does anyone have any ideas on how I can fix this? I'd rather now have to go to my old category structure but if that is the only way, I will do it. I"m hoping there is someone out there who has been through this that can help. Thanks!! Ashley
  22. Hi, I'm hoping someone can help me here as I am not sure what is going on with my site. In my whos_online page, I have the following: Currently there are 151 visitors online Duplicate IPs:116 Bots: 2 Me!: 0 Real Customers: 33 116 of the duplicate IP addresses are from 127.0.0.1. I have seen online that this is supposed to be "me", but I am positive I don't have 116 sessions open. All of them are on different pages as well. Any ideas as to what is going on here? Thanks for your help! Ashley
  23. Has anyone been able to get flash banners to come up in the list of affiliate banners? My gif's are working fine but all the .swf files are broken. Any help would be much appreciated!! I tried the Flash Banners contribution but I'm getting an error with their code. Thanks!!
  24. I can't imagine that is the problem as I've had no problems with previous versions of whos_online. My path is: domain.com/catalog/includes/spiders.txt. I will copy my file below in case you think that might be a problem too... $Id: spiders.txt,v last update 2005/03/01 17:58:17 dgw_ Exp $ bot abot ebot nbot obot rbot sbot crawl slurp spider accoona almaden.ibm.com appie appie 1.1 architext aspseek aspseek aspseek ask jeeves asterias asterias2.0 atomz augurfind baiduspider bannana_bot booch diamondbot bdcindexer crawler crawler@fast docomo fast-webcrawler fluffy the spider frooglebot gazz goforit grub geobot GOOGLE googlebot gulliver holmes homer henrythemiragorobot ia_archiver iconsurf iltrovatore indexer inktomi infoseek ivia jetbot kit_fireball knowledge lachesis larbin linkwalker lwp lycos_spider mantraagent mediapartners mercator mj12 moget/ moget/1.0 muscatferret myweb MICROSOFT-GLOBAL-NET msnbot newmsbot nameprotect nationaldirectory-webspider naverrobot ncsa beta netmechanic netresearchserver ng/ ng/1.0 npbot nutch osis-project pear. polybot pompos poppelsdorf rambler scooter scrubby searchbot seeker seventwentyfour sidewinder smartwit sohu spyder sleek spider slurp/si [email protected] steeler/ steeler/1.3 szukacz t-h-u-n-d-e-r-s-t-o-n-e teoma /teoma tutorgig turnitinbot ultraseek vagabondo voyager/ voilabot w3c_validator websitepulse worldlight worm yahoo yahoobot zao/ zao/0 xenu zippp zyborg zyborg/1.0
×
×
  • Create New...