Search:

Type: Posts; User: jonnyboy22

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds; generated 11 minute(s) ago.

  1. v151 Re: ssl. padlock with yellow triangle. Problem? If so, how to fix?

    This usually indicates some files on the page are not going through the SSL (any files via http not https). e.g. <img src="http://yourdomain.com/pic.jpg"> instead of <img...
  2. v139a Re: I want a popup window when opening site for first time

    You're welcome :)
  3. v139a Re: I want a popup window when opening site for first time

    Hi Marko,

    Take a look at http://coverpopjs.com. Not used it myself but it is cookie based and should be easy enough to add to your template :)
  4. Replies
    1
    Views
    766

    v150 Re: Displaying links for number of reviews

    Hi, regarding increasing the number of pages to display, I believe if you edit MAX_DISPLAY_PAGE_LINKS in your database configuration > configuration_value, it should display more pages. Change this...
  5. Replies
    1
    Views
    822

    v151 Re: changing a font color

    Do you mean the hover over green or the grey?

    The green is in templates/brighton_pets/css/stylesheet.css line 9:

    a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li...
  6. Replies
    2
    Views
    795

    Re: Where do I get the category url?

    If you are not using 'pretty urls', you can get the URL from the admin. Simply navigate to the category in your Zencart admin and view the URL.

    e.g. back end admin url
    http://<your...
  7. v150 Re: Background Image Consistency via http: vs https:

    Hi,

    What is your CSS? Are you using the full path to the background image in the stylesheet, instead of the relative path? Can you post your URL?
  8. Replies
    2
    Views
    1,555

    v150 Re: Adding a reward point module/add-on

    Hello,

    Have you already installed the points module? You will need to install this first before making the coding changes listed on SquirrelHosting. The coding changes are to display the points...
  9. Re: Move ZenCart to a new hosting company guide

    Hello Rob

    Thank you for your feedback. We were debating whether to remove the 777 from the guide to force users to contact their host to get the correct setting. I know the Official ZenCart...
  10. Re: Move ZenCart to a new hosting company guide

    Hello Stevesh

    Thank you for your feedback, its appreciated.

    These steps may be unnecessary on some Hosting companies (including ours) but others may not CHMOD etc. Due to this we thought we...
  11. Our guide for moving a Zen Cart store to a new hosting company.

    Hello,

    We have had a customer ask us how he can move his ZenCart website over to us. With this in mind we have created a guide (using...
  12. Re: product_listing.php display large image

    Hi byte
    Yes im aware of the seo page size issue and smaller other pages are used for the main keywords etc. I'm open to suggestions regarding not loading the images until needed etc but redirecting...
  13. Re: product_listing.php display large image

    Hi Byte

    Thanks for your reply.

    It was for this site

    Wanted the image and description in a popup lightbox which was also in the page so we can increase the amount of text on the page for SEO...
  14. Re: Car Parts Site - Bulk Uploading - A Few Questions

    the easy populate module will probably do what you require (you may already have it installed if you're sending your designer csv files)
  15. Replies
    3
    Views
    458

    Re: Newbie Question

    as you already have a layout i'd recommend creating a zencart template to match. Once you get used to the template system its quite easy. Try downloading a free one and play about editing it. If you...
  16. Replies
    4
    Views
    940

    v151 Re: Customizing the Front index.php Page

    you can always comment out the html for the side you want to remove. e.g.


    <?php if ($this_is_home_page)
    { echo " <!-- "; ?>

    ALL YOUR RIGHT COLUMN CODE HERE

    <?php if ($this_is_home_page)...
  17. Re: Homepage is quick,but the product page is very slowly! why?

    seems to take a while to connect. Once connected loads reasonable speed. homepage is quicker suspect its something to do with the mysql access speed.

    Check your error logs to make sure nothing is...
  18. product_listing.php display large image

    Hello,

    Wonder if anyone can help me. I'm trying to display the large image in product_listing.php.

    at the moment I have


    case 'PRODUCT_LIST_IMAGE':
    $lc_align = 'left';
    ...
  19. Replies
    1
    Views
    639

    Blog Plugin : Little help please

    Hello, I’m trying to write a fairly simple blog add-on.

    For the moment I’ve set it up to connect to a different database and I’ve got it to echo the data regards layout etc from Zencart templates....
  20. Re: Product description on checkout_confirmation

    Hi Ajeh

    Got it working with your help. Thanks again :)
  21. Re: Product description on checkout_confirmation

    here you go, thanks again.



    // build output for email notification
    $this->products_ordered .= $this->products[$i]['qty'] . ' x ' . $this->products[$i]['name'] ....
  22. Re: Product description on checkout_confirmation

    Hi Ajeh

    Thanks for the help, much appreciated.

    Ive tried


    '<td class="product-details" align="left" valign="top" width="30">' . $this->products[$i]['qty'] . '&nbsp;x ' ....
  23. Re: Product description on checkout_confirmation

    Ive managed to get
    <?php echo zen_trunc_string(zen_clean_html(stripslashes(zen_get_products_description($order->products[$i]['id'], $_SESSION['languages_id']))), 209) ;?> working great but I'm...
  24. Re: Product description on checkout_confirmation

    hi Ajeh.

    Thanks for the help. At the moment i got it working using


    <? $itemimage = $db->Execute("select products_description from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id =...
  25. Product description on checkout_confirmation

    Hello

    Does anyone know how to put the product description onto index.php?main_page=checkout_confirmation ?

    Tried <?php echo $order->products[$i]['description']; ?> but no luck. (guessing due to...
  26. Replies
    5
    Views
    2,892

    Re: Reward points module : 0 points earned

    I have now submitted this to the Zencart team to be included in the plugin section :)

    You can download it from http://squirrelhosting.co.uk/hosting-blog/hosting-blog-info.php?id=7 in the meantime.
  27. Replies
    659
    Views
    195,481

    Re: Recover Cart

    i have a client who needs this aswell so ill chip £20 in
  28. Replies
    5
    Views
    2,892

    Re: Reward points module : 0 points earned

    Fixed it. to add the points for product listing do the following;

    To make your points display in your product listing edit the following.
    1) in your product_listing.php file (in includes>modules)...
  29. Replies
    5
    Views
    2,892

    Re: Reward points module : 0 points earned

    Just a quick one does anyone know how to display the reward points in the product listing (not product info page)

    Take a look at http://www.rmsupply.co.uk/ to see what i mean.

    Ive currently...
  30. Replies
    5
    Views
    2,892

    Re: Reward points module : 0 points earned

    Fixed, upgraded to 1.5 and re-installed 1.5 mod all works fine now.
  31. Replies
    5
    Views
    2,892

    Reward points module : 0 points earned

    Hello, Im having a bit of an issue with my reward points module. Looked though all the reward points thread but cant seem to find a solution.

    Ive installed reward points module on 1.3.9h and...
  32. Replies
    1
    Views
    964

    1.3.9.h general security question

    Hello,

    I have a client who is running a website with approx 10 mods.

    At the moment all the mods (besides 1) aren’t compatible with 1.5.

    Thus for now he is stuck with 1.3.9h.

    Can anyone...
  33. Replies
    10
    Views
    1,477

    Re: Upgrade Question for DEV/Mods etc

    "Doing a full comparison of all files is exactly what the normal upgrade process involves."

    True true, regards people taking short cuts, I have two clients who use your system that are quite 'tech...
  34. Replies
    10
    Views
    1,477

    Re: Upgrade Question for DEV/Mods etc

    Actually guess I can answer my own question with win merge on that one!
  35. Replies
    10
    Views
    1,477

    Re: Upgrade Question for DEV/Mods etc

    That's what I'm asking your opinion as an admin/someone who knows the code inside out. From what I can tell and understand the end result is the same.

    If i create a 1.3.9h fresh install no mods...
  36. Replies
    10
    Views
    1,477

    Re: Upgrade Question for DEV/Mods etc

    That's not remotely what I'm saying and i dont appreciate that being suggested for obvious reasons. For all my clients sites I download a copy, download a original version, download new version,...
  37. Replies
    10
    Views
    1,477

    Re: Upgrade Question for DEV/Mods etc

    "Frankly, it's gonna take you more time to hunt down and replace/update files based on the changelist than it would be to do a proper full site inspection and upgrade as per the formal upgrade...
  38. Replies
    1
    Views
    791

    errors in changelog?

    MESSAGE TO ADMIN TEAM:

    Also whilst working though the files i spotted a few errors in docs/changed_files-v1-5-0.html;


    /admin/images/icons/icon_permissions.gif
    /admin/images/icons/loading.gif...
  39. Replies
    10
    Views
    1,477

    Upgrade Question for DEV/Mods etc

    Ok so i have lots of personal sites to upgrade plus clients. The clients sites will need comparing in more detail as they use lots of mods and as such will need upgrading the 'proper way', but my...
  40. Replies
    3
    Views
    708

    Re: Zencart 1.5 update timeframe

    lol cheers
  41. Replies
    3
    Views
    708

    How soon should I upgrade?

    Just a quick one. Im currently running all my sites on 1.3.x (latest version). Just spotted 1.5 has been released.

    I plan to update asap but i doubt ill get time until next week. Can anyone...
  42. Replies
    2
    Views
    1,443

    Re:

    <BUMP> anyone got any ideas? im stuck! :)
  43. Replies
    2,474
    Views
    416,900

    Re: Reward Points Module- Live Release now available.

    hello, im trying to display the rewards points next to the product price on the featured products (on index page) and all product listings and product info page.

    Ive got it working on product info...
  44. Replies
    2
    Views
    1,443

    View Post

    hello, im using the following on my main page


    <?php if($this_is_home_page)
    { ?>
    MAIN PAGE ONLY STUFF HERE
    <?php } ?>

    which works great and only displays the text on the...
  45. copy all products from one category to another (not linked)

    Hello,

    I have a site and I need to copy all the products from one category to another. I dont want to link them and id rather not install any extra modules.

    If the products dont have any...
  46. Replies
    7
    Views
    975

    Re: Blank Template help

    strange, managed to fix it but line 48 in tpl_categories.php was missing the </a>.

    must have removed it by accident.
  47. Replies
    7
    Views
    975

    Re: Blank Template help

    im suspecting something to do with the /n

    (see http://gtwebdev.com/workshop/gaps/white-space-bug.php)

    still cand find the 'bug' though
  48. Replies
    7
    Views
    975

    Re: Blank Template help

    i spoke too soon! take a look at
    http://www.directonlinekitchens.co.uk/
    (it still needs w3c'ing etc) but in firefox, chrome, safari etc it loads fine but in IE the catagories (and ezpages) left...
  49. Replies
    7
    Views
    975

    Re: Blank Template help

    Hello, thanks for the reply.

    Ive recreated the custom stucture, edited it and installed it as a template. Ive got to say im very very impressed at how easily a custom template can be installed...
  50. Replies
    7
    Views
    975

    Re: Blank Template help

    Am i correct in assuming the classic green template (with all new installs) is free to edit heavily and then re-distribute (for free)
Results 1 to 50 of 153
Page 1 of 4 1 2 3 4
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR