 lilqhgal
|
I’m using a custom theme from Theme Forest and I don’t see this issue with the TwentyTen theme, so I know it’s a theme issue, but can anyone figure out where the tag comes from? It’s not in the html. Here’s a screen shot:
http://dl.dropbox.com/u/4036471/screenshots/screen70b61f.jpg
Thanks.
|
 MetPlan2
|
I too am having this really annoying issue. I can not find a single place where it is adding these tags. Can anybody help?
I am using the latest wordpress and wp-ecommerce plugin.
|
 Lleo
|
I had this problem too, after poking around it seems a function generates the input/textarea/etc tags… I didn’t want to edit the core files so I used the following to fix it up abit…
$(document).ready(function() {
$(".wpsc_checkout_forms input[type='text']").each( function() {
this.value = ' ';
});
});
Not exactly a great solution, but it’ll clean it up till it gets fixed 
|
 Fred Evans
|
Lleo, Where did you put that snippet to remove the tags?
Thanks
|
 Stefano Viani
|
You can solve this, if you remove the linebreaks between the label-tags.
<td class='<?php echo wpsc_checkout_form_element_id(); ?>'>
<label for='<?php echo wpsc_checkout_form_element_id(); ?>'><?php echo wpsc_checkout_form_name();?></label>
</td>
|
 akarolis78
New Member
|
Has anyone found out how to fix this problem? I’ve scoured the code and cannot see how it is being created. I have other wp-ecommerce builds for other sites i’ve built but none of them have this issue.
|
 Michelle
Resident Expert
|
Hi akarolis78,
I suspect you have tags between your labels. WPEc uses some Javascript to populate the label values (First Name etc) into the checkout form fields.
Removing these tags as suggested by Stefano above should resolve this problem.
Thanks
Michelle
|