Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

matrix2223

Banned
  • Posts

    852
  • Joined

  • Last visited

Everything posted by matrix2223

  1. Yes I do want that and no thats not what Im asking I wanted to be able to see what they entered on the main links page in the admin so I can tell if I have to go there and c for myself. Ex. for links that I have added manually and are waiting for them to put a link on there site. I cant add one on my site to theirs without one. The reason why the images are not showing is because I think a server is down or something they was there last night and when you type in my url it says server not found. Eric
  2. Hi Jack, I figured it out YAH!!! in the admin>includes>lang.>links.php add this define('TEXT_INFO_LINK_RECIPROCAL_URL', 'Reciprocal URL:'); Then near the bottom of admin>links.php find this bit $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_STATUS . ' ' . $links_status_array[$lInfo->links_status]); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_CATEGORY . ' ' . $lInfo->links_category); $contents[] = array('text' => '<br>' . tep_link_info_image($lInfo->links_image_url, $lInfo->links_title, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT) . '<br>' . $lInfo->links_title); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_CONTACT_NAME . ' ' . $lInfo->links_contact_name); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_CONTACT_EMAIL . ' ' . $lInfo->links_contact_email); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_CLICK_COUNT . ' ' . $lInfo->links_clicked); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_DESCRIPTION . ' ' . $lInfo->links_description); $contents[] = array('text' => '<br>' . TEXT_DATE_LINK_CREATED . ' ' . tep_date_short($lInfo->links_date_added)); Replace with this $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_STATUS . ' ' . $links_status_array[$lInfo->links_status]); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_CATEGORY . ' ' . $lInfo->links_category); $contents[] = array('text' => '<br>' . tep_link_info_image($lInfo->links_image_url, $lInfo->links_title, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT) . '<br>' . $lInfo->links_title); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_CONTACT_NAME . ' ' . $lInfo->links_contact_name); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_CONTACT_EMAIL . ' ' . $lInfo->links_contact_email); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_RECIPROCAL_URL . ' ' . $lInfo->links_reciprocal_url); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_CLICK_COUNT . ' ' . $lInfo->links_clicked); $contents[] = array('text' => '<br>' . TEXT_INFO_LINK_DESCRIPTION . ' ' . $lInfo->links_description); $contents[] = array('text' => '<br>' . TEXT_DATE_LINK_CREATED . ' ' . tep_date_short($lInfo->links_date_added)); And this is the end result: I Hope you or someone knows or even understands why I wanted that there Eric
  3. First off I found out how to take a screen shot and its fairly easy heres how 1 With the error displayed on your screen, press one of the following: * Alt + Print Screen to capture the active window * Print Screen to capture your full computer screen 2 Select Start > Programs > Accessories > Paint. The Paint application opens. 3 Press Ctrl + V to paste the screenshot into Paint. If you receive a message that says: "The image in the clipboard is larger than the bitmap. Would you like the bitmap enlarged?" click Yes. 4 Select File > Save As. The Save As dialog opens. 5 In the Save in field, select a location to save the file, such as your Desktop. 6 In the File name field, type in a name for the bitmap. 7 In the Save as type field, select .bmp, .gif, or .jpg. 8 Click Save DONE Jack here is what I was referring to Where "Somewhere in here---->>>" Is where I would like it to read the full url where my link is on their site ie "reciprocal url: http://my_link_partners_site.com/their _links.php" I hope this helps, Thanks, Eric
  4. For most sites you dont always know right away what the reciprocal page is on their site so I put in my site because its a required field. I was just wanting it to be a little easier to notice that I need to find out what the status and if they even put my link there. I would like to have some of this info here: Reciprocal Page Details Reciprocal Page: http://site.com * Required FOUND: Visit Reciprocal Link on the /admin/links.php as above If I knew how to do a screen shot I would lol hopefully you can understand what Im tryin to ask Thanks a bunch Eric
  5. The info is on this page /admin/links.php the info thats on the right side of page under the edit, delete, check link, email buttons. Which looks like: Status: Approved Category: All-Natural Products All-Natural Department Store All-Natural Department Store Contact Name: Contact Email: [email protected] *********** Here is where I would like to add where my link is (the reciprocal page) ************** Clicks: 0 Description: Site description. Link Submitted: 02/26/2007
  6. Hi Jack, I was wondering if it is possible to add the reciprocal page link to where all the other info is placed under the admin panel if it wouldn't be a pain to do. such as when you click on the link and it displays the edit, delete, check link, email buttons. The reason why I ask this is because sometimes I have to wait for a site to get back to me and let me know they have added mine and I don't remember which is what. This way if I could easily see that my home page is the reciprocal link I know right away to check it out. I just want to stop people from getting one way links basically. Thanks, Eric
  7. Hi Jack thanks for the reply, I have just checked the code again to insure that the HT code is correct and is so. I also checked the text control and the product reviews write isnt there. Then I added the page in the page control and it now works. Thank you for your help. I have a suggestion for an upcoming version if their is one. When you click on the text control link you have to re add all the info/select the box or boxes every time you go and make a change to something. I think it would awesome if the info would stay they I put it until I change it. Also to make it a little more clearer on how to add and delete pages. Thanks for your help, Eric
  8. Hi Jack, I had just noticed this within the header tags. It looks like all my pages are working but one, the product reviews write heres what i got in the includes/header_tags.php for this // PRODUCT_REVIEWS_INFO.PHP and PRODUCT_REVIEWS.PHP case((basename($PHP_SELF)==FILENAME_PRODUCT_REVIEWS) or (basename($PHP_SELF)==FILENAME_PRODUCT_REVIEWS_INFO)): if ( HEAD_DESC_TAG_PRODUCT_REVIEWS_INFO=='' ) { if ( HTDA_PRODUCT_REVIEWS_INFO_ON=='1' ) { $tags_array['desc']= tep_get_header_tag_products_desc($HTTP_GET_VARS['reviews_id']) . ' ' . HEAD_DESC_TAG_ALL; } else { $tags_array['desc']= tep_get_header_tag_products_desc($HTTP_GET_VARS['reviews_id']); } } else { $tags_array['desc']= HEAD_DESC_TAG_PRODUCT_REVIEWS_INFO; } if ( HEAD_KEY_TAG_PRODUCT_REVIEWS_INFO=='' ) { if ( HTKA_PRODUCT_REVIEWS_INFO_ON=='1' ) { $tags_array['keywords']= tep_get_header_tag_products_keywords($HTTP_GET_VARS['reviews_id']) . ' ' . HEAD_KEY_TAG_ALL; } else { $tags_array['keywords']= tep_get_header_tag_products_keywords($HTTP_GET_VARS['reviews_id']); } } else { $tags_array['keywords']= HEAD_KEY_TAG_PRODUCT_REVIEWS_INFO; } if ( HEAD_TITLE_TAG_PRODUCT_REVIEWS_INFO=='' ) { if ( HTTA_PRODUCT_REVIEWS_INFO_ON=='1' ) { $tags_array['title']= ' Reviews: ' . tep_get_header_tag_products_title($HTTP_GET_VARS['reviews_id']) . HEAD_TITLE_TAG_ALL; } else { $tags_array['title']= tep_get_header_tag_products_title($HTTP_GET_VARS['reviews_id']); } } else { $tags_array['title']= HEAD_TITLE_TAG_PRODUCT_REVIEWS_INFO; } break; // PRODUCT_REVIEWS_WRITE.PHP case((basename($PHP_SELF)==FILENAME_PRODUCT_REVIEWS_WRITE)): if ( HEAD_DESC_TAG_PRODUCT_REVIEWS_WRITE=='' ) { if ( HTDA_PRODUCT_REVIEWS_WRITE_ON=='1' ) { $tags_array['desc']= tep_get_header_tag_products_desc($HTTP_GET_VARS['reviews_id']) . ' ' . HEAD_DESC_TAG_ALL; } else { $tags_array['desc']= tep_get_header_tag_products_desc($HTTP_GET_VARS['reviews_id']); } } else { $tags_array['desc']= HEAD_DESC_TAG_PRODUCT_REVIEWS_WRITE; } if ( HEAD_KEY_TAG_PRODUCT_REVIEWS_WRITE=='' ) { if ( HTKA_PRODUCT_REVIEWS_WRITE_ON=='1' ) { $tags_array['keywords']= tep_get_header_tag_products_keywords($HTTP_GET_VARS['reviews_id']) . ' ' . HEAD_KEY_TAG_ALL; } else { $tags_array['keywords']= tep_get_header_tag_products_keywords($HTTP_GET_VARS['reviews_id']); } } else { $tags_array['keywords']= HEAD_KEY_TAG_PRODUCT_REVIEWS_WRITE; } if ( HEAD_TITLE_TAG_PRODUCT_REVIEWS_WRITE=='' ) { if ( HTTA_PRODUCT_REVIEWS_WRITE_ON=='1' ) { $tags_array['title']= ' Reviews: ' . tep_get_header_tag_products_title($HTTP_GET_VARS['reviews_id']) . HEAD_TITLE_TAG_ALL; } else { $tags_array['title']= tep_get_header_tag_products_title($HTTP_GET_VARS['reviews_id']); } } else { $tags_array['title']= HEAD_TITLE_TAG_PRODUCT_REVIEWS_WRITE; } break; This is the same code and in the latest one. Any ideas?? Thanks, Eric
  9. For anyone who still hasnt found the answer to the "Not sending of emails, not going to the success page and other things" Here is your answer I reworked and modified it abit but basically I had to start from scratch because none of them worked here is my contact_us.php And this will show the Customers name, order number and message that they typed in the form and will also show the reason why in the email subject line(for which ever reason they chose) <?php /* $Id: contact_us.php,v 1.42 2003/06/12 12:17:07 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_CONTACT_US); $error = false; if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'send')) { $name = tep_db_prepare_input($HTTP_POST_VARS['name']); $email_address = tep_db_prepare_input($HTTP_POST_VARS['email']); $order_number = tep_db_prepare_input($HTTP_POST_VARS['order_number']); // BOF Super Contact us enhancement 1.0 $order_id = tep_db_prepare_input($HTTP_POST_VARS['order_id']); if ($order_id <> NULL){ $enquiry = 'Order ID: ' . $order_id . "\n\n" . tep_db_prepare_input($HTTP_POST_VARS['enquiry']); }else{ $enquiry = tep_db_prepare_input($HTTP_POST_VARS['enquiry']); } $emailsubject = tep_db_prepare_input($HTTP_POST_VARS['reason']) . ' ' . EMAIL_SUBJECT; switch ($HTTP_POST_VARS['reason']) { case REASONS1: $auto_send_to = '1'; break; case REASONS2: $auto_send_to = '1'; break; case REASONS3: $auto_send_to = '0'; break; case REASONS4: $auto_send_to = '1'; break; case REASONS5: $auto_send_to = '1'; break; case REASONS6: $auto_send_to = '2'; break; default: $auto_send_to = '1'; } if (tep_validate_email($email_address)) { if (CONTACT_US_LIST !=''){ $send_to_array=explode("," ,CONTACT_US_LIST); preg_match('/\<[^>]+\>/', $send_to_array[$auto_send_to], $send_email_array); //preg_match('/\<[^>]+\>/', $send_to_array[$send_to], $send_email_array); $send_to_email= eregi_replace (">", "", $send_email_array[0]); $send_to_email= eregi_replace ("<", "", $send_to_email); //tep_mail(preg_replace('/\<[^*]*/', '', $send_to_array[$send_to]), $send_to_email, $emailsubject, $enquiry, $name, $email_address); tep_mail(preg_replace('/\<[^*]*/', '', $send_to_array[$auto_send_to]), $send_to_email, $emailsubject, $enquiry, $name, $email_address, $order_number); }else{ tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, EMAIL_SUBJECT, '<STRONG>Name:</STRONG> ' . $name . "\r\n" . '<STRONG>Order #:</STRONG> ' . $order_number . "\r\n\r\n" . ' ' . $enquiry, $name, $email_address); //////tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, $emailsubject, $enquiry, $name, $email_address); } // EOF Super Contact us enhancement 1.0 tep_redirect(tep_href_link(FILENAME_CONTACT_US, 'action=success')); } else { $error = true; $messageStack->add('contact', ENTRY_EMAIL_ADDRESS_CHECK_ERROR); } } $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_CONTACT_US)); ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <?php // Header Tag Controller if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { require(DIR_WS_INCLUDES . 'header_tags.php'); } else { ?> <title><?php echo TITLE; ?></title> <?php } // EOF Header Tag Controller ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> <script language="JavaScript"> <!-- function MM_reloadPage(init) { //Updated by PVII. Reloads the window if Nav4 resized if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) { document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }} else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload(); } MM_reloadPage(true); //--> </script> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="0" cellpadding="3"> <tr> <td width="<?php echo BOX_WIDTH; ?>" valign="top" class="left"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="0"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table></td> <!-- body_text //--> <td width="100%" valign="top"><?php echo tep_draw_form('contact_us', tep_href_link(FILENAME_CONTACT_US, 'action=send')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_contact_us.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <?php if ($messageStack->size('contact') > 0) { ?> <tr> <td><?php echo $messageStack->output('contact'); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <?php } if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'success')) { ?> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main" align="center"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_man_on_board.gif', HEADING_TITLE, '0', '0', 'align="left"') . TEXT_SUCCESS; ?></td> </tr> <tr> <td align="right"><br><a href="<?php echo tep_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?></a></td> </tr> </table></td> </tr> <!-- BOF Super Contact us enhancement 1.0 //--> <?php } else { if (tep_session_is_registered('customer_id')) { $account_query = tep_db_query("select customers_firstname, customers_lastname, customers_email_address from " . TABLE_CUSTOMERS . " where customers_id = '" . (int)$customer_id . "'"); $account = tep_db_fetch_array($account_query); $name = $account['customers_firstname'] . ' ' . $account['customers_lastname']; $email = $account['customers_email_address']; } ?> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td width="650" height="0"></td> <td width="600"></td> </tr> <tr> <td rowspan="11" valign="top"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="2" align="left" valign="top" class="main"></td> </tr> <tr> <td width="38" height="120" align="left" valign="top" class="main"></td> <td width="334" valign="top"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="333" height="120" align="left" valign="top" class="main"> <STRONG><?php echo nl2br(STORE_NAME_ADDRESS); ?></STRONG><br><br><br> <?php echo (OPENING_HOURS); ?> </td> <td width="1"> </td> </tr> </table> </td> </tr> <tr> <td align="left" valign="top" class="main"><p> </p></td> </tr> </table> </td> <td height="40" valign="top" class="main"> <?php echo ENTRY_NAME; ?><br> <?php echo tep_draw_input_field('name'); ?> </td> </tr> <tr> <td height="4"></td> </tr> <tr> <td height="40" valign="top" class="main"> <?php echo ENTRY_EMAIL; ?><br> <?php echo tep_draw_input_field('email'); ?> </td> </tr> <tr> <td height="40" valign="top" class="main"> <?php echo ENTRY_ORDER_ID; ?><br> <?php echo tep_draw_input_field('order_id'); ?> </td> </tr> <tr> <td height="4"></td> </tr> <tr> <td height="40" valign="top" class="main"> <!-- <?php if (CONTACT_US_LIST !=''){ echo SEND_TO_TEXT . '<br>'; if(SEND_TO_TYPE=='radio'){ foreach(explode("," ,CONTACT_US_LIST) as $k => $v) { if($k==0){ $checked=true; }else{ $checked=false; } echo tep_draw_radio_field('send_to', "$k", $checked). " " .preg_replace('/\<[^*]*/', '', $v); } }else{ foreach(explode("," ,CONTACT_US_LIST) as $k => $v) { $send_to_array[] = array('id' => $k, 'text' => preg_replace('/\<[^*]*/', '', $v)); } echo tep_draw_pull_down_menu('send_to', $send_to_array); } echo; } ?> //--> </td> </tr> <tr> <td height="4"></td> </tr> <tr> <td height="40" valign="top" class="main"> <?php echo ENTRY_REASON; ?><br> <select name="reason"> <?php echo '<option value="' . REASONS1 . '">' . REASONS1 . '</option>'; ?> <?php echo '<option value="' . REASONS2 . '">' . REASONS2 . '</option>'; ?> <?php echo '<option value="' . REASONS3 . '">' . REASONS3 . '</option>'; ?> <?php echo '<option value="' . REASONS4 . '">' . REASONS4 . '</option>'; ?> <?php echo '<option value="' . REASONS5 . '">' . REASONS5 . '</option>'; ?> <?php echo '<option value="' . REASONS6 . '">' . REASONS6 . '</option>'; ?> </select> </td> </tr> <tr> <td height="4"></td> </tr> <tr> <td height="200" width="350" valign="top" class="main"> <?php echo ENTRY_ENQUIRY; ?><BR> <!-- BOF This is the change for the Form Vunerability Fix //--> <?php echo tep_draw_textarea_field('enquiry', 'soft', 50, 15, tep_sanitize_string($_POST['enquiry']), '', false); ?> <!-- EOF This is the change for the Form Vunerability Fix //--> </td> </tr> <tr> <td height="4"></td> </tr> <tr> <td height="66" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="547" height="62" valign="top" align="middle"><?php echo tep_image_submit('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?></td> </tr> <tr> <td height="4"></td> </tr> </table> </td> </tr> <tr> <td height="41" colspan="2" align="left" class="main"><br> </td> </tr> </table> </td> </tr> <tr> <td height="41" colspan="2" align="left" class="main"><br> </td> </tr> <?php } ?> <!-- EOF Super Contact us enhancement 1.0 //--> </table></td> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> Eric
  10. Im having the same issue Not getting the email at all then in my catch all box this is what it says A message that you sent contained no recipient addresses, and therefore no delivery could be attempted. Any idea Thanks
  11. Hello All, I have made the contrib. Customer Suggestion V1.1 and would like to implement new ideas and functionality within the admin panel. The link to the contrib is here: http://www.oscommerce.com/community/contributions,4915 The ideas that I have are the fallowing: 1) Set the different types of suggestions via admin>configuration This would then be added to the customer_suggestions.php page and would be the same principle as the super contact us contrib where you would set the contact us email. I can get it to work this way but I have to add in the same email for each option. 2) Have the option of radio/drop down menu. 3) Auto fill the name and email address if logged in. 4) Incorporate the visual verify(<---This is done already but not posted yet) and or the human verification contrib. 5) Clean it up a bit to make it look more professional. 6) Adding it into the account info(<------Done by rabbitseffort) and during checkout 7)Adding a link to the product description.(<-----Done but not posted yet) 8) Anything anyone else can come up with to make this better. To see this in action view my profile for the site address or view the contrib details on the link above. Thank you to anyone who may help with this little mod, Eric
  12. Hi all, Thanks for all the support. Everything was working fine until I noticed 2day that the get google pr gave me this error Warning: file(http://www.google.com/search?client=navclient-auto&ch=61146203445&ie=UTF-8&oe=UTF-8&features=Rank&q= info:www.mysite.com) [function.file]: failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /home/mview/public_html/admin/includes/functions/seo_assistant.php on line 96 Warning: implode() [function.implode]: Bad arguments. in /home/public_html/admin/includes/functions/seo_assistant.php on line 97 I read the previous threads on how to fix this but with little understanding on what I need to do to fix it. Thank you for any help Eric
  13. If anyone has the trick in fixing the ajax get new total button in version 3.2 PLEASE let someone know. If not here is how to safely remove this non working button. In catalog/includes/fec/ajax_shipping.php remove or comment out this line of code it is located near the bottom of the file. <noscript><tr align="right" class="infoBoxContents" ><td class="main" align="right"></td><td></td><td align="right"><INPUT TYPE="submit" class="button" name="save" value="update total"><?php// echo tep_image_submit('button_update_total.gif', IMAGE_BUTTON_CONTINUE,'name="save" value="update total"onmouseover="loadXMLDoc(this.value);"'); ?></td></tr></noscript> <tr> <td class="main" align="right"></td><td></td><td align="right"><script type="text/javascript"> <!--//document.write('<input type=button class=button "value=" <?php echo IMAGE_BUTTON_GET_TOTAL;?>" onclick="ajaxLoader(\'checkout_2confirmation.php?tip=\'+ zprice+\'&cb=\'+submitter+\'&zship=\'+zhipper+\'&osCsid=\'+Csid,\'contentLYR\')" name="CLEARBUTTON">');//--> </script> Again if you know the fix for it please post it some of us would like to use this feature. Eric
  14. Has anyone found the solution that works for the ajax get new total button. Any help would be appreciated. Eric
  15. I have added these changes and when I click get new total button it does work now. However the shipping total is not added. It simply displays the current total minus shipping fees. I use UPS. Any ideas what could be wrong now? Thanks in advance, Eric
  16. Sorry for bumping the post but I still haven't solved my problem yet. Thanks in advance, Eric
  17. Not to trough a wrench in things but I tought I might add this in here for folks who like having the ability to get where there goin on the first page. What this does: Add a new table on your admin index.php to the links/add a link, categories, Contact, Status, and featured. It will now be under the Tools links on the left side. Remember to back up!!!!! ONLY file changed is the admin/index.php Change this (aprox.) line 52 array('title' => BOX_HEADING_TOOLS, 'image' => 'tools.gif', 'href' => tep_href_link(FILENAME_BACKUP, 'selected_box=tools'), 'children' => array(array('title' => TOOLS_BACKUP, 'link' => tep_href_link(FILENAME_BACKUP, 'selected_box=tools')), array('title' => TOOLS_BANNERS, 'link' => tep_href_link(FILENAME_BANNER_MANAGER, 'selected_box=tools')), array('title' => TOOLS_FILES, 'link' => tep_href_link(FILENAME_FILE_MANAGER, 'selected_box=tools'))))); To this: array('title' => BOX_HEADING_TOOLS, 'image' => 'tools.gif', 'href' => tep_href_link(FILENAME_BACKUP, 'selected_box=tools'), 'children' => array(array('title' => TOOLS_BACKUP, 'link' => tep_href_link(FILENAME_BACKUP, 'selected_box=tools')), array('title' => TOOLS_BANNERS, 'link' => tep_href_link(FILENAME_BANNER_MANAGER, 'selected_box=tools')), array('title' => TOOLS_FILES, 'link' => tep_href_link(FILENAME_FILE_MANAGER, 'selected_box=tools')))), array('title' => BOX_HEADING_LINKS, 'image' => 'pixel_trans.gif', 'href' => tep_href_link(FILENAME_LINKS, 'selected_box=links'), 'children' => array(array('title' => LINKS_ADD, 'link' => tep_href_link(FILENAME_LINKS, 'selected_box=links&page=1&action=new')), array('title' => LINKS_CATEGORIES, 'link' => tep_href_link(FILENAME_LINKS_CATEGORIES, 'selected_box=links')), array('title' => LINKS_CONTACT, 'link' => tep_href_link(FILENAME_LINKS_CONTACT, 'selected_box=links')), array('title' => LINKS_FEATURED, 'link' => tep_href_link(FILENAME_LINKS_FEATURED, 'selected_box=links')), array('title' => LINKS_STATUS, 'link' => tep_href_link(FILENAME_LINKS_STATUS, 'selected_box=links'))))); Again this is only if you want the links to the LINKS in your admin Hope this is usefull to someone, Eric
  18. First of supper contrib n easy install. I have one slight problem when you are logged in (address_book.php) and you click on edit address on a page shows but no body, same goes for the add address link. Any ideas, Eric
  19. Quick question? Does this also work with main categories as well? Thanks, Eric
  20. Hello nana, I have a question, Im not sure if register_globals is an issue or not with this contrib however when they was on everything worked and now the only thing that I see that dont work is the "update total" but when using UPS shipping I think it may lay within this chunk of code but not sure. I dont know anything about ajax. I hope you would know. If you wish to see what I am reffering to the site is in my profile. <!--//document.write('<input type=button class="button" value=" Get New Total" onclick="ajaxLoader(\'checkout_2confirmation.php?tip=\'+ checkout_payment.tip.value+\'&gc=\'+checkout_payment.gv_redeem_code.value+\'&cb=\'+submitter+\'&zship=\'+zhipper+\'&osCsid=\'+Csid,\'contentLYR\')" name="CLEARBUTTON">'); //--> Thanks Eric
  21. Nope I ended up using to different kinds of VVC to get what I wanted
  22. For the situation I think Fast Easy Checkout would do you justice. Why I say this: 1)Faster checkout obviously 2)PWA is already intergrated into it 3)CCGV support 4)PWA does not work with all contribs (unless your are a good programmer getting PWA to work you will spend a lot more time pulling your hair out) Please dont get me wrong PWA is a good contrib. I have used both PWA and FEC. I just think that FEC is more logical than PWA do to the ease of adding more contribs that work with it. For example: How did you hear about us, does not work with PWA; Im not saying you should not use PWA Im just saying that FEC is an alternitive to your solution. PWA is good depending on what you plan on doing to your site as a whole and later on down the road. Eric
  23. I have just looked through every version of Block Customers Account and their is no // begin mod for BlockCustomerAccount v1.0a define('FILENAME_CUSTOMERS_BLOCK', 'customers_block.php'); // end mod for BlockCustomerAccount v1.0a As per the install instructions. If someone has this mod and has this file could you post it or add it to the contrib section http://www.oscommerce.com/community/contributions,1900/ Thank you, Eric
  24. Yes they are compatible, Look at the code from both, add the difference and it should would fine.
  25. They may cause a problem depending on what code is being replaced. For customers who want to go directly to pay the fastest way is to use Fast easy checkout. PWA is already intergrated into it so you dont have to wory about that. As you are installing it I dont recomend doing it on a live site. Or have someone add it for you. I would recomend using FEC inplace of PWA, not nocking PWA because its very useful in its own right. But, FEC just makes more logic to me. Hope this Helps, Eric
×
×
  • Create New...