| | | | | | | |

WordPress Child Theme – WP e-Commerce: Move Product Title to Description Column

Overview: Move Product Title from above the Product image, to above the Product details section.

Note 1: WP e-Commerce version: 3.8; WordPress version: 3.1.1
Note 2: All of the WP e-Commerce theme files were first moved to the Child Theme folder via WP e-Commerce’s backup option.

Solution: Move the H2 code from it’s current ImageCol section to the beginning of the ProductCol section.

Edit: root > wp-content > themes > eurolensbath > wpsc-products_page.php

Move the H2 block, lines 68-74:

<h2 class="prodtitle entry-title">
	<?php if(get_option('hide_name_link') == 1) : ?>
		<?php echo wpsc_the_product_title(); ?>
	<?php else: ?> 
		<a class="wpsc_product_title" href="<?php echo wpsc_the_product_permalink(); ?>"><?php echo wpsc_the_product_title(); ?></a>
	<?php endif; ?>
</h2>

To just inside the ProductCol section:

<div class="productcol">
	<?php
		do_action('wpsc_product_before_description', wpsc_the_product_id(), $wp_query->post);
		do_action('wpsc_product_addons', wpsc_the_product_id());
	?>
<!-- Moved the H2 code from above the Product Image, to here - which is at the beginning of the Product details column. -->
<h2 class="prodtitle entry-title">
	<?php if(get_option('hide_name_link') == 1) : ?>
		<?php echo wpsc_the_product_title(); ?>
	<?php else: ?>
		<a class="wpsc_product_title" href="<?php echo wpsc_the_product_permalink(); ?>"><?php echo wpsc_the_product_title(); ?></a>
	<?php endif; ?>
</h2>
<div class="wpsc_description">
	<?php echo wpsc_the_product_description(); ?>
</div><!--close wpsc_description-->

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *