Jump to content

bsmither

Member
  • Posts

    17,973
  • Joined

  • Last visited

  • Days Won

    603

bsmither last won the day on April 24

bsmither had the most liked content!

Profile Information

  • Gender
    Male
  • Location
    Pacific Coast

Recent Profile Visitors

100,091 profile views

bsmither's Achievements

Mentor

Mentor (12/14)

  • Well Followed Rare
  • Very Popular Rare
  • Conversation Starter
  • Dedicated Rare
  • Posting Machine Rare

Recent Badges

1.6k

Reputation

  1. In the Foundation skin template element.product.vertical_gallery.php, use the following (make a backup of the existing file): <ul class="small-block-grid-1 medium-block-grid-2"> <li> <div class="row"> <div class="medium-3 columns thinpad-right off-canvas-for-small vertical"> <div id="scrollUp" class="scroller"><svg class="icon"><use xlink:href="#icon-angle-up"></use></svg></div> <ul class="{if !is_array($GALLERY) || count($GALLERY) < 2}hide-important {/if}clearing-thumbs small-block-grid-1" id="scrollContent" 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="{$PRODUCT.name}{if !empty($image.image_tags.title)}: {/if}{$image.image_tags.title}" 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> <div id="scrollDown" class="scroller"><svg class="icon"><use xlink:href="#icon-angle-down"></use></svg></div> </div> <div class="small-12 medium-9 columns text-center nopad small-centered"> <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> <p class="show-for-small-only">{if is_array($GALLERY) && count($GALLERY) > 1}{$LANG.catalogue.tap_gallery}{else}{$LANG.catalogue.tap_enlarge}{/if}</p> </div> </div> </li> <li> <div class="row"> <div class="small-12 columns thinpad-left"> {include file='templates/element.product.options.php'} {include file='templates/element.product.review_score.php'} {include file='templates/element.product.call_to_action.php'} </div> </div> </li> </ul>
  2. They persist? Again, did you have CubeCart clear its internal cache? (The Clear Cache button in admin's upper-right corner.)
  3. To answer the social media icon question, in admin, Store Settings, General tab, delete all the entries in the Social Account section. (This is actually in reference to CC654 - I haven't explored CC655 yet.) Have CubeCart clear its internal cache. In admin Store Settings, Locale Settings section, make sure Default Language is set to what you want (English (US)?). Next, in admin, Administrators, edit your admin profile. Select as your personal Default Language what you want (English (US)?).
  4. I am not sure how an out-of-the-box solution would perform the various steps you've outlined. Could you elaborate?
  5. This plugin may be of interest: https://www.cubecart.com/extensions/plugins/related-products-manual-automated-recommendations Please note that it was last updated in 2018, so you should send a note to the developer to see if a version has been written for PHP8 and that it works for CC6.5.
  6. Do you have a friend who has an email address other than 'hotmail'? Invite that friend to create an account, create an order, then you cancel it. See if the friend gets the email.
  7. The part in red is informational. It is not a response to any offense. It is very much like a sign on the door of a business: No Smoking. It is there to inform you, regardless whether you are or are not a smoker. I do see the User/Pass part of the conversation. but secureserver.net is not agreeing to what they should be. If you copy/pasted the username and/or password into these fields, the copy may have grabbed an invisible tab or newline character. So, blank those fields and then manually type in what they should be.
  8. Then I wonder how the test succeeded. Looking again at the conversation of the test, I see that there is no part that says, "Give me your Username," and "Give me your Password." Strange. Anyway, in Store Settings, Advanced tab, for the "Use SMTP Authentication (Normally Required)", select Yes. Then fill in the SMTP Username and SMTP Password fields. Test. In the test response conversation, make sure there is a part that the Client sends to the Server a (possibly hashed) username and a (possibly hashed) password. But DO NOT post what those values are, here in the forums!
  9. It is the whole reported number as the percentage, that is, for you, 7.00 (do not include the actual percent character). If you are experiencing this in CC654, please know that several stores are experiencing tax calculation issues. The solution at present is to make an edit to the following file: /classes/cart.class.php, line 1203, remove the line: $this->get(); The value $37.90 is 3X what the tax should be, thus somewhere, somehow, CubeCart is running $179 through the tax calculator three times. (Personally, I have not discovered why, but the programmers imply this should be the fix.)
  10. My feeling is that there is a new or newly revealed systemic issue in the CC654 code, meaning whether it is a "clean" install or an "upgrade", the end result will be the same. Which is to say, an upgrade is actually a whole-cloth replacement of all the system files and the Foundation skin. I do not think it likely that there is a new incompatibility between CC654 code and any module, especially where tax calculations are concerned.
  11. When viewing a list of products in a given category, when that list is in 'grid' view, the product name (title) is truncated to 38 characters (including spaces), followed by a three-dot character (ellipsis). The same applies to the listing on the homepage. Using a programmer's text editor, please edit these files: content.homepage.php, near line 29: From: <h3><a href="{$product.url}" title="{$product.name}">{$product.name|truncate:38:"&hellip;"}</a></h3> To: <h3><a href="{$product.url}" title="{$product.name}">{$product.name}</a></h3> content.category.php, near line 137: From: <h3><a href="{$product.url}" title="{$product.name}">{$product.name|truncate:38:"&hellip;"}</a></h3> To: <h3><a href="{$product.url}" title="{$product.name}">{$product.name}</a></h3> Have CubeCart clear its internal cache (in admin, click the "Clear Cache" button at the upper-right corner).
  12. Edit the skin CSS file 'cubecart.common.css' and add, at the bottom of that file, this: button, .button { border-radius: 10px; } Save and have CubeCart clear its internal cache.
  13. What skin are you using? May we have a web address to give better advice?
×
×
  • Create New...