Jump to content
  • Posts

    16
  • Joined

  • Last visited

Everything posted by [email protected]

  1. I have no idea what the question means, let alone the answer LOL. Oh, I misread. I thought they changed the permissions to 0. As you mentioned, that was just a statement by hostgator.
  2. This not a good sign. If the hosting company changed the file ownership and permissions, it most likely means that it is either causing a resource overuse or is somehow being exploited. Since the ownership of said file was probably changed to a tech support username within your hosting company, you will never be able to modify it. This is a red flag. Hopefully it's nothing major. Out of curiousity, Dirty Butter, are you running PHP as a FastCGI application?
  3. Check out your css. Look for row.collapse (middle, small, large, etc.). There is padding there. You'll find it.
  4. Ohh, I think know what you mean. Add clear: left To the ccpower tag in your css. Might work.
  5. Sorry for the double post, but here's what I see. Am I missing something?
  6. I don't understand what the issue is. I see the footer just fine. Are you talking about the site being responsive?
  7. Clear the cache and tell them to close their browser and try again. To clear the cache go to : Advanced>>MaintenanceClear all the caches for good measure.Also, ask them to log out and log back in once the above is done.
  8. The syntax looks correct. Have you checked the column "google_category" to see what it reads? I just tested it using: UPDATE CubeCart_inventory SET google_category=REPLACE(google_category,'Baby & Toddler > Baby Toys & Activity Equipment > Baby Soothers','test')The google_category was set to "test" Just to clarify, I was using phpMyAdmin to execute the query.
  9. This would be a good feature. Deleting an item sends it to "trash". Trash would be accessible via the backend and items could be restored. Similar to WordPress. A new database table would be needed. On delete, instead of deleting that entry (product), it would move it to the trash table.
  10. ​There is nothing in the language files to edit since the $response variable is pulled from USPS. Therefore, you would need to change the code mentioned above to: // START Delivery Time Textual Change $response = str_replace("1-Day", 'Estimated 1-Day', $response); $response = str_replace("2-Days", 'Estimated 2-Days', $response); $response = str_replace("3-Days", 'Estimated 3-Days', $response); $response = str_replace("4-Days", 'Estimated 4-Days', $response); $response = str_replace("5-Days", 'Estimated 5-Days', $response); $response = str_replace("6-Days", 'Estimated 6-Days', $response); $response = str_replace("7-Days", 'Estimated 7-Days', $response); // END Delivery Time Textual ChangeChange the wording to whatever you want it to be.
  11. Quote from bsmither on page 1: This is referencing CC Version 6.05. References may vary. To remove the USPS delivery time, you need to edit the following file: /modules/shipping/USPS/shipping.class.phpSearch near line 144 for: $response = $request->send();Add after: // START Delivery Time Removal $response = str_replace("1-Day", '', $response); $response = str_replace("2-Days", '', $response); $response = str_replace("3-Days", '', $response); $response = str_replace("4-Days", '', $response); $response = str_replace("5-Days", '', $response); $response = str_replace("6-Days", '', $response); $response = str_replace("7-Days", '', $response); // END Delivery Time Removal Before: if ($response) {
  12. https://www.paypal.com/us/cgi-bin/webscr?cmd=p/mer/express_return_summary-outside
  13. The client decided to upgrade to 4.2.3. The site looks strikingly similar to the old version of CubeCart at the request of the owner. It took quite a bit of work, but all in all, the outcome is exactly what he wanted. A lot of the above features are still in tact with a couple of more that were requested. With the change, the search results for Real Photo Postcards dropped to rank 2 on Google, but I suspect that will be remedied in the next few weeks. http://www.henrydeeks.com/shop/
  14. Site: http://www.henrydeeks.com/ Note: This is an 2.0.7 install; I cannot modify the description's typo of 2.0.2 An older version of cubecart. The template is designed to the exact specifications of the client, so I had no artistic license. What's been changed: 1) Only shows the sub category images on page 1 2) Randomizes the category's first page when there are more than 1 page 3) View All in Category option when there are more than 1 page 4) Sort by ascending, descending or default order when viewing all 5) Include Category Name in shop nav url for better search engine placement 6) Showing X-Y of Z (as in showing 1-5 of 89) in category 7) If total cart price is under $100.00, then shipping is $5.00; if above $100.00, then shipping is $2.00 8) Page 1 of Google when searching for "Real Photo Postcards"
×
×
  • Create New...