Jump to content

night60000

Member
  • Posts

    35
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    New York USA

night60000's Achievements

Newbie

Newbie (1/14)

5

Reputation

  1. I try to find that line in the language setting but didn't see it can u tell me what page am I looking for ? thank you Danny
  2. Hi because I have a flat fee shipping so I don't want to confuse people tell me that its little bit confusing
  3. Hi im trying to remove this line " Estimated value which may change ones billing & delivery address has been specified " Danny
  4. I have this scrip that when I get the database it came with but just don't know how to install it maybe u can figer it out <?php require('libs/db_vehicle_sample.class.php'); $config['dbHost'] = 'localhost'; $config['dbUser'] = 'user'; $config['dbPassword'] = 'password'; $mysql_link_id = mysql_connect($config['dbHost'], $config['dbUser'], $config['dbPassword']) or die("Could not connect: ".mysql_error()); mysql_select_db('test'); $db = new DBVehicleSample(); $vendor = ( isset($_GET['vendor']) && $_GET['vendor'] != "" ) ? mysql_real_escape_string($_GET['vendor']) : null; $car = ( isset($_GET['car']) && $_GET['car'] != "" ) ? mysql_real_escape_string($_GET['car']) : null; $year = ( isset($_GET['year']) && $_GET['year'] != "" ) ? (int) $_GET['year'] : null; $mod = ( isset($_GET['mod']) && $_GET['mod'] != "" ) ? mysql_real_escape_string($_GET['mod']) : null; ?> <html> <head> <title></title> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <style> body {font-family:arial;font-size: 12px;} h3, h4 {margin:0;padding:0;} h3 {font-size: 14px;} h4 {font-size: 12px;} table {margin-top: 10px;font-size: 12px;} table td {width: 250px; vertical-align:top;} </style> </head> <body> <form id="vehicle" action="page_db_vehicle_sample.php"> Производитель: <br> <select name="vendor" id="vendor" onchange="$('#car').val(0); $('#year').val(0); $('#mod').val(0); $('#vehicle').submit();" style="width:200px"> <option value="">Выберите производителÑ</option> <?php $db->_print_options($db->get_vendors(), 'vendor', $vendor); ?> </select> <br><br> Модель: <br> <select name="car" id="car" onchange="$('#year').val(0); $('#mod').val(0); $('#vehicle').submit();" style="width:200px"> <option value="">Выберите модель</option> <?php if (null != $vendor) $db->_print_options($db->get_cars($vendor), 'car', $car); ?> </select> <br><br> Год выпуÑка: <br> <select name="year" id="year" onchange="$('#mod').val(0); $('#vehicle').submit();" style="width:200px"> <option value="">Выберите год</option> <?php if (null != $vendor && null != $car) $db->_print_options($db->get_years($vendor, $car), 'year', $year); ?> </select> <br><br> МодификациÑ: <br> <select name="mod" id="mod" onchange="$('#vehicle').submit();" style="width:200px"> <option value="">Выберите модификацию</option> <?php if (null != $vendor && null != $car && null != $year) $db->_print_options($db->get_modifications($vendor, $car, $year), 'modification', $mod); ?> </select> <br><br> <?php if (null != $vendor && null != $car && null != $year && null != $mod) $db->_print_data($db->get_data($vendor, $car, $year, $mod)); ?> </body> </html>
  5. Hi 1st question I need to do have the drop down options Example Make: (drop down) ford Model: (drop down) crown Victoria And so on with different cars and models So what I need to do is only when u pick the type of make let’s say ford u would get only ford models cars options nothing else ( im trying to hire someone that know how to do it but no one is getting back to me its a small scrip I wish I know how to do coding ) so what I did I have the car make and year but the model they have to put it and that's the only way I get it to work for now 2nd question I found the problem it was because I put $ sign before the price I don't know why but it didn't take it when I remove it it works great 3 ) now I have other problem with PayPal its not registering the right amount that is in the shipping cart Example: if u add 2 items to the shopping cart and you go to check out everything is working great but when u pressing the order with PayPal and it go to PayPal page its just ( show 1 item) but the right price for 2 items so I don't know why it doesn't show 2 on the PayPal page and just 1 and I even try it with 5 items its still show only 1 did u ever saw that problem before ?
  6. Hi Bsmither, thank you very much it works not the way I need it but it would do for now ... let me ask u I have the cart set up but its not cavalcading the shipping with the product do u know how I can fix that ? Danny
  7. Hi maybe someone know how to do this what I`m trying to do is as 3 edit boxes in product page so when they want to buy the product they have to fill this 3 edit boxes and when they filed the box it would go to order page so I know what they put in that boxes Danny
  8. Hi have a question I need to remove the skin ( template) from the shopping cart I have a custom site that I design but I need just the shopping cart part with no template does anyone know where I can remove it or make it transparent with no background thank you Danny
  9. umm do u think I can do more then just two phases to like 4 or 5 im trying to find away to make it as easy as passable and fast
  10. Hi im looking for a module that I can have options for cars tires sizes like when u chose a type of a car for example you chose a car ( drop down ) " 2001 " next dope down " Toyota" ( automatic will bring the models for that car and year for next drop down " Camry " and then will have a field that's show tire size and that would go to the shipping card does anyone know if there is any type of module that I can buy or maybe I can just make one im using CC5 thank you Danny
  11. Hi I`m trying to set up the coupon plugin I`m having little bit problem with it doesn't seem to work for me this is what I'm trying to do after they buy first one full price they get the 2nd of $5 off how can I do that ? thank you Danny
  12. Hi maybe someone as the same problem or maybe its just me im trying to install share me button i have the code and i put it where it need to be well i think i did but when i save the page my template desapire so my question is where do i put the code and why when i put the code my template gone ? this is the code im useing <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a> <a class="addthis_button_tweet"></a> <a class="addthis_button_pinterest_pinit"></a> <a class="addthis_counter addthis_pill_style"></a> </div> <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script> <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-50cfc14f1d0265e2"></script> <!-- AddThis Button END --> and i need it in the header https://www.extrafuel.net/store/ thank you Danny
×
×
  • Create New...