Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

OregonBum

Archived
  • Posts

    46
  • Joined

  • Last visited

About OregonBum

  • Birthday 06/30/1967

Profile Information

  • Real Name
    Chris Kiltz
  • Location
    Southern Oregon
  • Interests
    Hiking & photography in the beautiful mountains of So. Oregon
  • Website

OregonBum's Achievements

  1. Hi Matt, I'm wondering if you ever figured this out. I'm using STS, along w/ SEC. I don't see STS causing a problem since it wraps around the outside of things. I used your "fix" and got the price to show right under the products in the prod. conf. page, but it's still showing up as the full price under billing (and goes through as full priced if you place the order). Also, hoping it would provide a solution, I updated CGDiscountSpecials to the latest version & applied the latest patches. No luck. Any ideas on what you've found out would be great. Cheers! Chris Hi Davide, I'm wondering/hoping if you're familiar enough with SEC & STS to help unravel this mystery. You can see it in action at: http://www.smallbusinessideas.com/index.php (go through the biz guide products) Cheers! Chris
  2. Hi Matt, I'm wondering if you ever figured this out. I'm using STS, along w/ SEC. I don't see STS causing a problem since it wraps around the outside of things. I used your "fix" and got the price to show right under the products in the prod. conf. page, but it's still showing up as the full price under billing (and goes through as full priced if you place the order). Also, hoping it would provide a solution, I updated CGDiscountSpecials to the latest version & applied the latest patches. No luck. Any ideas on what you've found out would be great. Cheers! Chris
  3. Hi, I guess it doesn't want to play nice with me. I've tried a couple re-uploads from several different backups of the original, & also searched through the forums to see if someone else came up with the solution. Any other ideas of what might be causing the error? Cheers! Chris
  4. Hi Mark, To change the layout of the page (to a degree), edit the sts_template. But, to change the colors of the page, edit the stylesheet.css that's in the main catalog directory. The nice thing about the store is the main look & feel, (background, text color, links, etc) is all run by the style sheet. The STS template system just makes it easier to move the info boxes around, change the structure of the page. Hope this helps, if not, holler - we're here to help each other. Cheers! Chris
  5. Thanks to Speedy, there's a working solution that is much easier to work through than mine. As I had stated originally, this was my first attempt at trying to make the 2 great contribs play together. In 11 neat steps, you can have them play nicely as default installs, just follow Speedy's instructions at: http://www.oscommerce.com/forums/index.php?sho...=0entry316814 ...And thanks much Speedy for picking up & going forward to where I left off. :D Cheers! Chris
  6. First, if you read the readme files, you will see that I had modified the site to NOT use the right column - the files are to only give you the idea of how to combine the 2. Your problem of not having the center info show up is because you've got an IF statement in the wrong place - again, something I plainly addressed in my readme files & in the comments at the top of the pages that I modified. Combining the 2 isn't for the faint hearted, and my contribution doesn't give a cut/dried solution, but rather a road map for someone else to follow to be able to put the pieces together. I'm waiting for someone with more experience than I have to come & combine both Contribution in the true sense, so when you install the store, STS would be a natural part of SEC. Best of luck! Chris
  7. As I mentioned in the notes at the top of files & throughout the readme, I have heavily modified some of these files, and have posted them without "re-modifying" back to their original because several people have been asking for them. I say to start w/ clean SEC install b/c if you start w/ a clean install of OSC, then install STS & then put in SEC, you will negate all your changes. IF you want your page to look & play just like mine, you can overwrite the original SEC file. BUT I recommend using my files ONLY as a guide to show you where approximately the STS lines need to go. What does need to be merged are the STS lines. I've included my files simply to show where approximately you need to include the STS lines in the SEC file. If you look closely with my footer.php, you will see the comparative lines on the original where you need to add the STS lines. Add the STS lines in the same place in the original SEC file, making sure you're not under an IF statement, and it should work for you. I haven gotten this to work for me in the situations that I need it to work in, if your situation is a lot different, you'll need to hack like I did. I mainly wanted to show that it is possible. Cheers! Chris
  8. In accordance w/ Matt's suggestion, I just posted these as a contribution. http://www.oscommerce.com/community/contributions,1748 The link posted to my external site no longer works - please use this contrib link.
  9. Hi Matt, Thanks, I did look at the New Contribution rules, but wasn't sure if my files actually fit under that heading. ... Guess they do, I'll post over there & update this thread. Thanks! Chris
  10. Hi Tom, Once you've made the modifications to the other files as required & updated your configure.php page, the $fields will show up as actual content. You can place them w/ your wysiwyg or remove any you don't want to. If you're seeing $fields in your browser, it usually means that not all the files have been modified. So, first, confirm that you've made all the changes that are in the STS readme file, then if you're still having problems, come back & we'll dig deeper. Cheers! Chris
  11. I'm not seeing where to attach a file, here's the files (zipped) http://designbykiltz.com/sec_sts.zip Chris
  12. SEC & STS do work together - It took some sweat & tweaking, along with several days of stretching to the limit to figure out why errors are happening. Here's what I recommend. 1. Start out with a clean install of SEC 2. Be comfortable with PHP & able to follow code (you will need to look at this code!) 3. (MY DISCLAIMER) These files came from a working shop where I have heavily at times modified the original SEC code. I have put comments at the top of the pages that I have modified besides adding the STS code to the page. Most likely, your store will not look right if you do a "blind" overwrite of the original files. As my php knowledge grows, I will most likely more closely integrate these files. I don't claim to be a php guru by a long shot, so if someone's got a better way, please take it & run - I'll follow & learn from you :) 4. This by no means is a complete contribution! I've had several requests to share what made these 2 great contributions play together, and this is my initial stab at doing that. Cheers! Chris
  13. I got my file to work by updating to the latest STS lines in the config.php. Make sure you've got all these lines: // STS: ADD: Define Simple Template System files define('STS_START_CAPTURE', DIR_WS_INCLUDES . 'sts_start_capture.php'); define('STS_STOP_CAPTURE', DIR_WS_INCLUDES . 'sts_stop_capture.php'); define('STS_RESTART_CAPTURE', DIR_WS_INCLUDES . 'sts_restart_capture.php'); define('STS_TEMPLATE_DIR', DIR_WS_INCLUDES . 'sts_templates/'); define('STS_DEFAULT_TEMPLATE', DIR_WS_INCLUDES . 'sts_template.html'); define('STS_DISPLAY_OUTPUT', DIR_WS_INCLUDES . 'sts_display_output.php'); define('STS_USER_CODE', DIR_WS_INCLUDES . 'sts_user_code.php'); // STS: EOADD Somehow I had dropped one & it wasn't working, now it works fine Cheers! Chris
  14. You might get better results posting in the STS support thread at http://www.oscommerce.com/forums/index.php?showtopic=58541 I'm dealing with the same problem & searching for an answer. Cheers! Chris
  15. The categories were showing up on the main page fine before installing cieto. They still show up on the sub-category pages, just not the main page. Help from anyone is appreciated! Chris
×
×
  • Create New...