Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

HollyRidge

Pioneers
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Real Name
    John Bage

HollyRidge's Achievements

  1. Hello, I was wondering if anyone knew of an add on to the offline cc payment module to process through authorize.net gateway from the admin side of the cart? I have a site that uses authorize.net however for fraud control they use the offline credit card payment module and process all payments manually through the authorize.net virtual terminal. I am looking for a way to integrate a way to process this directly from the admin side of the cart so as not to have to type or copy & paste all the info over to simplify this process. I came across this (osCommerce: Authorize.net Manual Payment) but not sure if it would even work for what I am looking for or if it would work at all due to being so old. Thanks
  2. I have this same problem. Does anyone know how to correct this issue? This is in the language file. You have to define 'NAVBAR_TITLE' in the language. Here is what I put in mine (you could get fancier and put in the question, category, etc. but I kept it simple for the moment and just put it as 'FAQDesk'. define('NAVBAR_TITLE', 'FAQDesk');
  3. Thank you lane! That was exactly what I was looking for! :)
  4. I am trying to figure out how to change the date format in the faq listings in the FAQDesk 1.01.1 contrib (http://www.oscommerce.com/community/contributions,1106). I found the line but for the life of me I can not figure our how to change the way the date & time are formated. I want it to show the date using the same format as the rest of my cart which is determined in the top of english.php in the languages directory. Here is the section of code it is in (includes/modules/faqdesk/faqdesk_listing.php)... if ( ($number_of_products/2) == floor($number_of_products/2) ) { // if ( ($number_of_faqs/2) == floor($number_of_faqs/2) ) { $list_box_contents[] = array('params' => 'class="productListing-even"'); } else { $list_box_contents[] = array('params' => 'class="productListing-odd"'); } $cur_row = sizeof($list_box_contents) - 1; $cl_size = sizeof($column_list); for ($col=0; $col<$cl_size; $col++) { $lc_align = ''; switch ($column_list[$col]) { case 'FAQDESK_DATE_AVAILABLE': $lc_text = ' <a href="' . tep_href_link(FILENAME_FAQDESK_INFO, ($faqPath ? 'faqPath=' . $faqPath . '&' : '') . 'faqdesk_id=' . $listing_values['faqdesk_id']) . '">' . $listing_values['faqdesk_date_added'] . '</a> '; break; case 'FAQDESK_ANSWER_LONG': $lc_text = ' <a href="' . tep_href_link(FILENAME_FAQDESK_INFO, ($faqPath ? 'faqPath=' . $faqPath . '&' : '') . 'faqdesk_id=' . $listing_values['faqdesk_id']) . '">' . $listing_values['faqdesk_answer_long'] . '</a> '; break; case 'FAQDESK_ANSWER_SHORT': $lc_text = ' <a href="' . tep_href_link(FILENAME_FAQDESK_INFO, ($faqPath ? 'faqPath=' . $faqPath . '&' : '') . 'faqdesk_id=' . $listing_values['faqdesk_id']) . '">' . $listing_values['faqdesk_answer_short'] . '</a> '; break; case 'FAQDESK_QUESTION': $lc_text = ' <a href="' . tep_href_link(FILENAME_FAQDESK_INFO, ($faqPath ? 'faqPath=' . $faqPath . '&' : '') . 'faqdesk_id=' . $listing_values['faqdesk_id']) . '">' . $listing_values['faqdesk_question'] . '</a> '; break; } $list_box_contents[$cur_row][] = array( 'align' => $lc_align, 'params' => 'class="productListing-data"', 'text' => $lc_text ); } } This is the line (109) that controls that... . 'faqdesk_id=' . $listing_values['faqdesk_id']) . '">' . $listing_values['faqdesk_date_added'] . '</a> '; This is the part of that code that controls it... $listing_values['faqdesk_date_added'] I am trying to get it to use the same as the faqpages themselves (faqdesk_info.php) like is controlled by this line... <?php echo sprintf(TEXT_FAQDESK_DATE, tep_date_long($product_info_values['faqdesk_date_added']));; ?> I know this is way different than it but that is the type of format I need. Anyone have any ideas of how to change that line of code to make it work to use the standard format?
  5. Now dont I feel dumb! :-" I have been looking for something like this now for hours and was right there all along! :blush:
  6. How can we increase the timeout value in the admin section? I see where this question has been asked several times throughout the forum but no replies to any of them. Anyway this is a very good mod but just need to figure this out because a lot of the time before we can finish typing up replies, etc to customers only to loose them when submiting due to login timing out.
  7. I am looking for a few hacks/mods to use our store to sell services. I have done a search but end up with almost 200 pages of nothing that even pertains to what I am looking for. Anyway I am hoping someone here can point me in the right direction. Mods we are looking for... 1) Add a one time setup fee (on a per item basis) in addition to the regular price. 2) Add a discount code on a per item/per customer basis where it will allow the customer a discount off some of their purchases. 3) Recurring billing setup. We use 3 different methods to accept credit cards, which are Paypal, 2checkout (boy are they awful!), and in house (merchant acct from bank).
×
×
  • Create New...