Jump to content

Claudia

Member
  • Posts

    262
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Claudia

  1. How does CubeCart determine what to use as the shipping date of an order?  Is it set by when the status of the order is set as complete?  I would like to be able to input this info manually; and how would I make it work on the order history / view details page when the customer is logged into their account. Thanks for any and all help!

     

    I use a database called all_ship_date and manually input the date for all orders whether the order is thru the store or I create it for offsite sales.  I also do this for the shipping paid for - venue_ship_product for and the shipping used - all_shipping_used (often times I give a shipping upgrade and want the customer to know) I'd like to implement them here too

     

    This is what I have in skin/contents/receipt

    {if $DELIVERY}

    <hr>

    <div class="title-mid marg-top">{$LANG.common.delivery}</div>

     {if !empty($DELIVERY.date)}

    <div class="row">

      <div class="small-6 medium-3 columns">Shipping Date:</div>

      <div class="small-6 medium-9 columns">{$DELIVERY.date}</div>

    </div>

    {/if}

     

     {if !empty($DELIVERY.method)}

    <div class="row">

      <div class="small-6 medium-3 columns">Shipping Carrier:</div>

      <div class="small-6 medium-9 columns">{$DELIVERY.method}</div>

    </div>

    {/if}

  2. Here you go.  This is my skin code.  

            {if $PRODUCT.specs_title_12}
                      <div class="block_container">  <div class="bc-subtitle"> {$PRODUCT.specs_title_12}</div>
                      {/if}
                       {if $PRODUCT.specs_content_12}
                         <div class="bc-txt">{$PRODUCT.specs_content_12}</div></div>
                      {/if}

             {if ($PRODUCT.related_used_with)}
                  <div>
         {$PRODUCT.related_used_with}
                 </div>   
                  {/if}

                    </form>
                  
            <div class="hide" id="validate_field_required">{$LANG.form.field_required}</div>
    </div>
    {else}
    <p>{$LANG.catalogue.product_doesnt_exist}</p>
    {/if}

     

  3. This is the part of debug in admin for the example page.

    'related_used_with' => &lt;div class=&quot;title-related thinmarg-top&quot;&gt;Use with Our:&lt;/div&gt;

    &lt;div class=&quot;row pad-topbottom&quot;&gt;
    &lt;div class=&quot;small-12 medium-3 large-3 columns center&quot;&gt;&lt;a href=&quot;/tealight-candles-and-more&quot; title=&quot;Tealight Candles&quot;&gt;&lt;img alt=&quot;Tealight Candles&quot; class=&quot;th&quot; src=&quot;../images/related/candle-tealight-lot-5-150.jpg&quot; title=&quot;Tealight Candles&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
    &lt;a class=&quot;related center&quot; href=&quot;/tealight-candles-and-more&quot; target=&quot;_blank&quot; title=&quot;Tealight Candles&quot;&gt;Tealight Candles&lt;/a&gt;&lt;/div&gt;

    &lt;div class=&quot;small-12 medium-3 large-3 columns center&quot;&gt;&lt;a href=&quot;/scented-oils&quot; title=&quot;Scented Oils&quot;&gt;&lt;img alt=&quot;Scented Oils&quot; class=&quot;th&quot; src=&quot;../images/related/scented-oils-lot-5-150.jpg&quot; title=&quot;Scented Oils&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
    &lt;a class=&quot;related center&quot; href=&quot;/scented-oils&quot; target=&quot;_blank&quot; title=&quot;Scented Oils&quot;&gt;Scented Oils&lt;/a&gt;&lt;/div&gt;

    &lt;div class=&quot;small-12 medium-3 large-3 columns center&quot;&gt;&lt;a href=&quot;/scented-tarts&quot;&gt;&lt;img alt=&quot;Scented Tarts&quot; class=&quot;th&quot; img=&quot;&quot; src=&quot;../images/related/scented-tarts-lot-6-150.jpg&quot; title=&quot;Scented Tarts&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
    &lt;a class=&quot;related center&quot; href=&quot;/scented-tarts&quot; target=&quot;_blank&quot; title=&quot;Scented Tarts&quot;&gt;Scented Tarts&lt;/a&gt;&lt;/div&gt;

  4. "I change my code -- from what to what? "  From the code in the original post to what you gave me

    "Still shows the original -- what? " from the code in the original post

    "Is this "code" actually part of the product's Description? "  No it's a new section I created .... It all worked (not the "th" in 6.5.1).  I guess if I had to I could add it to the product description.

    ADMIN PRODUCTS SOURCES

    $record = $_POST;
        $record['description'] = $GLOBALS['RAW']['POST']['description'];
        $record['sold_venue_tag'] = $GLOBALS['RAW']['POST']['sold_venue_tag'];
        $record['related_used_with'] = $GLOBALS['RAW']['POST']['related_used_with'];
        unset($record['categories'], $record['group'], $record['image']);

     

    ADMIN PRODUCTS SKIN

    <fieldset>
             <legend style="width:99.5%">Sold Venue Tag</legend>
            <textarea name="sold_venue_tag" id="sold_venue_tag" class="textbox fck">{$PRODUCT.sold_venue_tag}</textarea>
    </fieldset>
    </td>
      <td width="1%">         &nbsp;                </td>
                        
                         <td width="48%">  
         <fieldset>
             <legend style="width:99.5%">{$LANG.common.description}</legend>
          <textarea name="description" id="description" class="textbox fck">{$PRODUCT.description}</textarea>
        </fieldset>
         </td>
            
                </tr>
                </table>
                <table width="50%">
                 <tr>
    <td width="50%">  
         <fieldset>
             <legend style="width:99.5%">Related / Used With</legend>
          <textarea name="related_used_with" id="related_used_with" class="textbox fck">{$PRODUCT.related_used_with}</textarea>
        </fieldset>

    If I make it part of the description it works ...  but.... it is placed above the products specs. and even though I delete the code in the related_used_with it still shows.

  5. I don't know if that will work for me or not.  Even when I change my code, the frontend page still shows the original, though the admin shows the changes. Here's my revised testing code.  I have even checked my admin product skin and source codes.

    <div class="small-12 medium-3 large-3 columns center">

    <a href="/tealight-candles-and-more" title="Tealight Candles"><img class="th" alt="Tealight Candles" src="../images/related/candle-tealight-lot-5-150.jpg" title="Tealight Candles"></a><br />

    <a class="related center" href="/tealight-candles-and-more" target="_blank" title="Tealight Candles">Tealight Candles</a>

    </div>

  6. I have setup a new section in my product listings that I use for some of my listings. It's Called Use With (or Related too).  It shows images of items that can be used for that product listing along with a link to that item.  My question is how do I get the image "th" class to work on these images?

    I have setup a new folder in the main images file (/public_html/images/related/) to store the images used.

     Here's a page example

    FYI - Here's a sample of the code I'm now using.  I tried to put the img class="th" src code and rearranged the alt and title but it wouldn't take.

     

    <div class="title-related thinmarg-top">Use with Our:</div>

     

    <div class="row pad-topbottom">

    <div class="small-12 medium-3 large-3 columns center">

    <a href="/tealight-candles-and-more"><img alt="Tealight Candles" src="../images/related/candle-tealight-lot-5-150.jpg" style="border-width: 0px;" title="Tealight Candles" /></a><br />

    <a class="related center" href="/tealight-candles-and-more" target="_blank" title="Tealight Candles">Tealight Candles</a>

    </div>

    Thanks for any all help!!!

     

     

  7. "This will show a Smarty debug popup (hopefully for you only). The popup will show the contents of the array $PRODUCT, and should contain the sub-array 'image_tags'. Verify that there exists in 'image_tags' the sub-array 'medium', and within 'medium', the elements 'alt' and 'title'. "

    I can't find that in the revised debug for any product

  8. I will do that of course.  But I wanted you to see my custom code (I made products stuff all one file) to see if I messed something up.

    Link to example page

    Where the large photo goes at the top left of the product page:

    <div class="row">
          <div class="small-12 medium-7 large-7 columns horizontal marg-bottom">
       <span class="font11 red pad-left"> Click on large image for largest size photos</span>
          {if count($GALLERY) > 1}
             <a href="#" class="open-clearing" data-thumb-index="0"><img src="{$PRODUCT.medium}" alt="{if isset($PRODUCT.image_tags.medium.alt) && !empty($PRODUCT.image_tags.medium.alt)}{$PRODUCT.image_tags.medium.alt}{else}{$PRODUCT.name}{/if}"{if isset($PRODUCT.image_tags.medium.title)} title="{$PRODUCT.image_tags.medium.title}"{/if} id="img-preview"></a>
     {else}
             <div data-clearing><a href="{$PRODUCT.source}"><img src="{$PRODUCT.medium}" alt="{if isset($PRODUCT.image_tags.medium.alt) && !empty($PRODUCT.image_tags.medium.alt)}{$PRODUCT.image_tags.medium.alt}{else}{$PRODUCT.name}{/if}"{if isset($PRODUCT.image_tags.medium.title)} title="{$PRODUCT.image_tags.medium.title}"{/if} id="img-preview"></a></div>
          {/if}
          </div>

    Where the thumbnails go right above the description:

    <div class="row">
     
          {if count($GALLERY) > 1}
        <!--  <span class="font11 red pad-left"> Click on image for largest size photos</span> -->
          <ul class="clearing-thumbs small-block-grid-5 medium-block-grid-6 large-block-grid-10" data-clearing>
             {foreach from=$GALLERY item=image}
             <li><a href="{$image.source}" class="th"><img src="{$image.small}" data-image-swap="{$image.medium}" data-caption="{if !empty($image.image_tags.title)}{$image.image_tags.title}{else}{$PRODUCT.name}{/if}" class="image-gallery" alt="{if isset($image.image_tags.alt) && !empty($image.image_tags.alt)}{$image.image_tags.alt}{else}{$image.name}{/if} - {$LANG.catalogue.click_enlarge}"{if isset($image.image_tags.title)} title="{$image.image_tags.title}"{/if}></a></li>
             {/foreach}
          </ul>
          {/if}
          </div>
    <div  class="thinmarg-top" style="font-size:1rem; font-weight:bold; border-top: 1px solid #C0C0C0;border-bottom: 1px solid #C0C0C0"> Description </div>
             {if ($PRODUCT.description)}
                  <div>
         {$PRODUCT.description}
                 </div>   
                  {/if}

     

     

     

  9. I keep getting these warnings.  Anything to do to stop it - or do I need to worry? Thanks for any and all help.

    [13-Sep-2023 09:02:41 America/Louisville] PHP Warning:  Invalid Security Token in /home/xxxxx/public_html/classes/sanitize.class.php on line 155
    [13-Sep-2023 09:02:41 America/Louisville] PHP Warning:  Undefined global variable $_GET in /home/xxxxx/public_html/includes/functions.inc.php on line 218
    [13-Sep-2023 09:30:31 America/Louisville] PHP Warning:  Undefined array key "HTTP_USER_AGENT" in /home/xxxxxx/public_html/classes/user.class.php on line 719
    [12-Sep-2023 21:06:52 America/Louisville] PHP Warning:  Trying to access array offset on value of type bool in /home/xxxxx/public_html/classes/cubecart.class.php on line 660
     

×
×
  • Create New...