I have a client ecommerce site that has an issue when trying to make a purchase and going to the "Checkout" page. This is my first post here and I am not experienced in PHP so any help would be greatly appreciated. Thanks!
I'm receiving this error code;
Parse error: syntax error, unexpected T_STRING in /home/content/33/8297333/html/HOMESPLUMBINGSUPPLY/wp-content/themes/kassyopea.1.5/wpsc-shopping_cart_page.php on line 265
Here is the actual lines referenced in the error message. The first line posted is line 265.
<?php if (wpsc_have_morethanone_shipping_quote()) :?>
<?php while (wpsc_have_shipping_methods()) : wpsc_the_shipping_method(); ?>
<?php if (!wpsc_have_shipping_quotes()) { continue; } // Don't display shipping method if it doesn't have at least one quote ?>
<p><?php echo wpsc_shipping_method_name().__('- Choose a Shipping Rate', TEXTDOMAIN); ?></p>
<?php while (wpsc_have_shipping_quotes()) : wpsc_the_shipping_quote(); ?>
<label for='<?php echo wpsc_shipping_quote_html_id(); ?>'><?php echo wpsc_shipping_quote_name(); ?></label>
<label for='<?php echo wpsc_shipping_quote_html_id(); ?>'><?php echo wpsc_shipping_quote_value(); ?></label>
<?php if(wpsc_have_morethanone_shipping_methods_and_quotes()): ?>
<input type='radio' id='<?php echo wpsc_shipping_quote_html_id(); ?>' <?php echo wpsc_shipping_quote_selected_state(); ?> onclick='switchmethod("<?php echo wpsc_shipping_quote_name(); ?>", "<?php echo wpsc_shipping_method_internal_name(); ?>")' value='<?php echo wpsc_shipping_quote_value(true); ?>' name='shipping_method' />
<?php else: ?>
<input <?php echo wpsc_shipping_quote_selected_state(); ?> disabled='disabled' type='radio' id='<?php echo wpsc_shipping_quote_html_id(); ?>' value='<?php echo wpsc_shipping_quote_value(true); ?>' name='shipping_method' />
<?php wpsc_update_shipping_single_method(); ?>
<?php endif; ?>
<?php endwhile; ?>
<?php endwhile; ?>
<?php endif; ?>