Search:

Type: Posts; User: raptar

Search: Search took 0.01 seconds.

  1. v157 Re: Adding a header background image to Responsive Classic template

    Hi Goldbuckle,
    Try changing the css style from background to background-image and put the full path of the image in, like http:...
  2. Replies
    8
    Views
    939

    v156 Re: Chatra not working in 1.5.6

    Hi Jimmie,

    When you look at the page source, your script tags appear to have been sanitized. Instead of showing < it displays &lt; or > &gt;
    So what should be <script> is showing as &lt;script&gt;

    Regards...
  3. Replies
    3
    Views
    463

    Re: Which file to edit for Youtube link?

    Hi,

    Your site is secure (https) but your iframe has insecure content (http). Change the iframe video address from http to https and your videos will show up on the page.

    Cheers raptar
  4. v157 Re: nab_transact payment module has php error when installing to fresh install of zen

    Hi p1drobert2

    I believe you will have to change the line of code where it reads "function nab_transact_hpp {}" to "function __construct {}" at about line 56. Don't add the quotes...

    Regards...
  5. v157 Re: nab_transact payment module has php error when installing to fresh install of zen

    Hi p1drobert2

    Changes to Php 7+ requires it to be wrapped in curly braces like this.
    global ${$order_totals[$i]['code']};

    Regards raptar
  6. v156 Re: How to change fonts color in responsive classic

    Hi photoceran,

    The real easy way for you to get help is to post a link of your site so we can see examples of what you want changed.
    Changing a class of blue to read black will only change...
  7. Re: How to move the product images all in line?

    Hi lrfowler24,

    The template designer has placed the addittional product images code at the bottom of the product info page, instead of under the main image.
    If this designer follows Zen Cart...
  8. Replies
    4
    Views
    2,285

    v156 Re: PayPal Express Checkout - Sandbox testing

    Hi Torvista,

    I'm not sure how much address data PayPal actually matches, the one obvious thing to me is your test account zipcode is wrong. Californian zipcodes start with 9 so it possibly is...
  9. Replies
    3
    Views
    1,056

    v156 Re: auspostcode ZC Versions: v1.5.1

    Hi Oavs,

    The function split() was deprecated in PHP 5.3.0, and removed in PHP 7.0.0.
    To fix the error, replace the function split() at line 57 with explode()

    Cheers raptar
  10. Replies
    4
    Views
    258

    Re: My background image has disappeared

    Hi John,

    You have a stray b in your stylesheet.css. Its right at the start of the css code. Remove that and your background will come back.

    Regards raptar
  11. Replies
    11
    Views
    1,439

    v156 Re: Jquery Conflict

    I Would add to #mega-wrapper .mega-menu display:inline-block to make the menu a block and change the height from 30px to auto to fill that block.

    #mega-wrapper...
  12. Replies
    11
    Views
    1,439

    v156 Re: Jquery Conflict

    Debug is very helpful. So is the forum if you supply enough details for people to work with.
    You must be using a really big screen because when I look at your menu (on a smaller screen) some links...
  13. Replies
    11
    Views
    1,439

    v156 Re: Jquery Conflict

    The dater picker script you have added also loads an older version of jquery 1.4 causing a conflict.
    The date picker script you selected will not work with jquery 3.4.
    Removing all traces of the...
  14. Replies
    8
    Views
    467

    v155 Re: CSS stylesheet help please

    Hey Mike,
    First word is real easy to do with this
    <script>
    $('#navCatTabs li a').each(function(){
    var text = $(this)
    .text().split(' ');
    if(text.length < 2)
    return;
    ...
  15. Replies
    8
    Views
    467

    v155 Re: CSS stylesheet help please

    Hi Mike,
    I don't know how to do what you require. At best I know how to target the first letter of a link with css, so you could change font size, font weight, color etc. You would need to use...
  16. Replies
    8
    Views
    467

    v155 Re: CSS stylesheet help please

    That will probably compress your menu too tight and spread it to the edge of your page, so add a margin to the unordered-list to contain it.
    #navCatTabs ul{margin:0 20px;
  17. Replies
    8
    Views
    467

    v155 Re: CSS stylesheet help please

    That is the nature of a list, a gap between words to make it readable, try adding
    margin-left:-5px; to #navCatTabs ul li a. This will remove that space.
  18. Replies
    8
    Views
    467

    v155 Re: CSS stylesheet help please

    Hi Mike,
    Try adding
    #navCatTabs ul li a {border-right:1px solid #000;}#navCatTabs ul li:last-child a {border:none;}
    Change color and border size as needed.
    Regards raptar
  19. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    Yes I have been caught out myself. Took a while to learn what Zen Cart accepts or sanitizes, or even half sanitizes. Writing in notepad stops most mistakes from happening and be careful about cut and...
  20. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    PHP7 is stricter on what it allows. Simply “” is used by other programs to make a quotation mark look pretty. A server talks in code, not pretty code. A quotation mark is "" to a server, nothing else.
  21. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    I have never been able to get “” in notepad. I only get "". That “” is not utf8 and will get sanitized
  22. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    The dashes and apostrophes were misinterpreted in the ASCII code as latin1. Did you cut and paste from a different document, such as Word or a PDF?
  23. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    Look for "twin"
  24. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    You ave a different error now. You are chasing apostrophes this time. Possibly in the web url. Is your product description cut and pasted off something else?
  25. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    Did you get all of them? they are hard to spot. Not much visual difference between hypens, ems and ens
  26. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    Try using &ndash; for the - instead and see if it runs. It's strange how most of the string is sanitized/escaped apart from that dash.
  27. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    Ok database is good. Do use excel when working on your csv?
  28. Replies
    19
    Views
    2,357

    v156 Re: MySQLi error 1366: Incorrect string value

    Hi Chadlly

    96 is an en dash in Latin1. In the string you posted a lot of the characters have been escaped, apart from the en dash. Is your store database using utf8 or Latin1? Or is your CSV...
  29. Replies
    7
    Views
    4,278

    Re: Custom Header Links Problem (Mobile)

    Hi ravynw,
    You have mapped your image with area coordinates which works great on desktop. But for mobile viewing you have reduced the image map size, yet have not changed the area coordinates to...
  30. Replies
    2
    Views
    2,929

    v156 Re: align logo and navCatTabsWrapper

    Hi ColtSAA

    You have a break after your logowrapper div... which makes a break. Remove the
    <br class="clearBoth"> from after the div.logowrapper and you will lose that gap.

    Regards raptar
  31. Replies
    9
    Views
    313

    v154 Re: Related Products 1.5

    Try changing
    .centerBoxContentsRelatedProduct { display: inline-block;} to
    .centerBoxContentsRelatedProduct {display: inline-table;}
  32. Replies
    9
    Views
    313

    v154 Re: Related Products 1.5

    Hi dharrison,
    Have you tried to change the styleshet.css
    .centerBoxContentsRelatedProduct{float:left;} so they can stack beside each other?
    Regards raptar
  33. Replies
    41
    Views
    1,122

    v154 Re: Parsing problem - 305 pages affected

    The google structured data tool tests your code from googles end. I checked a url that you listed earlier and it showed the error.
    I use torvista's code and it works well.
  34. Replies
    41
    Views
    1,122

    v154 Re: Parsing problem - 305 pages affected

    Hi Nina
    Just checked the structured data tool and it appears you now have double quotes. Like"" php code "" When you resolve that the stuctured data tool will throw more errors like url and reviews,...
  35. Replies
    41
    Views
    1,122

    v154 Re: Parsing problem - 305 pages affected

    This part of your script is wrong.

    <script type="application/ld+json">
    {
    "@context": "http://schema.org/",
    "@type": "Product",
    "name": "<?php echo...
  36. Replies
    13
    Views
    6,090

    v156 Re: View Larger Image Aspect Ratio not preserved

    Hi Lynbor. Look in your stylesheet.css look for line 15, which is for img. Add add height:auto; to it. It makes the image responsive.
    Regards raptar
  37. Replies
    4
    Views
    374

    v155 Re: Canter box width...

    Hi Amy
    If you are never going to use the side boxes in your main content try changing the width percentage in your responsive css template. Line 31 onerow-fluid>.col740 This will alter the width of...
  38. Replies
    2
    Views
    1,205

    Re: Is it a difference between 1.5.5f and 1.5.6a

    Hi dbltoe,
    Try adding to your stylesheet.css line 377 #productDescription{clear:both;}
    Regards raptar
Results 1 to 38 of 38
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR