Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

zpupster

Members
  • Posts

    370
  • Joined

  • Last visited

1 Follower

Profile Information

  • Real Name
    craig

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

zpupster's Achievements

  1. maybe i phrased it wrong. Does anyone here on oscommerce, use or has used, shipping UPS and FEDEX addon module that works with Frozen v2341 CE . TY
  2. Hello forum, I am looking for some advice. We are using UPS XML Rates v1.6.1 for osCommerce 2.3.4 for osCommerce Online Merchant v2.3.4.1 CE frozen. We would like to add FedEx as a shipping choice. Could someone using a working shipping module that will work for our situation let us know what to use for our version of OSCommerce. TY
  3. TY Everyone , It is working now. One problem we have, our store has a buybacks form(which is more or less a duplicate of the contact_us.php form). I think I can handle adding to the module and configure it, but you never know. Thanks again for all the support you gave me.
  4. thank you I tried this-- it did not work for me I will try again.
  5. Steve, I am using siteground. Who was your host??I am having difficulty getting the google captcha to work. my contact_us.php page works fine as an outgoing mail as you stated. I can not find a captcha addon for 2341 cE, 24, and siteground does not like honeypot captcha. TY
  6. hello support, We are using: Installed Version: osCommerce Online Merchant v2.3.4.1 CE our welcome emails were getting bounced back. we contacted our host . OK so we installed Honey Pot Captcha https://apps.oscommerce.com/t3rEO&honey-pot contacted support again they responded: What would be the recommended Captcha add on to use so we can get removed from blacklist???????? TY
  7. for me in Sitemap Seo on oscommerce 2341 FrozenCE this needed to be added to english.php catalog\admin\includes\languages\ english.php /***** Begin Sitemap_SEO *****/ define('MODULES_ADMIN_MENU_HEADING_SITEMAP_SEO', 'Sitemap SEO'); define('MODULES_ADMIN_MENU_SITEMAP_SEO_BOX_CONTROL', 'Box Control'); define('MODULES_ADMIN_MENU_SITEMAP_SEO_PAGE_CONTROL', 'Page Control'); define('MODULES_ADMIN_MENU_SITEMAP_SEO_SETTINGS_CONTROL', 'Settings Control'); /***** End Sitemap_SEO *****/ @Jack_mcs
  8. ok, thinking about this. 1) i need to turn off the ups module. this piece of code might do that, any suggestions where to place in the upsxml 1.7 module? if ($check_flag == false) { $this->enabled = false; } } if ($total_weight < 150) { $this->enabled = false; } i would have change direction of inequality sign. i tried many things, replacing this return $this->quotes; with this $this->description tried commenting this out. $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_RFQ_TEXT_TITLE, 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_RFQ_TEXT_WAY, 'cost' => MODULE_SHIPPING_RFQ_COST))); no errors just breaks. any hints?? Z
  9. hello support, using oscomm 2341 and on host's php 7.1 i have an old shipping module add on --that currently works like this(see pic). it warns that this is a freight order (over 150 lbs) and has to be called in. but ideally, we would like the ups shipping quotes NOT to show, and just have the message to call in the order i am guessing where this is return $this->quotes; I would stop this or replace it with the text includes>languages>english>modules>shipping define('MODULE_SHIPPING_RFQ_TEXT_DESCRIPTION', '<div class="alert-success">Call 1-800-555-5555 -- MUST CALL TO COMPLETE FREIGHT ORDERS.</div>'); Please advise, Z herre is the code: <?php /* $Id: rfq.php,v 1.3 2006/02/13 14:29:56 naegle Exp $ Based upon flat.php / spu.php by M. Halvorsen (http://www.arachnia-web.com) osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License CHANGES: NOV-20-05 - formatted to work with latest checkout procedure - updated the db queries CHANGES: NOV-21-05 - included icon - fixed table configuration CHANGES: FEB-13-06 - Added Disable Zone */ class rfq { var $code, $title, $description, $icon, $enabled; // class constructor function rfq() { global $order, $total_weight; $this->code = 'rfq'; $this->title = MODULE_SHIPPING_RFQ_TEXT_TITLE; $this->description = MODULE_SHIPPING_RFQ_TEXT_DESCRIPTION; $this->sort_order = MODULE_SHIPPING_RFQ_SORT_ORDER; // $this->icon = 'images/icons/shipping_rfq.gif'; $this->enabled = ((MODULE_SHIPPING_RFQ_STATUS == 'True') ? true : false); if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_RFQ_ZONE > 0) ) { $check_flag = false; $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id <> '" . MODULE_SHIPPING_RQF_ZONE . "' and zone_country_id <> '" . $order->delivery['country']['id'] . "' order by zone_id"); while ($check = tep_db_fetch_array($check_query)) { if ($check['zone_id'] < 1) { $check_flag = true; break; } elseif ($check['zone_id'] == $order->delivery['zone_id']) { $check_flag = true; break; } } if ($check_flag == false) { $this->enabled = false; } } if ($total_weight < 150) { $this->enabled = false; } } // class methods function quote($method = '') { global $order; $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_RFQ_TEXT_TITLE, 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_RFQ_TEXT_WAY, 'cost' => MODULE_SHIPPING_RFQ_COST))); if (tep_not_null($this->icon)) $this->quotes['icon'] = tep_image($this->icon, $this->title); return $this->quotes; } function check() { if (!isset($this->_check)) { $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_SHIPPING_RFQ_STATUS'"); $this->_check = tep_db_num_rows($check_query); } return $this->_check; } function install() { tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Shipping Quotes', 'MODULE_SHIPPING_RFQ_STATUS', 'True', 'Do you want to offer shipping quotes?', '6', '6', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Quote Fee', 'MODULE_SHIPPING_RFQ_COST', '0.00', 'What is the Quote Fee?', '6', '6', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone', 'MODULE_SHIPPING_RFQ_ZONE', '0', 'If a zone is selected, DISABLE this shipping method for that zone.', '6', '0', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_SHIPPING_RFQ_SORT_ORDER', '6', 'Sort order of display.', '6', '6', now())"); } function remove() { $keys = ''; $keys_array = $this->keys(); for ($i=0; $i<sizeof($keys_array); $i++) { $keys .= "'" . $keys_array[$i] . "',"; } $keys = substr($keys, 0, -1); tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); } function keys() { return array('MODULE_SHIPPING_RFQ_STATUS', 'MODULE_SHIPPING_RFQ_COST', 'MODULE_SHIPPING_RFQ_SORT_ORDER', 'MODULE_SHIPPING_RFQ_ZONE'); } } ?>
  10. @Jack, will this work on osc2341CE with php 7.1?? Z
  11. thanks Jack, what i posted was how it appeared. I reloaded the instructions page and it is now corrected. TY again Z
  12. hello support, i am using frozen 2341CE, with php 7.1. trying to install oscom-ultimate-seo-urls-36rDo-CPS2y. in the instructions it states to find this in: STEP #4 - Edit admin/categories.php //// // Ultimate SEO URLs v2.2d // The HTML href link wrapper function function tep_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true) { global $seo_urls; if ( !is_object($seo_urls) ){ if ( !class_exists('SEO_URL') ){ include_once('includes/classes/seo.class.php'); } global $languages_id; $seo_urls = new SEO_URL($languages_id); } return $seo_urls->href_link($page, $parameters, $connection, $add_session_id); } and add after: // Ultimate SEO URLs v2.2d // If the action will affect the cache entries if ( preg_match("/(insert|update|setflag)/i", $action) ) include_once('includes/reset_seo_cache.php'); searching for pieces of the code or searching the whole site for wrapper function I can not find something resembling the code so where do i put the new suggested code??? Z
  13. yes that did it. Thank you PuddleC Z
  14. i changed to cm_i_carousel i used the original code below -- and it works--all except the images will not appear on the index page-- the carousel arrows do. I have used /images/ and /images and images/ and just plain images in place of DIR_WS_IMAGES. I have used single quotes -double quotes and no quotes , parentheses i guess my question what needs to go there?? if ($banner['banners_image'] !== '') { //$wrapper_slides .= tep_image(DIR_WS_IMAGES . $banner['banners_image'], $banner['banners_html_text']); $wrapper_slides .= tep_image(DIR_WS_IMAGES . $banner['banners_image'], '', 800, 400); $wrapper_slides .= '<div class="carousel-caption"> </div>'; } else { //$wrapper_slides .= tep_image(DIR_WS_IMAGES . 'pixel_silver.gif', 'alt', 544, 172 ); $wrapper_slides .= '<img class="img-responsive" alt="544x172" src="' . $background . '" />'; $wrapper_slides .= '<div class="carousel-caption">' . $banner['banners_html_text'] . '</div>'; }
  15. TY puddleC, I removed that dot before when i replaced it this error returned: Parse error: syntax error, unexpected '$wrapper_slides' (T_VARIABLE) in catalog/includes/modules/content/index/cm_i_carousel.php on line 93
×
×
  • Create New...