Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

PLUGGER

Pioneers
  • Posts

    42
  • Joined

  • Last visited

  • Days Won

    1

PLUGGER last won the day on April 20 2012

PLUGGER had the most liked content!

About PLUGGER

  • Birthday 10/21/1960

Profile Information

Recent Profile Visitors

9,734 profile views

PLUGGER's Achievements

  1. is there any way of having this send out emails to an alternate email address and not the owner of the store i.e. the store developer instead and excuse me if i have missed the answer already
  2. the slideshow/banner etc if thats what your talking about is http://www.phatfusion.net/projects.html the ImageMenu Desc MooTools plugin, a nice menu system.
  3. check your database fields (check the length of chars allowed) if it seems like its cutting off the last couple of chars then you need to increase the field char size in the database and like george (mutlimixer) says, make sure if your editing files with an editor that they are saved at UTF8 ( i suggest dreamweaver personally) something that might help aswell this is my includes/languages/greek.php language file // look in your $PATH_LOCALE/locale directory for available locales // or type locale -a on the server. @setlocale(LC_TIME, 'el_GR.UTF8'); mb_internal_encoding("UTF-8"); define('DATE_FORMAT_SHORT', '%d/%m/%Y'); // this is used for strftime() define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime() define('DATE_FORMAT', 'd/m/Y'); // this is used for date() define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S'); //// // Return date in raw format // $date should be in format mm/dd/yyyy // raw date is in format YYYYMMDD, or DDMMYYYY function tep_date_raw($date, $reverse = false) { if ($reverse) { return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4); } else { return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2); } } // if USE_DEFAULT_LANGUAGE_CURRENCY is true, use the following currency, instead of the applications default currency (used when changing language) define('LANGUAGE_CURRENCY', 'EUR'); // Global entries for the <html> tag define('HTML_PARAMS','dir="LTR" lang="el"'); // charset for web pages and emails define('CHARSET', 'UTF-8'); i have @setlocale(LC_TIME, 'el_GR.UTF8'); mb_internal_encoding("UTF-8"); at the top as you can see and i have never had a problem with Greek chars
  4. Remove <script type="text/javascript"> function getxmlHttpObj() { var xmlHttp; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("Your browser does not support AJAX!"); return false; } } } return xmlHttp; } function getPrice(price,product_id,attr_arr) { opt_id = document.getElementById("optionsid").value; xmlHttpObj = getxmlHttpObj(); xmlHttpObj.onreadystatechange=function() { if(xmlHttpObj.readyState==4) { document.getElementById("display_price").innerHTML = xmlHttpObj.responseText; } } xmlHttpObj.open("GET","ajax_onchange_price.php?price="+price+"&option_id="+opt_id+"&product_id="+product_id+"&product_opt="+attr_arr,true); xmlHttpObj.send(); } </script> from the product_info.php page (OSC231 only) and add this code to the includes/template_top.php file before the </head>
  5. If this is for version 2.3 then i would be very interested, i have been toying with this anf the old version, but alas i cant get it to work with the new one, my php understanding is not that good, so yeah for this would be be very interested and extremely grateful..
  6. ok have this working and its great, but one thing i cant seem to get is if i have sub categories, then the extra fields do not show up in the admin for me to edit, although they are there for the public on the main shop it seems it all works fine if i only have one category, but multiple categories it doesnt anyone with any ideas
  7. i would be interesting in how you solved this, as i need about 5 different bank transfer modules
  8. anyone fixed this issue yet, because it would really be good to have the gift message option
  9. is there any way of this god damn addon working without the coupons module after trying to make sense of all the pages in this thread and failing misserably, this still doesnt work a) i dont have or want the damn coupons addon B) after installing all you get is error with database, 1146 - Table '??????.TABLE_COUPON_GV_CUSTOMER' doesn't exist select amount from TABLE_COUPON_GV_CUSTOMER where customer_id = '55' and after trying numberous suggestions in here to fix it, i just get more errors c) why cant we just have this addon contribution without the god damn coupons - why is life so hard
  10. well after trying to read all 11 previous pages of this thread, my brain is now so confused with all this my questions if anyone can give me some answers i would be grateful.. i have installed and am using Customer_Extra_Fields_EXTENDED_v1_3 contribution 1) where can i alter the size of the input fields, on my create account page and on my account edit page 2) do these fields get put onto the invoice and emails already or not, if not, can this be done and if so where is the correct full code for it thanks
  11. i just done a complete new install of OSC standard then did this contribution Extra Product Fields 1.12bugfix added mysql tables with phpmyadmin and did the modifications in the admin i can setup the fields, and i can setup the values for these fields, the admin part seems ok but when trying to browse the product from the main site, i get this error 1146 - Table 'plugger_oscommerce.TABLE_EPF' doesn't exist select e.epf_id, e.epf_uses_value_list, e.epf_show_parent_chain, e.epf_use_as_meta_keyword, l.epf_label from TABLE_EPF e join TABLE_EPF_LABELS l where e.epf_status and (e.epf_id = l.epf_id) and (l.languages_id = 1) and l.epf_active_for_language order by epf_order [TEP STOP] went back and re checked the instructions, still the same.. is there something i am missing here
×
×
  • Create New...