Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

stefan1959

Pioneers
  • Posts

    59
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by stefan1959

  1. I just updated to v1.0.2.1 , I saw the product_listing.php has been updated. I tried to fix myself, first part I could edit ok, but the bottom edit has changed alot and I haven't a clue :)

    But what happen I put back v1.0.2.1 version back with no changes and call for quote seems works ok. So I'm happy.

    image.thumb.png.35287806dfaea05c4ff87c98b5390874.png

  2. 3 minutes ago, JcMagpie said:

    The add-on needs to be installed carefully,

    remove product_info module -- Price  ( ******must remove not just turn to false!*****)

    Do this first and remove all files do not just turn it of, Then and only then copy over and install the new files and turn on the new add-on. If you did not do this then you could have messed up your config table.

     

    ok. I might do a clean install of CE and try again, off to my real job now :(

  3. Not happening for some reason, would it be we working with different versions  or another addon is interfering, as your site I presume works with

    23 hours ago, stefan1959 said:

    $currencies_query = tep_db_query("select code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value from " . TABLE_CURRENCIES);

    Restores and added files again and just changed "Call" to "Contact".  Removed price module and add call for price. Cleared cache on site and browser.

    image.thumb.png.690c08c5ca17e01fefa7df8d6d26c4f5.png

    image.thumb.png.ff910ef353f3165c385e38e49d3deccc.png

  4. Weird, I just copied and pasted what you did and still shows the same, I even changed "Call" to "Contact" and "Call" still displays. Something is blocking the update.

    I will restore the old files and start again, I might have missed something. BTW I removed the +VAT in other code as I'm in Australia.

    Steve

    image.thumb.png.c25d68d1ef94337f2cbb4107cfc6e325.png

    image.thumb.png.13fc50506407c254b54aaa7a649ff123.png

  5. Sorry for bugging you, I wanted add the phone number at well in the display, but not updated to what I change it too. eg:

    define('TEXT_CALL_FOR_PRICE', '<a href="' . tep_href_link('contact_us.php') . '">Call for Price! <br>Phone xxx xxx xxx </a>');

     

    Steve

  6. Ok, got a error that i fixed pretty quick.

    1146 - Table 'dev_tropicalwatersports_com_au.TABLE_CURRENCIES' doesn't exist

    select code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value from TABLE_CURRENCIES

    in the currencies.php you had $currencies_query = tep_db_query("select code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value from " . TABLE_CURRENCIES);

    I fixed  buy changing to

    $currencies_query = tep_db_query("select code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value from currencies");

    Steve

  7. Check the source of template and check the style= or class= of the table row (tr) and that should tell you where in the css to look.

    Closest one i can see its using is select.

     

    /* ************************************************************************************* */

    .select {width:100%;border:1px solid #616161;background:#4f4f4f; color:#ffffff;vertical-align:middle;margin:0px 0px 0px 0px;}

    .select2 {margin:0px 0px 1px 0px; border:1px solid #ececec;}

    .select2 td {padding:13px 0px 13px 0px; height:36px; vertical-align:middle;}

    .select2 select {width:70%; border:1px solid #ececec;background:#ffffff; color:#575656;vertical-align:middle;margin:0px 10px 2px 10px;}

    .select3 {width:100%;border:1px solid #6c6c6c;background:#4f4f4f; color:#f2f2f2;vertical-align:middle;margin:0px 0px 0px 0px;padding:2px;}

     

     

     

    Steve

  8. YES I did find the site info in the post with the screen shots. If you don't know how I did it you need to read up a little more on how web pages work.

     

    NO I'm not a hacker.

     

    If I was I wouldn't spend my time here HELPING people with their shops and trying to keep them out of the clutches of the evil-doers lurking in cyber space.

     

    Where is andy's sale in the above screen-shots? No address line, only tabs and they don't show and name like andy.

    In fact those screen-shots where taken from another site. I'm really curious where you got that info from!!!

     

    Steve

  9. @stefan1959

     

    If you're helping Andy with his big garage sale (*COUGH* *COUGH*) you need to visit the link below:

     

    How to Secure Your Site

     

    Pay close attention to "SECURING THE ADMIN" - The admin is vulnerable.

     

    It's easier to do a few security fixes now than to clean up a hacked store later.

     

    And if you don't secure the admin the shop will be hacked.

     

    It's just a question of when...

    :o

     

    Thanks I will have a read.

    But why the interest?

    And why did you mention it to me and how did you know I was working on that site?

    Its not from the above post as that not where the screen shots where taken from.

     

    Are you a hacker?

     

     

    Steve

  10. Hello everybody. Thanks for this fantastic addon. I love it!

     

    There's a minor problem tough. I hope to find the answer to my question here!

     

    This is my website. http://www.felzmade.com/index2.html .

    Here is my shop. http://www.felzmade.com/Osx/

    The problem is, when i'm in the shop (tough not the index page of the shop), i can't use the flash button's in the menu at the top!

     

    I was hoping anybody has a idea how to fix this? There's a contribution claiming to fix flash, but it didnt work. Also a post in this topic told me i needed to use something with javascript, but that also didn't work!

     

    Thanks in advance,

     

    Jonathan

     

    Hmm, did you fix it as the flash buttons work.

     

    Steve

  11. I found the workaround after playing with the code in /catalogue/index.php

     

    <tr>

    <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

    <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

    </tr>

     

     

    the line that shows the image I got rid of the class and the image started the shows with STS was turned on, so change to this

     

     

    <tr>

    <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

    <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

    </tr>

     

     

    Steve

  12. I found the workaround after playing with the code in /catalogue/index.php

     

    <tr>

    <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

    <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

    </tr>

     

     

    the line that shows the image I got rid of the class and the image started the shows with STS was turned on, so change to this

     

     

    <tr>

    <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

    <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

    </tr>

     

     

    Steve

×
×
  • Create New...