Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Option Type Feature v1.6 (for osc 2.2 MS2)


Guest

Recommended Posts

I have some attributes set up (radio button, checkbox & 2 text fields) you can see how it looks here

 

This is how my shopping cart looks:

textbox.gif

 

How can I get the name of the text field to show like this:

 

Text Color Apple Green

Frame Text: wwweew

Gift Wrap & Card $10.00

Custom card text: dddfffdd

 

Frame Text & Custom card text are the titles of the text boxes

Edited by spencermjax
Link to comment
Share on other sites

  • Replies 799
  • Created
  • Last Reply

Top Posters In This Topic

I had this problem awhile ago and have fixed it. I am running a heavily modified version of osCommerce, so I will post my entire checkout_confirmation page.

Anyone found a solution for TEXT options that are not showing up in DB or order emails?

I do not have Paypal installed, so solution on post #171 is not doing it for me.

 

I noticed the problem occurs when somone creates an account before they check out.

Any help would be appreciated, and I am even willing to pay someone to fix this.

Thank you,

 

fx

 

<table border="0" width="100%" cellspacing="0" cellpadding="<?php echo CELLPADDING_SUB; ?>">
<?php
// BOF: Lango Added for template MOD
if (SHOW_HEADING_TITLE_ORIGINAL == 'yes') {
$header_text = ' '
//EOF: Lango Added for template MOD
?>
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
		<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_confirmation.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
	  </tr>
	</table></td>
  </tr>
<?php
// BOF: Lango Added for template MOD
}else{
$header_text = HEADING_TITLE;
}
// EOF: Lango Added for template MOD
?>
<?php
// BOF: Lango Added for template MOD
if (MAIN_TABLE_BORDER == 'yes'){
table_image_border_top(false, false, $header_text);
}
// EOF: Lango Added for template MOD
?>
  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
<?php
 if ($sendto != false) {
?>
		<td width="30%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
		  <tr>
			<td class="main"><?php echo '<b>' . HEADING_DELIVERY_ADDRESS . '</b> <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL') . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>
		  </tr>
		  <tr>
			<td class="main"><?php echo tep_address_format($order->delivery['format_id'], $order->delivery, 1, ' ', '<br>'); ?></td>
		  </tr>
<?php
if ($order->info['shipping_method']) {
?>
		  <tr>
			<td class="main"><?php echo '<b>' . HEADING_SHIPPING_METHOD . '</b> <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>
		  </tr>
		  <tr>
			<td class="main"><?php echo $order->info['shipping_method']; ?></td>
		  </tr>
<?php
}
?>
		</table></td>
<?php
 }
?>
		<td width="<?php echo (($sendto != false) ? '70%' : '100%'); ?>" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
		  <tr>
			<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
<?php
 if (sizeof($order->info['tax_groups']) > 1) {
?>
			  <tr>
				<td class="main" colspan="2"><?php echo '<b>' . HEADING_PRODUCTS . '</b> <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>
				<td class="smallText" align="right"><b><?php echo HEADING_TAX; ?></b></td>
				<td class="smallText" align="right"><b><?php echo HEADING_TOTAL; ?></b></td>
			  </tr>
<?php
 } else {
?>
			  <tr>
				<td class="main" colspan="3"><?php echo '<b>' . HEADING_PRODUCTS . '</b> <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>
			  </tr>
<?php
 }

 for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
echo '		  <tr>' . "\n" .
	 '			<td class="main" align="right" valign="top" width="30">' . $order->products[$i]['qty'] . ' x</td>' . "\n" .
	 '			<td class="main" valign="top">' . $order->products[$i]['name'];

if (STOCK_CHECK == 'true') {
  echo tep_check_stock($order->products[$i]['id'], $order->products[$i]['qty']);
}

if ( (isset($order->products[$i]['attributes'])) && (sizeof($order->products[$i]['attributes']) > 0) ) {
sort($order->products[$i]['attributes']);
  for ($j=0, $n2=sizeof($order->products[$i]['attributes']); $j<$n2; $j++) {
/*

if (strlen($order->products[$i]['attributes'][$j]['value']) > 30) 
{
  $value_cut = substr($order->products[$i]['attributes'][$j]['value'], 0, 30) . ' [...]';
} else {
  $value_cut = $order->products[$i]['attributes'][$j]['value'];
}
*/
$value_cut = $order->products[$i]['attributes'][$j]['value']; 
echo '<br><nobr><small> <i> - ' . $order->products[$i]['attributes'][$j]['option'] . ':' . tep_decode_specialchars($value_cut) . '</i></small></nobr>';
  }
}

echo '</td>' . "\n";

if (sizeof($order->info['tax_groups']) > 1) echo '			<td class="main" valign="top" align="right">' . tep_display_tax_value($order->products[$i]['tax']) . '%</td>' . "\n";

echo '			<td class="main" align="right" valign="top">' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . '</td>' . "\n" .
	 '		  </tr>' . "\n";
 }

 if (MODULE_ORDER_TOTAL_INSTALLED) {
$order_total_modules->process();
$output_string = $order_total_modules->output();
$output_discount = $order_total_modules->output_discount();
$output = explode("---", $output_string);

			 echo $output[3];
 }
echo '			  <tr>' . "\n" .'<td class="main" align="right" valign="top" width="30">' . ' </td>' . "\n" .
							'			   <td class="main" align="right" valign="top"><b>Shipping Total: </b></td>' . "\n" .
							'				<td align="right" class="main"><b>' . $currencies->format($order->info['shipping_cost'], true, $order->info['currency'], $order->info['currency_value']) . '</b></td>' . "\n" .
							'			  </tr>';
echo $output_discount;
?>

			</table></td>

		  </tr>
		</table></td>
	  </tr>
	</table></td>
  </tr>
  <tr>
	<td class="main"><b><?php echo HEADING_BILLING_INFORMATION; ?></b></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
		<td width="30%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
		  <tr>
			<td class="main"><?php echo '<b>' . HEADING_BILLING_ADDRESS . '</b> <a href="' . tep_href_link(FILENAME_CHECKOUT_PAYMENT_ADDRESS, '', 'SSL') . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>
		  </tr>
		  <tr>
			<td class="main"><?php echo tep_address_format($order->billing['format_id'], $order->billing, 1, ' ', '<br>'); ?></td>
		  </tr>
		  <tr>
			<td class="main"><?php echo '<b>' . HEADING_PAYMENT_METHOD . '</b> <a href="' . tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>
		  </tr>
		  <tr>
			<td class="main"><?php echo $order->info['payment_method']; ?></td>
		  </tr>
		</table></td>
		<td width="70%" valign="top" align="right"><table border="0" cellspacing="0" cellpadding="2">
<?php
 if (MODULE_ORDER_TOTAL_INSTALLED) {
/*
$order_total_modules->process();
$output_string = $order_total_modules->output();
$output = explode("---", $output_string);

//echo $output[1];
//echo $output[4];

$sum = $output[0] + $output[2];



echo '			  <tr>' . "\n" .
							'				<td align="right" class="main">Sub-total: </td>' . "\n" .
							'				<td align="right" class="main">$' . number_format($sum, 2) . '</td>' . "\n" .
							'			  </tr>';

*/
//echo $output[5];
//echo $output[6];


echo $output_string;

 }
?>
		</table></td>
	  </tr>
	</table></td>
  </tr>

<?php
// BOF: Lango modified for print order mod
 if (is_array($payment_modules->modules)) {
if ($confirmation = $payment_modules->confirmation()) {
  $payment_info = $confirmation['title'];
  if (!tep_session_is_registered('payment_info')) tep_session_register('payment_info');
// EOF: Lango modified for print order mod
?>
  <tr>
	<td class="main"><b><?php echo HEADING_PAYMENT_INFORMATION; ?></b></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
		<td><table border="0" cellspacing="0" cellpadding="2">
		  <tr>
			<td class="main" colspan="4"><?php echo $confirmation['title']; ?></td>
		  </tr>
<?php
  for ($i=0, $n=sizeof($confirmation['fields']); $i<$n; $i++) {
?>
		  <tr>
			<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
			<td class="main"><?php echo $confirmation['fields'][$i]['title']; ?></td>
			<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
			<td class="main"><?php echo $confirmation['fields'][$i]['field']; ?></td>
		  </tr>
<?php
  }
?>
		</table></td>
	  </tr>
	</table></td>
  </tr>
<?php
}
 }
?>
<?php
 if (tep_not_null($order->info['comments'])) {
?>
  <tr>
	<td class="main"><?php echo '<b>' . HEADING_ORDER_COMMENTS . '</b> <a href="' . tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
		<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
		  <tr>
			<td class="main"><?php echo nl2br(tep_output_string_protected($order->info['comments'])) . tep_draw_hidden_field('comments', $order->info['comments']); ?></td>
		  </tr>
		</table></td>
	  </tr>
	</table></td>
  </tr>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>
<?php
 }
?>
<?php
// BOF: Lango Added for template MOD
if (MAIN_TABLE_BORDER == 'yes'){
table_image_border_bottom();
}
// EOF: Lango Added for template MOD
?>

  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
		<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
		  <tr>
			<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
<?php
 if (isset($$payment->form_action_url)) {
$form_action_url = $$payment->form_action_url;
 } else {
$form_action_url = tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL');
 }

 echo tep_draw_form('checkout_confirmation', $form_action_url, 'post');

 if (is_array($payment_modules->modules)) {
echo $payment_modules->process_button();
 }
?>

			<td class="main"><b><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE . '</b><br>' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></td>
			<td class="main" align="right"><?php  echo tep_template_image_submit('button_confirm_order.gif', IMAGE_BUTTON_CONFIRM_ORDER) . '</form>' . "\n";?></td>
			<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>


		  </tr>
		</table></td>
	  </tr>
	</table></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td width="25%"><table border="0" width="100%" cellspacing="0" cellpadding="0">
		  <tr>
			<td width="50%" align="right"><?php echo tep_draw_separator('pixel_silver.gif', '1', '5'); ?></td>
			<td width="50%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td>
		  </tr>
		</table></td>
		<td width="25%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td>
		<td width="25%"><table border="0" width="100%" cellspacing="0" cellpadding="0">
		  <tr>
			<td width="50%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td>
			<td><?php echo tep_image(DIR_WS_IMAGES . 'checkout_bullet.gif'); ?></td>
			<td width="50%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td>
		  </tr>
		</table></td>
		<td width="25%"><table border="0" width="100%" cellspacing="0" cellpadding="0">
		  <tr>
			<td width="50%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td>
			<td width="50%"><?php echo tep_draw_separator('pixel_silver.gif', '1', '5'); ?></td>
		  </tr>
		</table></td>
	  </tr>
	  <tr>
		<td align="center" width="25%" class="checkoutBarFrom"><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '" class="checkoutBarFrom">' . CHECKOUT_BAR_DELIVERY . '</a>'; ?></td>
		<td align="center" width="25%" class="checkoutBarFrom"><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '" class="checkoutBarFrom">' . CHECKOUT_BAR_PAYMENT . '</a>'; ?></td>
		<td align="center" width="25%" class="checkoutBarCurrent"><?php echo CHECKOUT_BAR_CONFIRMATION; ?></td>
		<td align="center" width="25%" class="checkoutBarTo"><?php echo CHECKOUT_BAR_FINISHED; ?></td>
	  </tr>
	</table></td>
  </tr>
</table>

Link to comment
Share on other sites

Would you kindly elaborate for the benefit of others (including myself), exactly how you achieved that setting as others may want to replicatethe look.

 

Thanks

 

This would be very difficult to do because your product text options are one string and can vary by product. You might be able to construct some javascript to make this happen, but here is the call to the options:

<td class="main" colspan="2" align="left"><b><?php echo TEXT_PRODUCT_OPTIONS; ?></b></td>

 

It is pulling from this query:

	$products_attributes_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "'");

You could create a table for the options to be displayed in and set a colum indicator for each attribute, but that would be a significant level of effort to code.

Link to comment
Share on other sites

Has anyone seem a problem with this contribution with it creating duplicate Option Values?

 

I added the three option values in via the database script insert_text_option.sql

I created a product option for Custom Name with a type of text

Now every time I add another product attribute of Custom Name to a product it adds another Option Value with id=0 Option Name=Custom Name Option Value=TEXT

 

It all seems to work ok, but if its going to create 3 option values for every product attribute with a type of text then its going to get pretty polluted

 

Is this how its meant to work?

Link to comment
Share on other sites

I'm using Option Type in tandem with X-sell and I've just noticed a small problem..................

 

Everything is working swimmingly untill something is added to the cart which has no customisable options. Then on my cart where the option details are displayed I have

 

- Array

 

displayed when it should be blank.

 

Any ideas - anybody else experienced this?

Link to comment
Share on other sites

From the README:

The comment is limited to 32 characters. (This limit can easily be changed by adjusting the size of the product_options_comment field. Changing the size of this field does not effect other functionality.)

 

Can someone please explain how to do this? I am new to SQL and PHP. I read through most of this thread and found several threads about changing the length of this field, but I could find no actual instructions on how to do so. The word "easily" in the quote above has been mocking me for several hours now.

 

Being stumped on something this simple for so many hours is discouraging. Any help is greatly appreciated.

Link to comment
Share on other sites

i am having trouble instaling Option Type Feature v1.71, i have followed the html readme to the letter, but when i test it, i get an error

Parse error: parse error, unexpected ';', expecting T_FUNCTION in C:\wamp\www\catalog\includes\classes\shopping_cart.php on line 446

i get this error when i just access the site .../catalog/ i reread the instructions and followed it again , but still the same error. the file that is reporting the error, catalog\includes\classes\shopping_cart.php, is a file that i havent changed before with other contributions, so i am a bit buffled. i am using 2.2M2 051113 ( the latest download ) with a few contributions added (STS 4.1, Description in Product Listing Hack MS2 v.2.4, Easy Populater 2.79b-MS2, HeaderTags_V_2.5.9, jcssmenu,osC-Cache_v1.1,Remove Product From Cart Button, pca_prod_attrib_1.00) <<it seems a lot when i list them all...

one thing i noticed when i merged the code from the hacked shoping_cart.php to my shop, is that the code on the hacked is different(older?) in other areas that were not modified - i guess the files i have aer up to date- would that pose a problem? could that have anything to do with this...?

i pasted the entire code for my catalog/includes/classes/shoping_cart.php here at pastebin

it be really great if som one had this problm and could help out,

thanks

Edited by zaxxon

currently using OSC2.2MS2 051113 with the following contributions:

 

AJAX Attributemanager 2.1 - All_products 4.4 - Banner manager 1.5b - banner hack picture in manager * description in product listing hack ms2 v2.4 * drop shadow boxes v.1.1 * Easy populater 2.76d-ms2 by surfalot * FCKEditor * header tag controller v2.5.9 * jcssmenu * LoginBox 5.6 * option type feature v1.71 * OSC-Cach-v1.1 * popup_imagecleaned_stilized_2 * Remove from cart button hack * scrolling bestsellers * Article manager1.4 * Links Manager v1.14. * proffessional invoice&packingslip 6.1 * Ultimate SEO URLs

Personaly i think all these features NEED to be in the main core as they are quite basic features that are missing. but then again what do i know?

Link to comment
Share on other sites

I figured out how to change the field length through PhPMyAdmin. Once I found the field I wanted to change, I only had to select it and hit the edit button (looks like a pencil).

 

Such a simple thing, I would have thought someone would have pointed me in the right direction. I suppose I should have found a forum for newbie questions.

Link to comment
Share on other sites

Help, I installed this today.. I think i followed along and did everything.

 

I just can't seems to get it to work.

 

I to to Product Options.. I define Name as option type Text

TEXT is listed as Option Value (no option name) ID 0. in Options Values.

 

Then I go to Product Attributes, select the product, Select Name, Select TEXT and hit insert.

 

When I go to see the product on the site.. Name: is listed but there is a drop down and all that is in it is TEXT.. rahter then being a text box.

Link to comment
Share on other sites

hi, i am building a store and am trying to merge option type feature option 1.71 with oscommerce 2.2ms2 051113. i am geting the same problem as allrightpet did, i was wondering if any one else had this problem ? i am not sure how to merge catalog/includes/functions/general.php with my own.. can any one please update this contrib to work with the latest patch ?

als, once i do get installed, i am not interested in having a text option(i also see loads of people are reporting errors with it) is there a simple way to remove it ?

many thanks in advance, this is doing my head in....

Edited by zaxxon

currently using OSC2.2MS2 051113 with the following contributions:

 

AJAX Attributemanager 2.1 - All_products 4.4 - Banner manager 1.5b - banner hack picture in manager * description in product listing hack ms2 v2.4 * drop shadow boxes v.1.1 * Easy populater 2.76d-ms2 by surfalot * FCKEditor * header tag controller v2.5.9 * jcssmenu * LoginBox 5.6 * option type feature v1.71 * OSC-Cach-v1.1 * popup_imagecleaned_stilized_2 * Remove from cart button hack * scrolling bestsellers * Article manager1.4 * Links Manager v1.14. * proffessional invoice&packingslip 6.1 * Ultimate SEO URLs

Personaly i think all these features NEED to be in the main core as they are quite basic features that are missing. but then again what do i know?

Link to comment
Share on other sites

  • 2 weeks later...
Help, I installed this today.. I think i followed along and did everything.

 

I just can't seems to get it to work.

 

I to to Product Options.. I define Name as option type Text

TEXT is listed as Option Value (no option name) ID 0. in Options Values.

 

Then I go to Product Attributes, select the product, Select Name, Select TEXT and hit insert.

 

When I go to see the product on the site.. Name: is listed but there is a drop down and all that is in it is TEXT.. rahter then being a text box.

 

I am having the same exact problem - no text box but rather a drop down select with the word TEXT in it.

 

What happened to the support for this contrib?

Link to comment
Share on other sites

Did you guys read this posting? Doesnt his advice work?

 

(gscreations @ Mar 20 2006, 07:57 AM)

 

have searched all over for an answer to this and still not found it:

 

what should this be set too ?

define('PRODUCTS_OPTIONS_VALUE_TEXT_ID', 0);

 

if it is linked to db, what table should i be looking in ?

 

if it is linked to the db will it still work if a new attribute is added later on ?

 

The problem i have is that whatever is typed into a textbox or text input field is not being added to db or order

 

 

 

The answers to your question is in this forum. With respect to your "define . . ." question, see post #24 or #57 (for a more detailed explanation). As far as showing your text in your orders, make sure you have made the modifications explained on post #171 (page 9). Now your text may still not work 100%, but that may be due to other modules you may have installed (i.e. OSC PayPal IPN). These modification, I hope, will at least get you started. Chandra's module is an awesome addition to OSC, don't give up.

 

Good luck.

 

ski

Edited by Wetpants
Link to comment
Share on other sites

What would someone who can install this charge me to install it on a fresh install of osc that only has the basic contrib currently installed and nothing else?

 

[email protected]

 

i was just quoted $45. was really hoping that some one will help here in the forums but it seems like this contrib is not supported by any one who is running the osc22ms2 051113 .

when opening this contribution the text that needs replacing according to this contrib readme - is different than that that comes with the latest version of OSC.

i f i need to pay $45 USd for this contrib and no doubt more contribs later on - as it would only get more complex the more contribs i will install.i might as well fork out $125 on cs cart which is fully functional with many more features than OSC which means i dont have to install contributions to make it a full product..... AND its completely xhtml compliant so its all cleaner code with much more commented code and CSS to ease tweaking.

its a real shame though. this might be off topic for this contribution but it seems like development on OSC has really slowed down. many contributions like this one, like easy populate, like header tag controller, like better control over column sizes width and banners, like paypal and other basic feature that are a real MUST to start off with are left as contributions that do not always work with one another and as much as there are reall good people out there willing to help, its not always easy with the cart getting more and more complex with different addditions and contributions...

 

donm1021, maybe we can share the cost of hiring a coder to bring this contribution to osc22ms2 051113 standards.. ?

currently using OSC2.2MS2 051113 with the following contributions:

 

AJAX Attributemanager 2.1 - All_products 4.4 - Banner manager 1.5b - banner hack picture in manager * description in product listing hack ms2 v2.4 * drop shadow boxes v.1.1 * Easy populater 2.76d-ms2 by surfalot * FCKEditor * header tag controller v2.5.9 * jcssmenu * LoginBox 5.6 * option type feature v1.71 * OSC-Cach-v1.1 * popup_imagecleaned_stilized_2 * Remove from cart button hack * scrolling bestsellers * Article manager1.4 * Links Manager v1.14. * proffessional invoice&packingslip 6.1 * Ultimate SEO URLs

Personaly i think all these features NEED to be in the main core as they are quite basic features that are missing. but then again what do i know?

Link to comment
Share on other sites

cscart looks like a pro copied oscommerce and updated it to how it should be. Apart from not being so nice to make money off of others free work, it looks like its worth the money :)

 

there is nothing wrong, in my humble opinion, to make money off of open source software(its free as in freedom not free as in no mney) i wish a pro would help me sort this cart out, with no php knowledge its very hard to incorporate some contribs and make them all work together and thats before designing it to look beautiful inviting and unique... the other point is that it does force you in to learning about it, so i am now starting to learn php, which is no bad thing i guess. :)

Edited by zaxxon

currently using OSC2.2MS2 051113 with the following contributions:

 

AJAX Attributemanager 2.1 - All_products 4.4 - Banner manager 1.5b - banner hack picture in manager * description in product listing hack ms2 v2.4 * drop shadow boxes v.1.1 * Easy populater 2.76d-ms2 by surfalot * FCKEditor * header tag controller v2.5.9 * jcssmenu * LoginBox 5.6 * option type feature v1.71 * OSC-Cach-v1.1 * popup_imagecleaned_stilized_2 * Remove from cart button hack * scrolling bestsellers * Article manager1.4 * Links Manager v1.14. * proffessional invoice&packingslip 6.1 * Ultimate SEO URLs

Personaly i think all these features NEED to be in the main core as they are quite basic features that are missing. but then again what do i know?

Link to comment
Share on other sites

donm1021, maybe we can share the cost of hiring a coder to bring this contribution to osc22ms2 051113 standards.. ?

 

I am willing to do that - however, after looking at cs-cart I am also looking into that option as well. I own my own Internet Solutions company and was looking into what would be the best ecommerce solution for our clients. I really thought that osc had potential - but after running into this little problem and not finding any support at all - I will probably steer clear and will point our clients in a different direction for their ecommerce solutions.

 

Get in touch with me zaxxon and we'll see what we can do.

Link to comment
Share on other sites

donm1021, maybe we can share the cost of hiring a coder to bring this contribution to osc22ms2 051113 standards.. ?

 

Zaxxon - I did find a better option for us for the time being in the form of OscMax 1.7 found at oscdox.com - it already has all of the contributions we need as a complete basic package.

Link to comment
Share on other sites

i have looked in to CREloaded aswell as oscmax, problem with these two is tht support is even slower than osc, i placed a few questions in the forums and never heard back from anyone... so for the time being i'll sticjo to osc, which albit a bit harder to use on account of all the updates needed, still have much more documantation and support on the forum

currently using OSC2.2MS2 051113 with the following contributions:

 

AJAX Attributemanager 2.1 - All_products 4.4 - Banner manager 1.5b - banner hack picture in manager * description in product listing hack ms2 v2.4 * drop shadow boxes v.1.1 * Easy populater 2.76d-ms2 by surfalot * FCKEditor * header tag controller v2.5.9 * jcssmenu * LoginBox 5.6 * option type feature v1.71 * OSC-Cach-v1.1 * popup_imagecleaned_stilized_2 * Remove from cart button hack * scrolling bestsellers * Article manager1.4 * Links Manager v1.14. * proffessional invoice&packingslip 6.1 * Ultimate SEO URLs

Personaly i think all these features NEED to be in the main core as they are quite basic features that are missing. but then again what do i know?

Link to comment
Share on other sites

Zaxxon - I did find a better option for us for the time being in the form of OscMax 1.7 found at oscdox.com - it already has all of the contributions we need as a complete basic package.

 

thanks for the hint.

I've just been looking and it seems that there is a v2.0 out. I cannot seem to compare the two distros to see what mod is in each and which one to choose... the important mod for me is the ability to customise the clients order.

Anyone know if the OptionType Feature 'features' are in v2.0?

Link to comment
Share on other sites

Hello !

 

I have the same problem, can't find what's wrong too.

I have checked everything, file-comparing, database-checks, seems to be a bug somewhere.

Who can help !????

 

Regards,

 

;-) Arthur

 

 

 

I have some attributes set up (radio button, checkbox & 2 text fields) you can see how it looks here

 

This is how my shopping cart looks:

textbox.gif

 

How can I get the name of the text field to show like this:

 

Text Color Apple Green

Frame Text: wwweew

Gift Wrap & Card $10.00

Custom card text: dddfffdd

 

Frame Text & Custom card text are the titles of the text boxes

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...