Jump to content

Dirty Butter

Moderator
  • Posts

    6,634
  • Joined

  • Last visited

  • Days Won

    139

Everything posted by Dirty Butter

  1. Did you overwrite your Foundation with 6.1.8 and then merge your skin changes with the stock one? It sounds like you don't have the proper js files, or perhaps you're missing the newer files added in 6.1.8 Foundation skin.
  2. Create Error Log Sounds like you should consider paying for CC Support for a month.
  3. So what version are you on? Have you created the error_log?
  4. Do you get any error_log messages with recaptcha turned on? Did you do all the recent upgrades manually?
  5. Until someone can help who knows what the problem is - this is a quick fix. Change the store url line to hardcode: <li><a href="http://directhomeware.com/index.php" title="{$LANG.navigation.homepage}">{$LANG.navigation.homepage}</a></li> Be sure to clear all CC cache except images, as well as your browser cache.
  6. OK. I looked in Mican box.navigation.php. Please post the content in yours.
  7. A category can be set in Store Settings Layout tab to show even if there are no products in stock. Having images loaded for a Category isn't the same thing as having an active product listing with that Category.
  8. There are three checkout related files, not the counting ones for specific sizes. And there are two basket ones.
  9. Looked again first thing this morning, and the Homepage link has https this time, again. So it's intermittent. Please share a screenshot of your SSL settings in Store Settings.
  10. Glad you worked it out. Please edit your original post to show it is Resolved.
  11. There's a Z index setting in the cubecart.css file that I think controls that normally. Try -100??? But it may depend on what div it ended up in your skin.
  12. It's not causing problems now. How did you fix it?
  13. I did find some more files that relate to back-to-top. Hadn't thought to search GitHub for them: https://github.com/cubecart/v6/search?utf8=✓&q=back-to-top&type= The js and additional css code was not in my efforts detailed here previously.
  14. There must be some additional code change needed within the skin css. I would GUESS it goes right above this section, before the clear. But that's all it is - a guess. I'm sorry I couldn't help - hopefully the Galaxy developer will respond soon.
  15. Error log working for me now, too. The second error message is a known issue that causes no harm. Hopefully someone will be along who knows what the PHP Fatal Error means. As common as Kurouto still is I can't imagine it has anything to do with that. But there certainly are changes Kurouto can't easily handle - like invisible captcha.
  16. Sounds like a good Feature suggestion. See my signature for the link to it, so you can add your suggestion (with a link to this discussion). Also, please link back to it here, so others will see it and vote.
  17. Your error log is not showing. What skin are you using? It may be due to the v5.4.45 php version you are running. From what I can tell from past remarks of @Noodleman, this is an old version. You may have a plugin that is causing this. Temporarily disable your plugins and see if that gets you into the storefront. Also turn off Recapcha temporarily. Be sure to clear all cache, including browser, before trying to access the front.
  18. Sounds like it might have been a cache issue then. Glad it's fixed, anyway.
  19. Find this section in main.php and comment out (as shown) only what you want to remove it from all pages. <div class="large-3 columns show-for-large-up" id="sidebar_left"> {* {include file='templates/box.featured.php'} *} {include file='templates/box.popular.php'} {include file='templates/box.sale_items.php'} </div> If you want to keep the featured on some pages and not on others, I'm not sure how to do that.
  20. Your "homepage" link IS an https:// url. Your Category links and your store url are NOT https. THAT's the issue. Did you hard code your homepage link?
  21. Maybe the problem is the category image or one of the products in that category. If there is any url related to that category that is in any way hard coded - that might be the issue.
  22. 1. Add back-to-top line to main.php {include file='templates/box.featured.php'} {include file='templates/box.popular.php'} {include file='templates/box.sale_items.php'} </div> <!-- ADD THIS LINE --> <a href="#" class="back-to-top"><span><img src="{$STORE_URL}/images/icons/folder.png"> {$LANG.common.top}</span></a> </div> <footer> 2. Download the up arrow icon and add to your images/icons folder. Use that instead of folder.png. This one is free to download and comes in lots of sizes: https://www.iconfinder.com/icons/296828/arrow_up_icon#size=20 3. Add this to your skin css/cubecart.css file: a.back-to-top, a.back-to-top:hover, a.back-to-top:active, a.back-to-top:visited { color: #000 !important; }
  23. OK - all that works, but we still have a problem. We manually added these email addresses to the Bad Email Group. Once the customer has changed their login email address they are STILL in that group. We need some way to automatically email us with their new email address, or we'll have to ask them to contact us. We now need some way to know to manually or automatically take them out of the group. For now, I've worded it as <h3>Your email address is not valid. Please edit your Profile. Then <a href="{$STORE_URL}/contact-us.htm">contact us</a> with your new email address, so we can finish upgrading our records.</h3>
  24. We get customers who give us faulty email address quite frequently. I can see this being very useful, not just for these no longer valid free addresses. Your code works perfectly @bsandall But a returning customer may not go to the homepage. Can it be made to show on the Account page, which is what they see when they login? That was easy enough to move: cubecart.class: // Custom Account Menu Items BSANDALL ADDED GROUPS TO SMARTY BELOW $account_list_hooks = array(); foreach ($GLOBALS['hooks']->load('class.cubecart.account.list') as $hook) include $hook; $GLOBALS['smarty']->assign('ACCOUNT_LIST_HOOKS', $account_list_hooks); $GLOBALS['smarty']->assign('CUSTOMER_GROUPS', $GLOBALS['user']->getMemberships()); $content = $GLOBALS['smarty']->fetch('templates/content.account.php'); $GLOBALS['smarty']->assign('SECTION_NAME', 'account'); $GLOBALS['smarty']->assign('PAGE_CONTENT', $content); } and content.account.php <h2>{$LANG.account.your_account}</h2> {if isset($CUSTOMER_GROUPS)} {foreach from=$CUSTOMER_GROUPS item=group} {if $group.group_id == 1} <div class="small-12"> <h3>Your email address is no longer valid. Please edit your Profile.</h3> </div> {break} {/if} {/foreach} {/if}
×
×
  • Create New...