Jump to content

Claudia

Member
  • Posts

    242
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Claudia

  1. Yes, I just added them the cleared cache before I submitted this
  2. I just noticed on my store and the demo that if a product has only one image then the image alt and image title does not show. Is this by design? If not how can I change this. Thanks as always
  3. 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
  4. I noticed that too. I was going to put a ticket in with Ian but got sidetracked. I'll do that now.
  5. That seems to have done it! Thank you, again, Brian
  6. This is the script I use for my files. One of the questions I have is where do I put it in the CubeCart files? <script> $('.vnb-sub-cbd').hide(); $('.has-sub-cbd').hover(function(){ $(this).children('.vnb-sub-cbd').fadeToggle(200); }); </script>
  7. template file element.navigation_tree.php <li class="has-sub-cbd"> <a class="vertical-navigation-box-link-cbd" href="{$BRANCH.url}" title="{$BRANCH.name}">{$BRANCH.name}</a> {if isset($BRANCH.children)} <ul class="vnb-sub-cbd"> <li itemprop="name" class="vnb-sub-title-cbd">{$BRANCH.name}</li> {$BRANCH.children} </ul> {/if} </li> When I say yes to expand navigation tree in store settings I get this over top my menu: I have it setup with my own files to do what I want, but I wanted to set it up thru Cubecart. Now every time I add a category, or child, I have to do it manually. I add such a varity of items I'm always adding or changing categories. More Info: The categories to the left in the image above are what shows using Cubecart with the expand categories store setting at no. I'm not using my files at all.
  8. I've changed the css in the foundation navigation files so it now acts as a vertical menu. However, I can't get it to show my "children" and I don't know where to put my script. Any help is appreciated https://www.cambargainstore.com/ {if $CATEGORIES} {$CATEGORIES} {else} <div id="vertical-navigation-box-cbd"> <ul itemscope itemtype="http://www.schema.org/SiteNavigationElement" class="vnb-top-cbd"> <li> <a href="/listed-only-on-ebay" title="Listed only on eBay" class="vm-ebay-txt">Listed only on eBay</a></li> <li> <a href="/listed-only-on-etsy" title="Listed only on Etsy" class="vm-etsy-txt">Listed only on Etsy</a></li> <!-- <li class="name"></li> <li class="toggle-topbar left"><a href="">{$LANG.navigation.title} <svg class="icon"><use xlink:href="#icon-caret-down"></use></svg></a></li> </ul> --> <!-- <section class="top-bar-section"> <h5 class="hide">{$LANG.navigation.title}</h5> --> <!-- <ul itemscope itemtype="http://www.schema.org/SiteNavigationElement" class="left"> --> <!-- <li itemprop="name" class="show-for-medium-up"><a itemprop="url" href="{$ROOT_PATH}" title="{$LANG.common.home}"><svg class="icon"><use xlink:href="#icon-home"></use></svg></a></li> --> {$NAVIGATION_TREE} <!-- {if $CTRL_CERTIFICATES && !$CATALOGUE_MODE} <li itemprop="name"><a itemprop="url" href="{$URL.certificates}" title="{$LANG.navigation.giftcerts}">{$LANG.navigation.giftcerts}</a></li> {/if} --> <!-- {if $CTRL_SALE} <li itemprop="name"><a itemprop="url" href="{$URL.saleitems}" title="{$LANG.navigation.saleitems}">{$LANG.navigation.saleitems}</a></li> {/if} --> </ul> </div> {/if} <li class="has-sub-cbd"> <a class="vertical-navigation-box-link-cbd" href="{$BRANCH.url}" title="{$BRANCH.name}">{$BRANCH.name}</a> {if isset($BRANCH.children)} <ul class="vnb-sub-cbd"> <li itemprop="name" class="vnb-sub-title-cbd">{$BRANCH.name}</li> {$BRANCH.children} </ul> {/if} </li> <script> $('.vnb-sub-cbd').hide(); $('.has-sub-cbd').hover(function(){ $(this).children('.vnb-sub-cbd').fadeToggle(200); }); </script>
  9. Which version should I be using?
  10. I have what is probably a silly question. Why does the extension chart in CC show the latest version of PayPal commerce as 1.8.5 but the extension in my admin shows version 1.9.0? Thanks
  11. Thanks Brian. I'll wait for the Github to correct this issue
  12. No I don't have that feature enabled, I don't guess. Where do I find that feature? I haven't changed anything. These emails I send are for customers I create along with their orders.
  13. Interesting ... it shows English (UK)
  14. sorry en-US no spaces. English is set as my default language in store settings
  15. en-GB shows CC Stock code en - US Shows my template Yes, It always sent my edited template.
  16. Many CC versions ago I changed some of my email templates to suit my needs. For example the Admin Order Received email. I uploaded this to the email template in admin and checked in the database and the test in admin and all my changes are there. However, when the email is sent, the stock email from CC is sent. How do I make CC send my edited template? I'm using CC version 6.5.1 Thanks Claudia
  17. That makes sense. I think I'll keep making the change instead of changing the rate rule. Thanks!
  18. As Estelle stated when she created this make a zone for zip codes and one for each state in case all the zip codes aren't covered. So I did that. I'm not sure where to make the edits for 1.0.26
  19. I just upgraded to 1.0.26 AIOS and my shipping rates are showing twice on the checkout page. This has always happened and I was given code to correct this, but I'm not sure it would work now. Here is the change from some previous version of CC. What should I do? In All in One Shipping module, shipping.class.php, near line 212, find: $this->debug(sprintf('<strong>&gt;&gt;&gt; Shipping zone [ID %s] matches the delivery address! Use this zone for shipping calculations.</strong>', $this->_all_zones[$i]['id'])); if ($this->_settings['multiple_zones'] == 'first') { $this->debug('Looking for first matching zone of best match (instead of searching for all matching zones - see AIOS module settings)'); } else { $this->debug('Searching for all matching shipping zones (instead of stopping at first matching zone - see AIOS module settings)'); } Change to: $this->debug(sprintf('<strong>&gt;&gt;&gt; Shipping zone [ID %s] matches the delivery address! Use this zone for shipping calculations.</strong>', $this->_all_zones[$i]['id'])); if ($this->_settings['multiple_zones'] == 'first') { $this->debug('Looking for first matching zone of best match (instead of searching for all matching zones - see AIOS module settings)'); $closest_match_zone_id = $this->_all_zones[$i]['id']; break; } else { $this->debug('Searching for all matching shipping zones (instead of stopping at first matching zone - see AIOS module settings)'); }
  20. I've gone in PayPal to set it up. Completed the file, downloaded it then placed it in the well-known folder as it said to do then clicked register. PayPal says it can't verify the file. Tried several times then gave up. By the by, thanks for fixing the Apple Pay issye. My error log also thanks you.
×
×
  • Create New...