Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Acheron

Archived
  • Posts

    520
  • Joined

  • Last visited

Profile Information

  • Real Name
  • Interests
    The 1st Amendment to the US Constitution!

Acheron's Achievements

  1. I have a question about the contribution Quantity to Add Listings, you've made.

    I have the following contri added into my site.

    http://www.oscommerce.com/community/contributions, 2113 /

    This works well, there are numbers in the product listing for the buy_now button.

    Thanks for making the contri, its work great.

    These materials are also added in th...

  2. Hi Acheron,

    I've just got the Quantity box to work for me, however the site I've added the quantity box is heavily modified version, with it's own template. My question is, how can i find out what parts of the code are modified in your version of product_listing.php so I can just add those pieces of code to my modified version of the same file.

    Thanks again,

  3. I'm not sure what the PWA mod is, can you elaborate? You can see the site in action at My site It's quasi-live but you can easily see what I am explaining without actually placing an order. I don't even get that selection screen, even if I re-enable the ship-in-cart for guests. By your layout, I can tell right away that you are using a different version than I am so I can only speculate. Anyway, the easiest way is for you to either: (a) add a JS so that field cannot be left blank or (B) Download a zip to state table (or create your own) and tie it to your tax zones.
  4. Do you have the PWA mod installed? By default, osC will not allow you to leave the state or zip fields blank. Same goes for adding new entries to the address book which is where this mod pulls the shipping destination from.
  5. nm, I referred back to some standard osC options and answered my own question. :)
  6. Opinions vary on this one but based on sheer features, updates and support, Greg's mod can't be beaten IMHO. :)
  7. Could someone please explain some of these configuration values to me prior to install? For example ... Display Link URL - 4 Display Link Title - 2 Display Link Description - 3 Display Link Click Count - 5 The description for these configuration options asks if you want to display them or not but they would seem like a display sort order considering that they are not simply 0 or 1 values (or Enable/Disable)??
  8. I can't really answer that one at this point b/c I have now disabled comments altogether. I see a couple issues with comments. (1) They are not moderated prior to be displayed publicly. Any immature jacka-- who decides to type in 'You suck' or something stupid like that will have his comment displayed publicly. Just one more thing I'd rather not worry about. (2) Comments aren't really necessary IMHO as the contact page provides ample opportunity for a user to leave feedback if they wish to do so. Anyway, back to your problem ... are there any variables concerning the word 'comments' that are located in both checkout and the poll mod?
  9. It works perfectly as far as I know. If there are any problems which need to be addressed, PM me and I'll be happy to fix them. :)
  10. Yes, if you are using a firewall like ZA (or many popup blockers) the WYSIWYG editors won't work properly, if at all. On occasion I have even tried playing with the ZA settings with no luck and finally had to turn off popup blocking altogether.
  11. Sorry I missed your response popcorn. Went away on Saturday so missed a few posts. Here's a screenie in case you still need a look: Screenshot
  12. OK, in case anyone is interested ... I think I have the mod in a good enough state now to release my version publicly but b/c of all the excessive changes, I was thinking I should 'Contribute a New Package' rather than add to the existing one, no?? lmk what you all think. Here are the changes I've made:
  13. Now I haven't gotten all of the design issues 100% in line with osC but here are 4 screenies of what I've got so far. Download
  14. I can, but I've changed more than enough so that it won't work with a pre-existing install. heh I changed all tables names for instance to begin with the word 'poll' as it makes it easier for me when I need to fix something if they're all grouped together and the name starts with something that describes it. Also, I have changed a query name within the PHP ($configuration_query) b/c I didn't like it using the same variables as a pre-existing query in application_top.php Anyway, that's where it stands. lmk :)
  15. Try mine if you'd like. I think it looks nice anyway. ;) Note though, it looks like I have a more recent version as the box doesn't display when a customer is logged in. <?php // do not display if logged in if ( (!strstr($_SERVER['PHP_SELF'],'login.php')) and (!strstr($_SERVER['PHP_SELF'],'create_account.php')) and !tep_session_is_registered('customer_id') ) { ?> <!-- loginbox //--> <?php if (!tep_session_is_registered('customer_id')) { ?> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_LOGIN_BOX); new infoBoxHeading($info_box_contents, false, false); $loginboxcontent = tep_draw_form('login', tep_href_link(FILENAME_LOGIN, 'action=process', 'SSL')) . BOX_LOGINBOX_EMAIL . tep_draw_input_field('email_address', '', 'size="10" maxlength="100" style="width: ' . (BOX_WIDTH-30) . 'px"') .'<br>' . BOX_LOGINBOX_PASSWORD . tep_draw_password_field('password', '', 'size="10" maxlength="40" style="width: ' . (BOX_WIDTH-30) . 'px"') .'<a href="' . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . BOX_LOGINBOX_FORGOT_PASSWORD . '</a>' . tep_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN) . '</form><br><br>' . BOX_LOGINBOX_TEXT_NEW . '<a href="' . tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL') . '">' . BOX_LOGINBOX_NEW . '</a>' ; $info_box_contents = array(); $info_box_contents[] = array('align' => 'center', 'text' => $loginboxcontent); new infoBox($info_box_contents); ?> </td> </tr> <?php } else { // If you want to display anything when the user IS logged in, put it // in here... Possibly a "You are logged in as :" box or something. } ?> <!-- loginbox_eof //--> <?php // My Account Infobox } else { if (tep_session_is_registered('customer_id')) { ?> <!-- my_account_info //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => BOX_HEADING_LOGIN_BOX_MY_ACCOUNT); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . LOGIN_BOX_MY_ACCOUNT . '</a><br>' . '<a href="' . tep_href_link(FILENAME_ACCOUNT_EDIT, '', 'SSL') . '">' . LOGIN_BOX_ACCOUNT_EDIT . '</a><br>' . '<a href="' . tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL') . '">' . LOGIN_BOX_ACCOUNT_HISTORY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_ADDRESS_BOOK, '', 'SSL') . '">' . LOGIN_BOX_ADDRESS_BOOK . '</a><br>' . '<a href="' . tep_href_link(FILENAME_ACCOUNT_NOTIFICATIONS, '', 'NONSSL') . '">' . LOGIN_BOX_PRODUCT_NOTIFICATIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_LOGOFF, '', 'NONSSL') . '">' . LOGIN_BOX_LOGOFF . '</a>'); new infoBox($info_box_contents); ?> </td> </tr> <!-- my_account_info_eof //--> <?php } } ?>
×
×
  • Create New...