-
Content count
77 -
Joined
-
Last visited
Everything posted by jblausey
-
DJMONKEY1 thoroughly answered this in the Order Editor Forum - look around page 97 Disable the payment method dropdown. or // disable the module if the order only contains virtual products if ( ($this->enabled == true) && (is_object($cart)) ){ global $cart; if ($cart->show_total() >= 0.01) { $this->enabled = false; } } or CODE // class methods function update_status() { global $order; // disable the module if the order only contains virtual products if ($this->enabled == true) { global $cart; if ($cart->show_total() >= 0.01) { $this->enabled = false; } } } to CODE // class methods function update_status() { global $order; // disable the module if the order only contains virtual products if ($this->enabled == true) { global $cart; if (is_object($cart)) { if ($cart->show_total() >= 0.01) { $this->enabled = false; } } } }
-
I'm using STS 4.5 and I got it working by changing if (strstr($scriptbasename, "popup")|| strstr($scriptbasename, "info_shopping_cart")) in sts_default to if (strstr($scriptbasename, "popup")|| strstr($scriptbasename, "info_shopping_cart") || strstr($scriptbasename, "ajax")) I enabled infoboxes and created infobox_shopping_cart.php.html and wrapped like so: <tr> <td style="padding: 0"> <script language="JavaScript" src="includes/ajax_sc.js"></script> <div id="divShoppingCard"><table border="0" width="100%" cellspacing="0" cellpadding="2">$content</table></div> </td> </tr> Hope this helps Someone
-
If I'm not mistaken, there is at least one contribution already available that allows you to manually create a customer and/or an order. If you're taking orders over the phone, this is extra work for you, but it allows you to send the survey.
-
I was having trouble getting the "Click here to go to survey" in the email to actually work as a link. It was appearing, but as another poster kept repeating, nothing was linking. After a little thought, I realized that under my Configuration -> Email Options -> Use MIME HTML When Sending Emails was set to FALSE. Once I changed this to true, then everything worked fine. Took awhile to make this work with a tracking contribution too, but think I figured it out. Had been hoping someone would have time to write good Survey script. Thanks!!!!!
-
v2_76d_MS2
-
I'm having the same problem and have similar settings, though I've tried making Excel safe 'true' and tried various field separators, used custom to build the file and then "Upload and Import EP File". On upload all the descriptions disappear. I've also got attributes set to false. $tempdir = DIR_FS_DOCUMENT_ROOT . "temp/"; Seen this problem brought up in an earlier post with no answer, figured I'd say how I was updating the file - maybe I'm still doing something wrong. Thanks only products updated were affected.
-
Credit Class/Gift Vouchers/Discount Coupons 5.10
jblausey replied to Strider's topic in General Add-Ons Support
Nevermind - got it to work. -
Credit Class/Gift Vouchers/Discount Coupons 5.10
jblausey replied to Strider's topic in General Add-Ons Support
I've seen several inquiries so I'm going to throw my hat in. We're using this great contribution (thank you everyone) and like others there will be times that the coupon code will make the price $0.00. I've tried to use a payment module for checking out when $0 http://www.oscommerce.com/community/contri...y,1/search,free but I need to be able to read the new total as $0 - the new total is still the original price minus the coupon. -
Let me apologize for letting this post - I had duplicated an existing site and had forgotten to change out the database info - what maroon. Sorry, but thanks for the reply.
-
Just as a double check - this is the sql statement that's to be used - correct? ALTER TABLE `products` ADD `products_make_an_offer` TINYINT(1) DEFAULT '0' NOT NULL; INSERT INTO `configuration_group` VALUES ('', 'Make An Offer', 'The options to configure the MAO button.', '1', '1'); UPDATE `configuration_group` SET sort_order = last_insert_id() WHERE `configuration_group_id` = last_insert_id(); INSERT INTO configuration VALUES ('', 'Accept offer directly', 'MAO_ACCEPT_OFFER_DIRECTLY', 'true', 'Add an accepted offer directly to the shopping cart', last_insert_id(), '1', NULL, now(), NULL, 'tep_cfg_select_option(array(\'true\', \'false\'),'), ('', 'Maximum allowed offer percentage', 'MAO_MAX_OFFER_PERCENTAGE_ALLOWED', '20', 'The maximum percentage of the official price you will accept an offer for (ie. if the set price is 100 all offers below 80 will not be accepted for the default of 20%.).', last_insert_id(), '2', NULL, now(), NULL, NULL);
-
I'm having the same error message as EricInHouston 1054 - Unknown column 'p.products_make_an_offer' in 'field list' ADMIN side Did an solution ever present itself?
-
Had the same problem. Added the column_left and column_right includes into the file. STS, then knows what to capture. Had to do some jerry-rigging to then hide the columns on that page. Shows up with STS enabled.
-
HELP WITH "CUSTOM COMPUTERS" CONTRIBUTION
jblausey replied to gladiator2043's topic in General Add-Ons Support
What version were you using? 9.3? We found it extremely buggy. It has taken us hours but we've almost got it to work the way we want it to. -
[contribution] Simple Template System (sts)
jblausey replied to DiamondSea's topic in Templates and Images
Just wanted to say great idea on parsing php - its working great - just had to put the sts_ file outside the sts directory. Haven't made it to the products yet - but so far so good! :D -
where do you have your sts_template.html file? the download had it all under the sts_ folder Downloaded and installed sts 3.0 yesterday - so far so good :thumbsup: From the list of new features I thought that my sts_template.html had to be inside the sts directory, but it works great outside the folder - loving the fact that it parses php code!
-
I'm not sure there is a contribution for what you're asking. Have you figured anything out with this yet?
-
[contribution] Simple Template System (sts)
jblausey replied to DiamondSea's topic in Templates and Images
Check index.php under /catalog and under /english - that's where I would start - cause it looks isolated to the catalog home page - wish I could be more help -
I later found out that I didn't work. I ended up unistalling the linkpoint contribution and found a more recent contribution at http://www.oscommerce.com/community/contri...earch,Linkpoint It had better instructions and I was able to determine that my client did not added the right plan to his merchant account. I don't remember anymore what the lines were but I didn't end up using it. If you downloaded the contribution I mentioned in the first paragraph and still need help finding the lines, then let me know or you can contact the author of the contribution directly. He offers free support on this contribution.
-
Parse error: with IP Address Collecter contrib
jblausey replied to bachrick's topic in General Add-Ons Support
I had the same error when I tried to install the contribution. Tried adding "comments" to the database and it then said it was missing "new_field" in the orders_history section... before I knew it I was adding fields left and right. Fortunately I read the instructions and did a backup... backup... backup..... If anyone knows how to install this script then please advise. Using STS and Linkpoint -
well what do you know.... it works... the post by jbireton on Jul 2 2004, 06:58 PM was just what I needed ... just took a little longer than I wished to figure out what lines were being referred to.
-
what should happen in test mode if the card is successful?