Jump to content

piccolina

Member
  • Posts

    106
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by piccolina

  1. Does the T&C checkbox appear in the Registration page: /index.php?_a=register

    Yes it does....

     

    In CC524, the phrase in admin, Store Settings, Layout tab, is "Disable terms & conditions checkbox on checkout". So, if a green check, you are disabling the appearance of the checkbox.

    I thought that was the case, but with a red cross (enabled)  the T&C's are still not showing at the check out.

     

    Thank you for your help.

     

    Geoff

  2. Hey all

     

    I had disabled the T&C's in the admin some time ago, but now I'm trying to reinstate it.

     

    I have the option checked in the admin, green tick, and have a designated T&C doc in documents.

     

    I'm using a modified Kuruto skin. I have tried switching to a stock skin to check, but still the check box at the check out is not showing. 

     

    Perhaps this is an issue with my version 5.2.4, that an upgrade will fix?

     

    Thank you in advance.

     

    Geoff

  3. I know I've asked before, as have many others, but what is happening with this!!!...it's becoming a real P in the A as more products are added.

     

    It's available on other shopping sites...I mean you can't tell me on some high volume sites, someone is going in to disable the product option manually each time it sells out..which is what I have to do in order to make a more streamlined shopping process.

     

    For all the knowledge out there you're telling me this can't be done? As limited as my knowledge about these things is, I still find this hard to believe...and you can probably tell by my tone this is driving C R A Z Y..

     

    PLEASE ATTEND to this ASAP....or at the very least offer a time frame for it's implementation..

     

    Geoff

  4.  

    From what I posted earlier, in the skin template file content.product.php, here is that code expanded:

    <form>
      <div><!-- This div block has no id associated with it -->
        <div id="product_detail">
          Price, Buy button, etc
        </div>
        <div id="gallery">
          Images
        </div>
      </div>
      <div id="product_description">
        <table>
          Lots of table stuff
        </table>
        <p>Product Description and stuff</p>
      </div>
    </form>

    Move the table so that it looks like the following:

    <form>
      <div><!-- This div block has no id associated with it -->
        <div id="product_detail">
          Price, Buy button, etc
          <table>
            Lots of table stuff
          </table>
        </div>
        <div id="gallery">
          Images
        </div>
      </div>
      <div id="product_description">
        <p>Product Description and stuff</p>
      </div>
    </form>

    Brian, I've tried this as you suggested but nothing changed so I don't think I made the changes correctly.

     

    In the content.product.php the only table is

     

    <table class="list">
     <tr>
    <th width="50">{$LANG.common.quantity}</th>
    <th width="100">{$LANG.catalogue.price_per_unit}</th>
     </tr>
     {foreach from=$PRODUCT.discounts item=discount}
     <tr>
    <td align="center">{$discount.quantity}+</td>
    <td align="center">{$discount.price}</td>
     </tr>
     {/foreach}
    </table>
     
    so I move that (cut and paste in notepad++) so it looks lie this below?
     
    <div id="product_detail">
     {if $PRODUCT.ctrl_sale}
     <h1><span class="price_previous">{$PRODUCT.price}</span> <span class="price_sale">{$PRODUCT.sale_price}</span></h1>
     {else}
     <h1>{$PRODUCT.price}</h1>
     {/if}
     
       {if isset($PRODUCT.discounts)}
     <p class="bulk_discount">(<a href="#quantity_discounts">{$LANG.catalogue.bulk_discount}</a>)</p>
     {/if}
     
     {if $PRODUCT.review_score && $CTRL_REVIEW}
     <p class="rating">
     {for $i = 1; $i <= 5; $i++}
       {if $PRODUCT.review_score >= $i}
    <img src="{$STORE_URL}/skins/{$SKIN_FOLDER}/images/common/star.png" alt="" />
    {elseif $PRODUCT.review_score > ($i - 1) && $PRODUCT.review_score < $i}
    <img src="{$STORE_URL}/skins/{$SKIN_FOLDER}/images/common/star_half.png" alt="" />
    {else}
    <img src="{$STORE_URL}/skins/{$SKIN_FOLDER}/images/common/star_off.png" alt="" />
    {/if}
     {/for}
     </p>
     <p class="rating-info">{$LANG_REVIEW_INFO}</p>
     {/if}
     {if $PRODUCT.manufacturer}
     <p>{$LANG.catalogue.manufacturer}: {$MANUFACTURER}</p>
     {/if}
     {if $PRODUCT.stock_level}
     <p>{$LANG.catalogue.stock_level}: {$PRODUCT.stock_level}</p>
     {/if}
     
     {if is_array($OPTIONS)}
     <div class="options">
    {foreach from=$OPTIONS item=option}
       {if $option.type == '0'}
    <div>
     <label for="option_{$option.option_id}" class="return">{$option.option_name}{if $option.price} ({$option.symbol}{$option.price}){/if}{if $option.required} *{/if}</label>
     <span><select name="productOptions[{$option.option_id}]" id="option_{$option.option_id}" class="textbox {if $option.required}required{/if}">
    <option value="">{$LANG.form.please_select}</option>
    {foreach from=$option.values item=value}
    <option value="{$value.assign_id}">{$value.value_name}{if $value.price} ({$value.symbol}{$value.price}){/if}</option>
      {/foreach}
    </select>
     </span>
     <table class="list">
     <tr>
    <th width="50">{$LANG.common.quantity}</th>
    <th width="100">{$LANG.catalogue.price_per_unit}</th>
     </tr>
     {foreach from=$PRODUCT.discounts item=discount}
     <tr>
    <td align="center">{$discount.quantity}+</td>
    <td align="center">{$discount.price}</td>
     </tr>
     {/foreach}
    </table>
    </div>
  5. thanks Brian but not clear on what, or where to do this...

     

    Do you mean.

     

    <form>
      <div id="no-name">
        <div id="product_detail" />
        <div id="gallery" />
      </div>
      <div id="product_description">
        <table />
        <p />
      </div>
    </form>

     

    change to below... in common.css

     

    <form>

      <div id="no-name">
        <div id="product_detail" <table />

        <div id="gallery" />
      </div>
      <div id="product_description">
        <p />
      </div>
    </form>

     

    Thank you 

    Geoff

  6. I'm using a modified (my own edits) of Kuruto.

     

    If you view one of my products in the new arrival category you'll see there's significant space between the bottom of    div# product_detail    box to the top of the  first cell of the table below created in the product>description. 

     

    http://www.piccolina.com.au/index.php?_a=product&product_id=1192

     

    How can I reduce this space? ie move the table so it's closer to the product_detail box ?

    I hope that's clear...

     

    Thanks in advance.

     

    Geoff

  7. Hey All,

     

    If you see me logo header at piccolina.com.au there's a slight blue/grey frame around it....and I can't figure out where that css line is to remove it.

     

    I just want to change all around the logo to white.

     

    Would someone mind pointing it out for me?

     

    Thanks in advance.

     

    Geoff

  8. Hey Toucan...thanks for your reply....

     

    just to be clear, as I'm novice at this stuff....

     

    I can either comment out as below..

     

    color: #FFF;
    /* display: inline-block; */
    font-weight: bold;
    /* height: 0px; */
    padding-right: 1px;
    text-decoration: underline;
     
    or replace
     
    #account a, #header a {
    color: #FFF;
    display: inline-block;
    font-weight: bold;
    height: 0px;
    padding-right: 1px;
    text-decoration: underline;
     
    with the code you've provided?
     
    Thanks in advance for your help..
     
    Geoff
  9. Hey All,

     

    Having had someone remove the currency and language block from top of Kurouto skin, I just discovered that, in Safari, the "login in or register" at top right doesn't display fully.

     

    It only displays "or" ...but the words "log in register" do show when the mouse pointer is on top of text...not as a roll over, but as a message under the pointer (not sure how you refer to that)' alt='' class='ipsImage' width="1000px" height="598px">

     

    Can anyone help on this as most of my visitors are using Safari?

     

    See screen shot attached,

     

    geoff

     

    ' alt='' class='ipsImage' width="1000px" height="598px">

  10. ...thanks again..

     

    Yes I did that ..changed the three instances of Kurouto to picco (being the new folders name)  and all worked...Excellent outcome..

     

    Quick aside...so if I upgrade now all will stay the same with this (my new edited) skin...is that correct?

     

    Thanks again

     

    Geoff

  11. ..I've made changes to my Kurouto skin and I believe it's prudent to rename this as a new skin in a new folder.

     

    I've copied the entire Kurouto folder(that's been edited) to a new folder and renamed it but it doesn't appear in the drop down list in store setting, layout tab....I've cleared all in the maintenance>rebuild tab..

     

    Is there something else I need to do?

     

    Thank you in advance for any assistance.

     

    Geoff

  12. ...is there a time line or confirmation that the option to "hide out of stock product options" is coming?

     

    This is SO annoying..

     

    What does everyone else do? I know you could add each style individually with sizes and only one colour, and then manually delete the options when sold out....but really?? 

     

    Please help..

     

    Geoff

×
×
  • Create New...