Jump to content

hulp gevraagd bij herplaatsen van een textfield voor kleuren (opgelost)


Recommended Posts

Hallo

ik zal me eerst even voorstellen martin aangenaam

ik ben sinds kort overgestapt op presta shop na een paar maanden drama met een andere software

ik heb het nu redelijk op orde maar als iemand een product selecteerd in mijn geval verf
krijg ik netjes rechts in dat blok het aantal de hoeveelheid

en nu heb ik onderop de pagina staan kleurnummer het is een verplicht textfield via optie 5 heb ik deze aangemaakt
maar deze valt niet echt op omdat ie onderop staat heeft iemand een idee hoe ik die in het blok krijg waar ook het aantal staat en je combinations

ik hoop dat iemand me kan helpen

voor een voorbeeld http://www.verf-gereedschap.nl

groetjes martin

Link to comment
Share on other sites

<!-- Customizable products -->
{if $product->customizable}



<form method="post" action="{$customizationFormTarget}" enctype="multipart/form-data" id="customizationForm">


Informatie
{l s='Vul u kleurnummer klik op bewaren dan pas bestellen klikken.'}
{if $product->uploadable_files}

{l s='Allowed file formats are: GIF, JPG, PNG'}{/if}


{if $product->uploadable_files|intval}

{l s='Pictures'}



  • {counter start=0 assign='customizationField'}
    {foreach from=$customizationFields item='field' name='customizationFields'}
    {if $field.type == 0}
  • {assign var='key' value='pictures_'|cat:$product->id|cat:'_'|cat:$field.id_customization_field}
    {if isset($pictures.$key)}{/if}
    <input type="file" name="file{$field.id_customization_field}" id="img{$customizationField}" class="customization_block_input {if isset($pictures.$key)}filled{/if}" />{if $field.required}*{/if}
    {if !empty($field.name)}{$field.name}{else}{l s='Please select an image file from your hard drive'}{/if}


    {counter}
    {/if}
    {/foreach}

{/if}

{if $product->text_fields|intval}

{l s='Kleur keuze'}



  • {counter start=0 assign='customizationField'}
    {foreach from=$customizationFields item='field' name='customizationFields'}
    {if $field.type == 1}
  • {assign var='key' value='textFields_'|cat:$product->id|cat:'_'|cat:$field.id_customization_field}
    {if !empty($field.name)}{$field.name}{/if}<input type="text" name="textField{$field.id_customization_field}" id="textField{$customizationField}" value="{if isset($textFields.$key)}{$textFields.$key|stripslashes}{/if}" class="customization_block_input" />{if $field.required}*{/if}

    {counter}
    {/if}
    {/foreach}

{/if}


<input type="hidden" name="quantityBackup" id="quantityBackup" value="" />
<input type="hidden" name="submitCustomizedDatas" value="1" />
<input type="button" class="button" value="{l s='Save'}">


</form>

* {l s='required fields'}




let op dit stuk broncode is aangepast naar mijn shop zie de nederlandse tekst in de code
dit stuk code staat origineel op line 388 van product.tpl van je theme
deze effe knippen en plakken naar line 324 dan kom je precies uit onder je foto en boven je omschrijving

ik zal nog proberen een variant te maken om deze opties in het rechterblock te krijgen
maar ik stuit op wat kleine problemen
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...