Jump to content

Dirty Butter

Moderator
  • Posts

    6,634
  • Joined

  • Last visited

  • Days Won

    139

Posts posted by Dirty Butter

  1. Do you have access to any file compare software? I use BeyondCompare, but that's one of many. Not sure if there's a free trial anymore or not. Since you have two sites on the same host - maybe you would be able to spot the difference.

    If not, please give both url's. Maybe there's a difference in the Source Code that I could spot.

  2. Here's the GitHub discussion about why this changed:

    https://github.com/cubecart/v6/issues/1449

    Most of our items have one image, so I got around it by changing the size to large. Of course there are limits to how big "large" can be and still work properly on a small phone.

    That meant I had to make a change in the skin config to add a default "no image" code to large. I just copied what was there for other sizes.

  3. @keat - did you have to add the csrf tag to Kurouto config? I HAVE SINCE FOUND OUT YOU DO NOT ADD THE CSRF TAG TO V5 SKIN CONFIGS.

    Only the skin named foundation is changed on upgrade. I use a renamed copy of Foundation to preserve all my edits. Of course that means I have to add back into my version any edits in the upgraded Foundation when they do occur.

  4. You had displayed your renamed admin folder. Since it was an image I didn't have any way to protect you other than to delete the image. For security precaution - it would be best if you renamed your admin_XXX folder within includes/global.inc.php - and then renamed your admin_xxx folder to match. You will have to change permission in order to be able to edit the global  includes file.

    For some reason this forum software only lets Moderators add the Resolved.

    • Like 1
  5. On 5/1/2017 at 5:02 PM, Dirty Butter said:

    OK - the old v5 skins really require considerable editing for them to work on 6.1.7. There are huge differences in Foundation in the upgrade from 6.1.5.

    As I understand it, they are no longer supported by CC. Not sure why it didn't work on 6.1.4, but maybe it's time to bite the bullet and change to Foundation. Otherwise you may need to downgrade to 6.1.4 and try to get it fixed there.

     

    I was wrong about v5 skins. @Al Brookbanks says they should still work with 6.1.7. It was old ShopDev skins that were expected to no longer work.

    Sorry about that! So we're back to square one - except your issue has been around since 6.1.4.

    Please provide your store url.

    DO please be sure that your Kurouto skin has the csrf line in your config.xml. THIS WAS BAD ADVICE - DO NOT ADD THE CSRF LINE TO V5 SKINS!!

    	<creator>CubeCart Limited</creator>
    	<homepage>http://www.cubecart.com</homepage>
    	<mobile>false</mobile>
    	<responsive>true</responsive>
    	DO NOT ADD THIS TO V5 SKINS<csrf>true</csrf>
      </info>
      <layout>

    That's from Foundation, so I'm not sure what it looks like in the Kurouto skin config.xml. But you need to add <csrf>true</csrf>.

  6. OK - the old v5 skins really require considerable editing for them to work on 6.1.7. There are huge differences in Foundation in the upgrade from 6.1.5.

    As I understand it, they are no longer supported by CC. Not sure why it didn't work on 6.1.4, but maybe it's time to bite the bullet and change to Foundation. Otherwise you may need to downgrade to 6.1.4 and try to get it fixed there.

     

  7. Welcome to the forums, @Madan Kumar!

    I can't help with accomplishing this, but maybe I can ask some questions and save a little time when someone knowledgeable is online to see your answers.

    1. What CC version are you on and what skin?

    2. Is your install stock or has it been edited?

    3. What is your store url?

    4. Do you use Categories/subcategories?

    5. How many products do you want on the homepage?

    6. Are you wanting to eliminate the Featured, Latest, Sale Items, and Popular sections?

  8. Sounds like a bug to me. I'll do some testing and be right back.

    The same thing happened on a test order I carried to PayPal, but did not pay. I then changed the order from Pending to Processing. Then I deleted one item out of the order and adjusted s/h. The stock quantity of the deleted item did not go back to previous value.

    I've never had a reason to try that.

    Just to be sure we are on the same wavelength:

    So they paid, changed their minds about wanting one item, and you refunded their payment for that part of the order. When you adjusted your order information on the Inventory tab to remove the canceled item, it did not add the item back to stock level.

  9. I don't know how to make the data available to orders.index.php, but I did come up with a work around.

    	       <!--MY PRODUCT LINKS --> 
                   {foreach from=$PRODUCTS item=product}
    	       <div id="item">
                      {$product.quantity} x {$product.name} - <a href="?_g=products&sort[updated]=DESC&action=edit&product_id={$product.product_id}#image" target="_blank">{$product.product_code}</a> ({$product.line_formatted}) {if $product.digital}{/if}<span>{$product.price_total_formatted}</span>
                      {if $product.accesskey}
                      <div class="download_info"><i class="fa fa-download"></i>{$STORE_URL}/index.php?_a=download&amp;accesskey={$product.accesskey}<br>
                      <a href="{$VAL_SELF}&reset_id={$product.id}"><i class="fa fa-recycle"></i>{$LANG.orders.reset_download_link}</a> <font class="{if $product.expired}link_expired{else}link_active{/if}">({$LANG.common.downloads}: {$product.downloads}/{$CONFIG.download_count} {$LANG.catalogue.title_coupon_expires}: {$product.expire})</font></div>
                      {/if}
    		  <p align="left">Catalog Listing for <a href="{$STORE_URL}/admin_XXX.php?_g=products&q={$product.product_code}&_a=category" target="_blank">{$product.product_code}</a>
                      {if $product.options_text}
                      <br>{$product.options_text}
                      {/if}
                      {if $product.custom}
                      {foreach from=$product.custom key=k item=v}
                      <br><strong>{$k}</strong>: {$v}
                      {/foreach}
                      {/if}
                   </div>
                   {/foreach}
     	       <!--END MY LINKS-->

    Hopefully someone will be able to help with adding the photo to the order summary page.

×
×
  • Create New...