Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Xpajun

Members
  • Posts

    1,757
  • Joined

  • Last visited

  • Days Won

    7

Xpajun last won the day on April 25 2020

Xpajun had the most liked content!

2 Followers

Profile Information

Recent Profile Visitors

32,862 profile views

Xpajun's Achievements

  1. YesI can understand that for a program that adds bits on to your image but in osc just set the width of your images and if you have a square image a square image will be on the page - the answer to the original question
  2. Just set the image settings width to 250 height can be left blank or auto
  3. Hi joli, just seen this, the logos are loaded in categories in admin in the normal way, in my case as gif files - Apart from the coding I posted (and the superfish add on) everything is already in place in osC
  4. As promised: add c.categories_image to the select query: $categories_query_raw = " select c.categories_id, c.parent_id, c.categories_image, cd.categories_name add 'image' => $categories['categories_image'], to the array: if ($categories_id != 0) { $categories_data[$index] = array ( 'id' => $categories_id, 'name' => $categories['categories_name'], 'image' => $categories['categories_image'], 'parent_id' => $categories['parent_id'], 'path' => $path_string ); finally add $output .= ' <img src="images/' . $category['image'] . '"> '; before or after the name output foreach( $data_array as $category ) { if( $category['parent_id'] == 0 ) { $output .= ' <li class="sf-menu sf-vertical ui-state-default ui-corner-all" onmouseover="$(\'a#categories\').removeClass(\'ui-state-default\').addClass(\'ui-state-hover ui-state-focus\');" onmouseout="$(\'a#categories\').addClass(\'ui-state-default\').removeClass(\'ui-state-hover ui-state-focus\'">' . PHP_EOL; } else { $output .= ' <li class="subcat">' . PHP_EOL; } $output .= ' <a href="' . tep_href_link( FILENAME_DEFAULT, $category['path'], 'NONSSL' ) . '">'; $output .= ' <img src="images/' . $category['image'] . '"> '; $output .= $category['name']; $output .= '</a>' . PHP_EOL; if( $category['subcat'] !== false ) { $output .= $this->format_data( $category['subcat'], true ); } $output .= ' </li>' . PHP_EOL; } The result: The logos are 30px high while the pics are 180px wide - you have to make the pics all the correct (similar) size
  5. Thank you Jim - I was on the right track - it was the output that I couldn't get right, I've now done it, I will post the code and a screen capture of how it looks when I reduce the images a littie ;)
  6. Hi, First off many thanks for this mod - it's something I've been looking for for a long time... I want to add images to the categories in this mod, so far all I have managed is the image name :rolleyes: I've also tried using tep_db_fetch_array($image) to no avail Can anyone point me in the direction I should be looking Thanks
  7. Forget the latter half of my above post - the weird invoice is due to a customer discount that doesn't work properly :rolleyes: At about line 152 of paypoint_secpay.php FIND: list($REQUEST_URI, $CHECK_SUM) = split('hash=', $HTTP_SERVER_VARS['REQUEST_URI']); REPLACE WITH: list($REQUEST_URI, $CHECK_SUM) = explode('hash=', $HTTP_SERVER_VARS['REQUEST_URI']);
  8. That may fix it - but very temporately (deprecated functions are done for a reason) but it is not the answer. George, lines 150 - 160 read: if ( ($HTTP_GET_VARS['valid'] == 'true') && ($HTTP_GET_VARS['code'] == 'A') && !empty($HTTP_GET_VARS['auth_code']) && empty($HTTP_GET_VARS['resp_code']) && !empty($HTTP_GET_VARS[tep_session_name()]) ) { $DIGEST_PASSWORD = MODULE_PAYMENT_PAYPOINT_SECPAY_READERS_DIGEST; list($REQUEST_URI, $CHECK_SUM) = split('hash=', $HTTP_SERVER_VARS['REQUEST_URI']); if ($HTTP_GET_VARS['hash'] != md5($REQUEST_URI . $DIGEST_PASSWORD)) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, tep_session_name() . '=' . $HTTP_GET_VARS[tep_session_name()] . '&payment_error=' . $this->code ."&detail=hash", 'SSL', false, false)); } } else { tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, tep_session_name() . '=' . $HTTP_GET_VARS[tep_session_name()] . '&payment_error=' . $this->code, 'SSL', false, false)); } } explode does work as you suggest but I got a weird invoice with it: Waiting for Monday now to check with PayPoint tech staff
  9. Oza - sorry for the long delay in posting - been very busy... this is the one I used and adapted for UK Parcelforce and then International Parcelforce - it works very well but your customes have to use the correct format for the UK postcode I.e XX1 2ZZ because the program looks for the space to set the shipping price
  10. Use a shipping zone for postcodes - what courier are you using?
  11. Go to Admin>orders select order you want to delete and click delete ;)
  12. Yeah customers are quite good at finding out about that - especially international ones How are you shipping Business airmail or personal airmail i.e. do you have an account with Royal Mail? Sounds good Loks as though that bit is messed up - I'll start with the last... sort order is the order the shipping is shown on the shipping page so 1 appears above 2, 2 above 3 and so on Let's take the nUmbers that appear on zones 3:2.50 means that anything upto 3 is shipped at 2.50 In our case using weights anything up to 3kgs is shipped for £2.50 or someone that ships wine 3 bottles for 2.50€ Now these tables are written in such a way that you can use multiple prices/'weights' like so: .1:7.54,.2:8.06,.3:8.58,.5:9.62,1:12.22,1.5:14.81,2:17.41 The numbers before the : are the 'weights' and the numbers after the : are the price so anything upto .1kgs costs £7.54 anything between .1kgs and .2kgs costs £8.06 right the way up to 2kgs costing £17.41 Whatever unit you choose 'weight'wise must remain the same throughout For safety many store owners will put something like 200:999 as the last weight/price which'll make everything over 2kgs (your max airmail weight if you're not selling books) £999 to send otherwise it will default to £0.00
  13. @@Carol A simple way would be to add a number in front of your weight i.e. Small packets = 105,110,115,120 Medium packets = 205,210,215,220 Large Packets =305,310,315,320 And then price them up into one zone 105:0.5,110:0.8,115:1.0,120:1.75,205:0.95,210:1.5,215:1.75,220:2,305:1.25,310:1.5,315:1.95,320:2.5 and so on Oh... and don't show the weight on you invoices Don't forget your 'weights' are just a number the number can indicate anything you want to e.g. bottles, yards, metres, kgs or even lbs. I have a list of all the euro country iso codes used by Royal Mail might even be able to come up with europe and australasia if you are not a RM business customer Add the signed for price into your pricing for airmail
  14. Why doesn't my spell checker work on this forum? It's bloody annoying!!

  15. This wonderful line is in your cookie_usage.php (it shows when customers have their browser set not to accept cookies and your store is set to force cookie use) osC cookies are not the tracking cookies that the EU are getting concerned about
×
×
  • Create New...