Jump to content
  • Posts

    16
  • Joined

  • Last visited

Posts posted by [email protected]

  1. As far as I can tell all my permissions are as they should be, but I thought I'd mention what they said about zero as a permission. As for

    Out of curiousity, Dirty Butter, are you running PHP as a FastCGI application?

    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. While trying to figure out what is wrong with our site right now I saw a statement in hostgator that if the file permission was set to zero I would have to contact Support - that this could not be changed from the user's end.

    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. 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.

  4. 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.

  5. Honestly, I think if the word "Estimated" is added before the time there is no problem. That is what the USPS says on their website.

    Perhaps something in Languages to change nomenclature? And be able to add the word "Estimated"?

    ​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 Change

    Change the wording to whatever you want it to be.

  6. Quote from bsmither on page 1:

    Also, we may want to think about having CubeCart remove the 2-Day and 1-Day phrases. This is an estimate only provided by USPS on how many days USPS will have the package in transit. There are clueless customers out there who will think that you, the store owner, are promising one or two day delivery from the date the order is placed.

     

    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.php

    Search 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) {

     

     

  7. 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"

    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/

    index.1.jpg

  8. 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...