Grinse Posted September 14, 2007 Share Posted September 14, 2007 Ok me again. It seems as if I have solved most of the points: 1. I decided to do it in the normal way. 2. This can be done with an extra contrib called enable & disable categories 4. Ok this summary seems to be there also in the normal version. I don't know why it wasn't shown with the first installation. But I still have to make it good looking when I create a template for the shop. 3. This still is not solved but very important for me! 5. That's also not done now. But I think I can fix it also with a design template. Ok I have some new questions: 6: Is it possible to transform these dropdown Menus to checkboxes (I already have seen it on a commercial version of ccc)? 7: Is it possible to make pre choices? So when the customer follows a link he sees a system with pre chosen components which he can change if he wants to. 8: I need to display a fix price for building the system. How can I realize that? Another problem: I can’t disable the option of building the system by the customer and the longer warranty, in the admin panel. Every time I change it the option jumps back to enabled. Very essentially for me are point 3 (at least the first link (in the demo setup the choice between AMD and Intel) should be deactivated), point 7 and point 8. Please can anyone help me?a Quote Link to comment Share on other sites More sharing options...
Grinse Posted September 15, 2007 Share Posted September 15, 2007 Hm, is here still someone alive? Ok, I changed the line to show the price in custom_checkout.php a little bit. Now the chosen curency symbol from ccc is used: <?php echo cur_symbol . number_format($products_total, 2); ?> Is there a way to display the current curency chosen within oscommerce in ccc? Also I disabled the Option to enable / disable the product images within the front-end (because it's not working: You have to disable these lines (in /catalog/ccc.php around line 124): <form action=<?php echo tep_href_link(FILENAME_CCC);?> method="POST"><?php echo TEXT_DISPLAY_PICTURES;?><p align="left"> <?php if (pond == "y"){ echo TEXT_YES . tep_draw_radio_field('ccc_pics', 'y', 'CHECKED', 'onclick=submit(this.form)').' ' . TEXT_NO . tep_draw_radio_field('ccc_pics', 'n', '', 'onclick=submit(this.form)'); }else{ echo TEXT_YES.tep_draw_radio_field('ccc_pics', 'y', '', 'onclick=submit(this.form)').' ' . TEXT_NO .tep_draw_radio_field('ccc_pics', 'n', 'CHECKED', 'onclick=submit(this.form)'); } echo tep_draw_hidden_field('systype', $HTTP_POST_VARS['systype']); ?> </form> I also figured out my point 7. I didn't know that I can activate the defaults just by pressing the icon. Although I'm not sure if ccc counts the prices correctly. Maybe I damaged my configuration but when I add the parts seperatly they are more expensive. What I'm still need to have is an option (if there's no regular option I need a way to modify the files) to disable the first categorie section (amd / Intel in a plain installation). So when I select Custom Computer Creator I can directly chose between the listed systems. Also a way of changing the dropdown menus is very important for me. For example it would be fine if there is no dropdown menu (just the plain line, like a textline) when I only have one option (for example to integrate the build price fix, to display the motherboard-integrated soundcard for a better understanding for the customer and so on). Radio buttons would also be nice because it looks better. Is there still someone working on the contribution? Whats with Version 9.4, xmedia was working on? And will there really be an update as Stephen mentioned in July? Quote Link to comment Share on other sites More sharing options...
killerbambam Posted October 2, 2007 Share Posted October 2, 2007 Everything works fine customer side but in the admin side everytime i click any of the custom computer links page goes blank. Any ideas? Quote I didnt have any freakin links in my sig!!! Pm me for help any other things ;-) There! Link to comment Share on other sites More sharing options...
killerbambam Posted October 2, 2007 Share Posted October 2, 2007 Nevermind. Remembered i had to stick the files for the languages in the /english/ folder not /English/ Quote I didnt have any freakin links in my sig!!! Pm me for help any other things ;-) There! Link to comment Share on other sites More sharing options...
kurtkb Posted October 3, 2007 Share Posted October 3, 2007 Hi. First, sorry for my horrible english. I want to now, if someone can use the radio button option. If it´s works send an email please. thanks. Quote Link to comment Share on other sites More sharing options...
Grinse Posted October 5, 2007 Share Posted October 5, 2007 It's not implemented in the free CCC contrib. Just a part is added so you have to finish it when you want to have radio buttons. The only other way I know: Buy the commercial version for round about 400 USD. Quote Link to comment Share on other sites More sharing options...
Grinse Posted October 5, 2007 Share Posted October 5, 2007 At the moment I'm styling up my build.php. Changes I did until now: - disabled reset_form button - use the osc language specific "ad to cart" buttons - uniform stile for total, currency symbol and the price - total, currency symbol and price on the buttom are placed on the right side now (same with top) - the image is now left not right - under the drop down list is now the categorie description - added a no_image image for pictures without image (it's the same I use for OTF Automatic Thumbnailer so I had to modify java.php) - added a image button for "click here to enlarge" My questions are now: 1. I have a problem with the "click here to enlarge" button: When I click the button the popup window with the big image opens but the shop also adds the system to the cart. The lines to change are within java.php: The original code from ccc is: echo "var _n" . $j . " = \"<input type='button' value='".TEXT_ENLARGE_IMAGE."' onclick=java script:ccc_popup(\'ccc_image.php?image=\"\n"; I modified it in this way: echo "var _n" . $j . " = \"<input type='image' src='images/image_enlarge.gif' value='".TEXT_ENLARGE_IMAGE."' onclick=java script:ccc_popup(\'ccc_image.php?image=\"\n"; 2. Is there a way to display no drop down list when only one item is chosable. So this item is showing in the configurator in a text area? I think with a if/else statement it could be done (but where have I to look for?)? Would be nice if someone can help me Quote Link to comment Share on other sites More sharing options...
Carbon Posted November 13, 2007 Share Posted November 13, 2007 Hi, Grinse, try this instead... echo "var _n" . $j . " = \"<img src='images/image_enlarge.gif' title='".TEXT_ENLARGE_IMAGE."' onclick=java script:ccc_popup(\'ccc_image.php?image=\"\n"; ... by using the <input type="image"> it was acting like a submit button and posting the form. Whilst I'm here there's a small bug in CCC I've found that I'm hoping someone knows the solution to. If you change a default component in build.php to none (Please Select etc) and then add the custom system to the cart and then click the edit button, when you go back to build.php to edit the system it reverts the not selected component back to its default option. It's fine if you change an option to another option and it works if you change a default not selected option to an option. It's only when you change an option to not selected. Cheers Carbon Quote Link to comment Share on other sites More sharing options...
Carbon Posted November 22, 2007 Share Posted November 22, 2007 Hi Guys, Are any of you interested in testing the Online Order System (inc' CCC) of my site? Here are some unique features you will be able to see and test... GENERAL: 1: Proper breadcrumb navigation that never scrolls off the page. 2: Page specific Help button in nav panel. 3: Cart info in nav panel. 4: Page specific icons for Sitemap, Bookmark, Print, Email and Feedback. INDEX (Index.php): 1: Welcome panel with customer specific information. 2: Three easy choices... Select, Customise or Design a system. SELECT (select.php): 1: Summary cell featuring preview slideshow and easy pick list of available systems, instructions, Which One? and best sellers. 2: Compare cell with undockable remote for navigation. 3: Individual system cells with links to reviews, details, overview and Add to Order. 4: Details page that strings all the included component cells together so you can see exactly what is included. CUSTOMISE (customise.php) (replaces ccc.php): 1: Summary cell featuring preview slideshow and easy pick list of available systems, instructions, Which One? and best sellers. 2: Compare cell with undockable remote for navigation. 3: Individual system cells with link to customise (build.php). 4: Tip panel to outline rules used to customise system (eg. case etc will be black, only motherboards that support multi-core processors etc). CONFIGURE (build.php): 1: Each system can be linked to from ANY part of the site so no need to go through ccc.php. 2: Dynamic price in breadcrumb. 3: Reset configuration to default components. 4: Clickable component list that links to each component on the page. 5: "Please Select" is removed from dropdown menus if component is required. 6: "Please Select" is replaced with "No Floppy Drive Required" etc. 7: Select item is highlighted in dropdown option list. 8: Components are grouped in dropdown menu options. 9: Selecting an AMD or Intel processor updates the motherboard options to only show compatible boards. 10: The number of installed Hard Drives updates available RAID options. 11: Required/Optional button opens a window with an overview of requirements. 12: System specific recommendations for each component. 13: Custom More Info window. 14: Add to Order completely skips the unnecessary Custom Checkout page. 15: You can now use the back button without losing data. MY ORDER (shopping_cart.php): 1: Dynamic Total Order cost displayed in breadcrumb. 2: Delivery option costs displayed and auto-updates if quantities are changed. 3: Place Order button appears in nav panel once a system is added to the order. 4: Single Delete button for each system instead of a checkbox and Update button. 5: Custom systems can be edited or an overview displayed for pre-configured systems. PLACE ORDER (place_order.php): 1: A total single page replacement for the usual 4 step checkout process. 2: The conventional 4 step checkout is available from the Help page. 3: Guest purchasers are diverted to create an account before returning. 4: Checkboxes replaced with styled buttons for selecting delivery address etc. 5: Double-click prevention on the Confirm Order button. 6: Changes to Delivery Options are reflected in the nav panel cart. 7: Two new payment modules have been added (By Post and On Delivery). 8: Cleared comments actually clear. (OSC only edits and does not clear). VIEW ORDER (account_history_info.php): 1: Summary cell listing all systems, any delivery options, total cost and overall status. 2: Each system's overview is listed. 3: Invoice cell features a proper Sub-Total, Delivery and V.A.T. section (all subtotals are fixed). 4: Full (fancier than "Fancier Invoice") printable invoice. 5: Colour coded interactive status cell showing all steps of the build process. 6: Fully interactive message/history section for questions, answers, comments, private notes and responses. EMAILS: 1: Combined plain text and embedded mime html emails. 2: Text versions are properly formatted. 3: HTML version includes images. 4: Emails are interactive with dynamically generated info and links. Cheers Carbon Quote Link to comment Share on other sites More sharing options...
shkamat Posted November 28, 2007 Share Posted November 28, 2007 i was told to move over to a new thread so i have done that, anyone who needs help with ccc9 please post here. I tried to install this CCC into my OSC but it seems its not working. build.php gives me nothing. left menu shows me the products I created in CCC and in main catalog as well. but when i select the product and add to shopping cart, it says "shopping cart is empty" Please help. Quote Link to comment Share on other sites More sharing options...
shkamat Posted November 28, 2007 Share Posted November 28, 2007 Hi Guys, Are any of you interested in testing the Online Order System (inc' CCC) of my site? Here are some unique features you will be able to see and test... GENERAL: 1: Proper breadcrumb navigation that never scrolls off the page. 2: Page specific Help button in nav panel. 3: Cart info in nav panel. 4: Page specific icons for Sitemap, Bookmark, Print, Email and Feedback. INDEX (Index.php): 1: Welcome panel with customer specific information. 2: Three easy choices... Select, Customise or Design a system. SELECT (select.php): 1: Summary cell featuring preview slideshow and easy pick list of available systems, instructions, Which One? and best sellers. 2: Compare cell with undockable remote for navigation. 3: Individual system cells with links to reviews, details, overview and Add to Order. 4: Details page that strings all the included component cells together so you can see exactly what is included. CUSTOMISE (customise.php) (replaces ccc.php): 1: Summary cell featuring preview slideshow and easy pick list of available systems, instructions, Which One? and best sellers. 2: Compare cell with undockable remote for navigation. 3: Individual system cells with link to customise (build.php). 4: Tip panel to outline rules used to customise system (eg. case etc will be black, only motherboards that support multi-core processors etc). CONFIGURE (build.php): 1: Each system can be linked to from ANY part of the site so no need to go through ccc.php. 2: Dynamic price in breadcrumb. 3: Reset configuration to default components. 4: Clickable component list that links to each component on the page. 5: "Please Select" is removed from dropdown menus if component is required. 6: "Please Select" is replaced with "No Floppy Drive Required" etc. 7: Select item is highlighted in dropdown option list. 8: Components are grouped in dropdown menu options. 9: Selecting an AMD or Intel processor updates the motherboard options to only show compatible boards. 10: The number of installed Hard Drives updates available RAID options. 11: Required/Optional button opens a window with an overview of requirements. 12: System specific recommendations for each component. 13: Custom More Info window. 14: Add to Order completely skips the unnecessary Custom Checkout page. 15: You can now use the back button without losing data. MY ORDER (shopping_cart.php): 1: Dynamic Total Order cost displayed in breadcrumb. 2: Delivery option costs displayed and auto-updates if quantities are changed. 3: Place Order button appears in nav panel once a system is added to the order. 4: Single Delete button for each system instead of a checkbox and Update button. 5: Custom systems can be edited or an overview displayed for pre-configured systems. PLACE ORDER (place_order.php): 1: A total single page replacement for the usual 4 step checkout process. 2: The conventional 4 step checkout is available from the Help page. 3: Guest purchasers are diverted to create an account before returning. 4: Checkboxes replaced with styled buttons for selecting delivery address etc. 5: Double-click prevention on the Confirm Order button. 6: Changes to Delivery Options are reflected in the nav panel cart. 7: Two new payment modules have been added (By Post and On Delivery). 8: Cleared comments actually clear. (OSC only edits and does not clear). VIEW ORDER (account_history_info.php): 1: Summary cell listing all systems, any delivery options, total cost and overall status. 2: Each system's overview is listed. 3: Invoice cell features a proper Sub-Total, Delivery and V.A.T. section (all subtotals are fixed). 4: Full (fancier than "Fancier Invoice") printable invoice. 5: Colour coded interactive status cell showing all steps of the build process. 6: Fully interactive message/history section for questions, answers, comments, private notes and responses. EMAILS: 1: Combined plain text and embedded mime html emails. 2: Text versions are properly formatted. 3: HTML version includes images. 4: Emails are interactive with dynamically generated info and links. Cheers Carbon Yes I would like to see CCC working on live site. Quote Link to comment Share on other sites More sharing options...
Carbon Posted November 28, 2007 Share Posted November 28, 2007 Hi shkamat, I can't offer you a live site as I'm still developing but if you want to check out my "Work in Progress" site then click here. I'd love to here some feedback so if you can find the time after having a look around (place a test order if you're feeling adventurous, it's only a test) that would be fantastic. Cheers Carbon Quote Link to comment Share on other sites More sharing options...
shkamat Posted December 3, 2007 Share Posted December 3, 2007 Hi I reviewed the site. Looks great. Please review www.onlinebuypc.com/catalog and let me know your feedback. I am not a programmer but have tweaked in a bit of CCC Quote Link to comment Share on other sites More sharing options...
alishamim Posted December 4, 2007 Share Posted December 4, 2007 Anyone know if its possible to make more than on item default for a single category? Or making it so that certain items cannot be unchecked? For example if I were building a laptop and the laptop comes standard with a camera and an extra battery. Say both items come at no extra charge but I still wanna show the customer that im offering both these things free. So they are in the actual configurator but I wanna make it so the customer cannot uncheck them, almost like showing the actual item but greying it out and making it unclickable. Is that possible? Thanks Quote Link to comment Share on other sites More sharing options...
sgtcaboose Posted December 12, 2007 Share Posted December 12, 2007 From the admin panel, when I click Custom Computer http://yoursite.com/catalog/admin/ccc_conf...7d3e348b0b4fb99 it redirects to: http://yoursite.com/catalog/admin/login.ph...7d3e348b0b4fb99 I have tried for an hour to get this working and havent come up with a solution yet. Quote Link to comment Share on other sites More sharing options...
peeryr Posted December 16, 2007 Share Posted December 16, 2007 Hey guys, Is there an easier way to create / import the tables needed for the CCC 9.3.1?? I am pulling my hair out trying to get this thing to work. I can't believe that through making this CCC that there isn't a default method of just having the files that are needed zipped and scripted by some sort of a batch file to be implemented to the correct directory structures of the (yourwebsite.com) and then some sort of way of getting the correct default tables to be imported into php myadmin. Is there an easier way?? I mean, I haven't been lazy with this, and i have done everything so far that the README.HTML says by inserting / replacing the text that was neccessary inside of the files. However, the bump comes by creating the tables. Keep in mind, I am new at this and I am not an expert on creating tables and understanding the table creation completely. Although, I have attempted it, but get an error when trying to do the first one. I am pretty sure that I have the ccc.cat table created okay, but when inserting the values I get an error: Error SQL query: INSERT INTO `peeryr_osc1`.`ccc_cat` ( `cat_id` , `status` , `cat_req` , `sort_order` , `sys_id` , `fsb_id` ) VALUES ( '4', '1', '0', '1', '5', '5' ), ( '4', '1', '0', '1', '5', '6' ) MySQL said: #1062 - Duplicate entry '4' for key 1 What the heck does this mean, and how can i enter what the README.HTML tells me when no matter what I insert for the first value of cat_id it tells me that I have a duplicate entry. This is crazy!!! I mean come on guys, there should be some kind of default tables that someone has already created for this CCC and put it up on the forum. I mean if there is a reason to create these tables from scratch, then let me know and i will try to attempt to keep trying with this, but, if there is something out there that someone has already created the default tables that work, PLEASE LET ME KNOW WHERE TO GET THEM. I will really appreciate it!!!! Any help here would be gratefully appreciated!!! Quote Link to comment Share on other sites More sharing options...
Carbon Posted December 16, 2007 Share Posted December 16, 2007 This is crazy!!! I mean come on guys, there should be some kind of default tables that someone has already created for this CCC and put it up on the forum. I mean if there is a reason to create these tables from scratch, then let me know and i will try to attempt to keep trying with this, but, if there is something out there that someone has already created the default tables that work, PLEASE LET ME KNOW WHERE TO GET THEM. I will really appreciate it!!!! Any help here would be gratefully appreciated!!! Sounds to me like you're making hard work for yourself, so just to check (as I did this a long time ago) I re-downloaded the CCC contribution and in the "READ (directions).htm" file the last entry is called "Database Entries". All you have to do is copy the text and then paste it into the QUERY window of MySQL for the OSCommerse database and it will automatically add then necessary tables. Hope this helps Carbon Quote Link to comment Share on other sites More sharing options...
peeryr Posted December 16, 2007 Share Posted December 16, 2007 Sounds to me like you're making hard work for yourself, so just to check (as I did this a long time ago) I re-downloaded the CCC contribution and in the "READ (directions).htm" file the last entry is called "Database Entries". All you have to do is copy the text and then paste it into the QUERY window of MySQL for the OSCommerse database and it will automatically add then necessary tables. Hope this helps Carbon Thanks alot man... You will not believe this, but soon after I typed this reply I figured it out and wiped my forehead in relief with a sigh. I copied all of the text inside of the database section of the README, and then i saved it in a normal text file (ie. notepad). Then i just imported the file through SQL and bingo, all of the tables were created. I appreciate your quick response though, man was that killing me!!! I think they should put a little bit better instructions inside of these contributions if they want them to be effective. I mean a simple note would have been appreciated!!! Well if i am the only person that didn't understand this, then I apologize for venting, but my personal opinion is that most of these contributions are awesome, but not everyone that is on this forum are experts!! THEY OUTTA ADD SOME SHORT DETAILED NOTES!! if you know what i mean. Oh well, I really appreciate the quick response though. By the way CARBON, your website looks pretty good man!! :thumbsup: Quote Link to comment Share on other sites More sharing options...
DreamK Posted December 24, 2007 Share Posted December 24, 2007 (edited) Hi Everybody, I would like to know if someone managed to hack ccc with "ultimate SEO" ? At the present time I have lost 1 month with the following trouble: 1- SEO with rewrite URL : "ON" - build.php & custom_checkout.php : ok - shopping_cart.php : 0€ is shown with none configuration 2- SEO with rewrite URL : "OFF" - build.php & custom_checkout.php : ok - shopping_cart.php : ok Someone would like to help me or work with me about this trouble ? Merry Xmas from France :P Edited December 24, 2007 by DreamK Quote Link to comment Share on other sites More sharing options...
Carbon Posted December 24, 2007 Share Posted December 24, 2007 Hi Everybody, I would like to know if someone managed to hack ccc with "ultimate SEO" ? At the present time I have lost 1 month with the following trouble: 1- SEO with rewrite URL : "ON" - build.php & custom_checkout.php : ok - shopping_cart.php : 0€ is shown with none configuration 2- SEO with rewrite URL : "OFF" - build.php & custom_checkout.php : ok - shopping_cart.php : ok Someone would like to help me or work with me about this trouble ? Merry Xmas from France :P Merry Christmas from the UK ;) DreamK, I don't use "ultimate SEO" but what I would do is turn it on then have a look at the outputted shopping_cart.php html (ie have a look at the source in your browser) and compare it with the output when SEO is turned off. This should give you a clue as to why it's failing, then once you figure out what it is you can hard code the meta tags etc and turn SEO off. Hope this helps Carbon Quote Link to comment Share on other sites More sharing options...
Grinse Posted December 24, 2007 Share Posted December 24, 2007 It's alive. people are writing again. And I thought already the thread was dead. :) Ok I'm also developing CCC to fit for my needs. But at the moment I'm setting up the new shop for different user groups so I'm also customizing SPPC. What I'm still working on: - Accessing the Images so I can use Lightbox. - Accessing the Descriptions so I can disable the "Details"-Button and so I can place the product details under the dropdown menu. - Fixing bugs: - When STS is enabled I can't show the product details because when you click on "Details" you get a complete new shop Window. - When STS is enabled the Customizing summary on top is not displayed until you change the first entry. - Disableing ccc.php so I can directly access build.php (at the moment I'm not getting images and details). - When I chose one entry another is also selected (for example a mainboard that has a graphic card onboard the graphic card entry is turned into "onboard card"). - Make CCC compatible with More Pics (or another contribution that adds multiple images for a product). - Replace the "click image to enlarge" box with an imagebox - Nice would also be to have checkboxes or radioboxes What I've done until now - new style for build.php. - a default image (depending on the selectd "no image aviable" image from OTF-Auto Thumbnailer). So if someone already fixed some hints please tell me. Quote Link to comment Share on other sites More sharing options...
peeryr Posted December 27, 2007 Share Posted December 27, 2007 It's alive. people are writing again. And I thought already the thread was dead. :) Ok I'm also developing CCC to fit for my needs. But at the moment I'm setting up the new shop for different user groups so I'm also customizing SPPC. What I'm still working on: - Accessing the Images so I can use Lightbox. - Accessing the Descriptions so I can disable the "Details"-Button and so I can place the product details under the dropdown menu. - Fixing bugs: - When STS is enabled I can't show the product details because when you click on "Details" you get a complete new shop Window. - When STS is enabled the Customizing summary on top is not displayed until you change the first entry. - Disableing ccc.php so I can directly access build.php (at the moment I'm not getting images and details). - When I chose one entry another is also selected (for example a mainboard that has a graphic card onboard the graphic card entry is turned into "onboard card"). - Make CCC compatible with More Pics (or another contribution that adds multiple images for a product). - Replace the "click image to enlarge" box with an imagebox - Nice would also be to have checkboxes or radioboxes What I've done until now - new style for build.php. - a default image (depending on the selectd "no image aviable" image from OTF-Auto Thumbnailer). So if someone already fixed some hints please tell me. Hey Grinse, These add-on things sound great and awesome. I was wondering if you could shed some light on these additions with the smaller guys like myself. I have struggled to just get the normal CCC to work on my site by itself. Do you have or know if there has been a default Oscommerce install site zipped up with these features already embeded into the neccessary files to save guys like myself to loose their mind trying to weed through the numerous amount of problems??? I just thought i would ask. I am not lazy or anything, because I have spent countless hours trying to get everything to work, but, I would just like to see / learn from what you guys have already finished. It seems as if everytime something gets added on within the CCC for me, or something within the payment modules, something always breaks. I just wanted to know if you have a default Oscommerce install with all of your CCC additions?? I already have the SQL created for the CCC. If there needs to be more tables or a special database added let me know. Just curious on this. Thanks, Robert Quote Link to comment Share on other sites More sharing options...
Carbon Posted December 28, 2007 Share Posted December 28, 2007 Hey Grinse, These add-on things sound great and awesome. I was wondering if you could shed some light on these additions with the smaller guys like myself. I have struggled to just get the normal CCC to work on my site by itself. Do you have or know if there has been a default Oscommerce install site zipped up with these features already embeded into the neccessary files to save guys like myself to loose their mind trying to weed through the numerous amount of problems??? I just thought i would ask. I am not lazy or anything, because I have spent countless hours trying to get everything to work, but, I would just like to see / learn from what you guys have already finished. It seems as if everytime something gets added on within the CCC for me, or something within the payment modules, something always breaks. I just wanted to know if you have a default Oscommerce install with all of your CCC additions?? I already have the SQL created for the CCC. If there needs to be more tables or a special database added let me know. Just curious on this. Thanks, Robert Hi Robert, The commercial version of OSC and CCC (installed together) is currently available for a promotion price of $250... http://www.zerensoft.com/custom_computer_builder.web Hope this helps Carbon Quote Link to comment Share on other sites More sharing options...
Grinse Posted December 29, 2007 Share Posted December 29, 2007 Hi guys, I hope you had a good christmas. qpeeryr: I know your problems. In the beginning I had the same (I mentioned before that I have some probs with sts combined with ccc - it could be a failure of mine). At the moment I have no liveshop (I want to finish it before I go online). I also can't offer you now my modifications because my first attempt is gone and now I'm trying again but I made myself a documentation on what and how I changed from the default osCommerce installation. I think I changed a lot, for example I added: STS, Lightbox, On the fly Auto thumbnailer, DHL-delivery module, a modification of must agree to terms (now you have to agree to terms when you check out shipping, agree to privacy when you create an account, you can download a on the fly created pdf of the conditions of use and of the privacy statement, you have automaticaly the same text in these files (and in the textarea showen where you must agree) than in the normal privacy.php and conditions.php) (I will upload this contrib within the next weeks), Invoice, European banktransfer, column sort arrows, Calculation of cash on delivery fees, easy populate (still modifying), tinymce, a modification of tax info (now I can choose between showing tax and shipping inormation behind every price or just a link behind the price that directs to the footer where the information is placed) (I'll upload it also), SPPC (still modifying), and lots of small corrections, template additions ... @carbon: Hm, 166 Euro.... but thats quite a few bugs. And as far as I could see there are still some wishes left: the parts are not compareing each other (point 6), you still have to press a button (ok now its a text link) to see the details, I'm not sure it the compatibility issures with sts, morepics and lightbox are fixed. The same ccc I've seen on another ccc-seller homepage. New - You can mark some components as not compatible with others Really? I couldn't find it. But its one stp in my direction. You have the source? ;) Quote Link to comment Share on other sites More sharing options...
Carbon Posted December 30, 2007 Share Posted December 30, 2007 @carbon:Hm, 166 Euro.... but thats quite a few bugs. And as far as I could see there are still some wishes left: the parts are not compareing each other (point 6), you still have to press a button (ok now its a text link) to see the details, I'm not sure it the compatibility issures with sts, morepics and lightbox are fixed. The same ccc I've seen on another ccc-seller homepage. Really? I couldn't find it. But its one stp in my direction. You have the source? ;) Hi Grinse, I customised my site by installing a default OSC and getting it working, then adding CCC and checking that everything worked as intended. Only then did I begin to modify files. Unfortunately, my site is sooooo bespoke that it would be impossible to wrap it all up and offer it as a mod as I've almost changed every single file! Carbon Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.