tztudio Posted October 28, 2022 Share Posted October 28, 2022 Prestashop product options customization problem I am having a problem with the Prestashop product customization option. Please see attached pics. The options of the last customer are showing on the product page (on my website, front office). The 2nd image I have attached is a screenshot of my back office product-options-customization. I am using Prestashop version 1.7.8.7. Anyone have any idea what is going on, and how to fix it? Thank you! : ) Link to comment Share on other sites More sharing options...
ComGrafPL Posted October 29, 2022 Share Posted October 29, 2022 Inspect the code and see from where it's coming from. Either hide in custom.css Link to comment Share on other sites More sharing options...
tztudio Posted October 29, 2022 Author Share Posted October 29, 2022 I'm sorry, I do not know how to inspect the code. How do I do that? Thank you for your help : ) Link to comment Share on other sites More sharing options...
ComGrafPL Posted October 30, 2022 Share Posted October 30, 2022 On 10/29/2022 at 5:04 PM, tztudio said: I'm sorry, I do not know how to inspect the code. How do I do that? Thank you for your help : ) Expand Share the url. Link to comment Share on other sites More sharing options...
tztudio Posted October 30, 2022 Author Share Posted October 30, 2022 Here is the url ... https://tstudioleather.com/snap-on-style/274-basketweave-pattern-tooled-leather-phone-case.html Link to comment Share on other sites More sharing options...
ComGrafPL Posted October 30, 2022 Share Posted October 30, 2022 Clear the browser cache. I don't see it. Link to comment Share on other sites More sharing options...
endriu107 Posted October 30, 2022 Share Posted October 30, 2022 @tztudio by default when user save customization those text are displayed below input, in your theme it is show next to input label, you should check in product-customization.tpl file in your theme and make there changes. Link to comment Share on other sites More sharing options...
tztudio Posted October 30, 2022 Author Share Posted October 30, 2022 On 10/30/2022 at 8:36 PM, endriu107 said: @tztudio by default when user save customization those text are displayed below input, in your theme it is show next to input label, you should check in product-customization.tpl file in your theme and make there changes. Expand Thank you. I have cleared cache, but still see it. It is visible on both my desktop computer, as well as my mobile devices. Here is the text for the product-customization.tpl file. What do I need to edit/change? Thank you for your help : ) <section class="product-customization"> {if !$configuration.is_catalog} <div class="card card-block"> <h3 class="h4 card-title">{l s='Product customization' d='Shop.Theme.Catalog'}</h3> {l s='Don\'t forget to save your customization to be able to add to cart' d='Shop.Forms.Help'} <form method="post" action="{$product.url}" enctype="multipart/form-data"> <ul class="clearfix"> {foreach from=$customizations.fields item="field"} <li class="product-customization-item"> <label> {$field.label}</label> {if $field.type == 'text'} <label>{$field.text}</label> <textarea placeholder="{l s='Your message here' d='Shop.Forms.Help'}" class="product-message" maxlength="250" {if $field.required} required {/if} name="{$field.input_name}"></textarea> <small class="pull-xs-right">{l s='250 char. max' d='Shop.Forms.Help'}</small> {elseif $field.type == 'image'} {if $field.is_customized} <br> <img src="{$field.image.small.url}"> <a class="remove-image" href="{$field.remove_image_url}" rel="nofollow">{l s='Remove Image' d='Shop.Theme.Actions'}</a> {/if} <span class="custom-file"> <span class="js-file-name">{l s='No selected file' d='Shop.Forms.Help'}</span> <input class="file-input js-file-input" {if $field.required} required {/if} type="file" name="{$field.input_name}"> <button class="btn btn-primary">{l s='Choose file' d='Shop.Theme.Actions'}</button> </span> <small class="pull-xs-right">{l s='.png .jpg .gif' d='Shop.Forms.Help'}</small> {/if} </li> {/foreach} </ul> <div class="clearfix"> <button class="btn btn-primary pull-xs-right" type="submit" name="submitCustomizedData">{l s='Save Customization' d='Shop.Theme.Actions'}</button> </div> </form> </div> {/if} </section> Link to comment Share on other sites More sharing options...
endriu107 Posted October 31, 2022 Share Posted October 31, 2022 Try remove this line <label>{$field.text}</label> After that clear cache. Link to comment Share on other sites More sharing options...
Michel_HTF Posted June 13, 2024 Share Posted June 13, 2024 I am also having this problem ... the mod suggested above has not fixed it for me ... does anyone have a solution ?? Each time it occurs I have to delete the customizations from the product and then recreate them in order to get rid of the unwanted entries. Hoping someone can help .... Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now