Jump to content

fettlebox

Member
  • Posts

    213
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by fettlebox

  1. The other strange thing is my admin panels is telling me I'm running 5.1.1 & that I should upgrade. If I do the install again it tells me I'm already upgraded -

    Your store has already been upgraded. No further action is required.

    Maintenance/upgrade then tells me I'm on 5.1.3 . I restore from backup again & it tells me I'm on 5.1.1 & I should upgrade - do an upgrade again & it tells I'm already upgraded! Restoring my files & db doesn't seem to be restoring everything it should. If it was the fault would have disappeared & it would let me re-upgrade.

    I did see the product images the 2nd time. Must have been a cache thing.

    Be sure to clear your caches?

    Aye - I did that.

    Hitting the sack now. Logged a ticket over an hour ago & no email to confirm they got it & no activation email for my registration on the support site either.

  2. Did the upgrade tonight & on certain categories adding an item to the cart made a duplicate of the home page appear where the cart is shown in top right corner. I restored the site from the backups to 5.1.1 & it's still doing the same thing. Anyone seen this? See screenshot below.

    I've had to close the store & submitted a ticket.

    Before I rolled back I checked my product list - I didn't see a thumbnail image against the products there. I thought that was a new feature?

  3. As paypal are handling payments it seem it's also recommended to protect login details - the risk being someone uses the same details on multiple accounts such as banking etc so if the user/pass are captured a hacker could use them on the users other accounts.

  4. Thanks! I struggled to get the letters to stand out any more but overall I'm pleased given the short period from your fix to opening the shop that I had to come up with something - just some old but relevant papers & stock arranged on a table & a digi compact on a tripod. Maybe when things settle down I'll take another look at it - busy making sure everything going smoothly at the moment!

    I'm really enjoying using this product after a few false starts with other software & the support here has been excellent - thankyou

  5. Mobile skin - the 1000x155 logo that doesn't show up on the full size site does show up in the mobile site. Not ideal for the mobile users. However because the logo is failing to show in the regular full size site (I have it set as the background as a workaround) I've just resized it to 243 pixels wide & reloaded it. So now I have a small logo which shows on mobile & full size on desktop. Result!

  6. I deleted the current logo & uploaded my new 1000x155 graphic. If I did the above correctly it made the left side of the paragraph block clickable with the home page as the target but my graphic didn't show. I've got around that my uploading my logo as the new header_background_gradient png. Seems to have achieved the same affect. I had to make the image 157 deep as I got a small line of repeat at the bottom.

    It looks much better as I'd struggled to create a logo with the size restraints I had before it started pushing the header layout about. Really pleased with it now & will be opening shortly!

    Many thanks for your time in helping me achieve the look I wanted. It is much appreciated.

  7. If I've removed the right ) this is what I have now.This give me a blank page (admin panel still accessible) http://www.fettlebox.co.uk/

    
    // Validate email if email delivery
    
       if (strtolower($_POST['gc']['method']) == 'e' && !filter_var($_POST['gc']['email'], FILTER_VALIDATE_EMAIL)) {
    
    	$GLOBALS['gui']->setError($GLOBALS['language']->catalogue['error_gc_email']);
    
    	$error = true;
    
       }
    
       if (!$error) {
    
    	$GLOBALS['cart']->add($gc['product_code'], $_POST['gc']);
    
       } else {
    
    	$GLOBALS['smarty']->assign('POST', $_POST['gc']);
    
       }
    
      }
    
      $GLOBALS['smarty']->assign('LANG_CERT_VALUES', sprintf($GLOBALS['language']->catalogue['gift_certificate_value'], $GLOBALS['tax']->priceFormat($gc['min'], true, true), $GLOBALS['tax']->priceFormat($gc['max'], true, true, $gc['expires']));
    
      $ctrl_allow_purchase = ($GLOBALS['session']->get('hide_prices')) ? false : true;
    
      $GLOBALS['smarty']->assign('ctrl_allow_purchase', $ctrl_allow_purchase);
    
      $GLOBALS['smarty']->assign('GC', $gc);
    
      $content = $GLOBALS['smarty']->fetch('templates/content.certificates.php');
    
      $GLOBALS['smarty']->assign('SECTION_NAME', 'giftcertificate');
    
      $GLOBALS['smarty']->assign('PAGE_CONTENT', $content);
    
    

  8. Yes, this 511. I upgraded maybe a week to ten days ago.

    
    // Validate email if email delivery
    
       if (strtolower($_POST['gc']['method']) == 'e' && !filter_var($_POST['gc']['email'], FILTER_VALIDATE_EMAIL)) {
    
        $GLOBALS['gui']->setError($GLOBALS['language']->catalogue['error_gc_email']);
    
        $error = true;
    
       }
    
       if (!$error) {
    
        $GLOBALS['cart']->add($gc['product_code'], $_POST['gc']);
    
       } else {
    
        $GLOBALS['smarty']->assign('POST', $_POST['gc']);
    
       }
    
      }
    
      $GLOBALS['smarty']->assign('LANG_CERT_VALUES', sprintf($GLOBALS['language']->catalogue['gift_certificate_value'], $GLOBALS['tax']->priceFormat($gc['min'], true, true), $GLOBALS['tax']->priceFormat($gc['max'], true, true, $gc['expires'])));
    
      $ctrl_allow_purchase = ($GLOBALS['session']->get('hide_prices')) ? false : true;
    
      $GLOBALS['smarty']->assign('ctrl_allow_purchase', $ctrl_allow_purchase);
    
      $GLOBALS['smarty']->assign('GC', $gc);
    
      $content = $GLOBALS['smarty']->fetch('templates/content.certificates.php');
    
      $GLOBALS['smarty']->assign('SECTION_NAME', 'giftcertificate');
    
      $GLOBALS['smarty']->assign('PAGE_CONTENT', $content);
    
    

  9. OK

    As per 1 above I have copied & pasted that as the language string.

    Same with 2. The site then returns an entirely blank page in Firefox/Ubuntu - in IE/XP it returns a 500 error.

    There's one less closed bracket in the line 713 code in the 2nd snippet when compared to the first. If I add the third ) the site comes back but with no info on the gift certificate page about value, time or currency.

×
×
  • Create New...