Jump to content

ayz1

Member
  • Posts

    452
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by ayz1

  1. Still some strange behaviour. Can you check the code you have added and make sure you change the https to http RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
  2. Well, it's not redirecting now so you have changed something. Try adding RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L] below IndexIgnore * I've edited this to remove the https
  3. I've just tried it and directknifesales.com is redirecting to www.directknifesales.com
  4. Isn't it already in the list further down? Maybe needs sorting in date order?
  5. A couple of things you can take a look at. Firstly there is a plugin available at https://www.cubecart.com/extensions/plugins/mailchimp Secondly there is some info on the mailchimp website at https://kb.mailchimp.com/lists/signup-forms/add-a-signup-form-to-your-website
  6. I usually go to the customers record in admin. In the General section you can set a new password, email it to the customer but recommend they change it once they have logged in.
  7. The file is in the skins/foundation/js folder
  8. Yes it was never going to be that easy. I've tried a few different ways to get it to work. It is a required field in the database and I switched that off. I turned off recapcha and still no joy so like you said there is something else going on somewhere. Hopefully someone with more knowledge than me will have a solution for you. I removed $.validator.addMethod("phone", function(phone, element) { phone = phone.replace(/\s+/g, ""); return this.optional(element) || phone.match(/^[0-9-+()]+$/); }, $('#validate_phone').text()); $.extend(jQuery.validator.messages, { required: $('#validate_field_required').text() }); from the js/3.cubecart.validate.js file and it allowed registration without a phone number. Don't know if it has any other implications anywhere but it seems to work.
  9. you could try <div class="row"> <div class="small-12 large-8 columns"><label for="phone" class="show-for-medium-up">{$LANG.address.phone}</label><input type="text" name="phone" id="phone" value="{$DATA.phone}" placeholder="{$LANG.address.phone}"></div> </div>
  10. Do you need to add some html to the page in addition to the script in the <head></head> section? If so then it will need to go in the content.product.php file somewhere I can find it in your homepage but not your products page.
  11. If you have added the script between the <head and </head> tags in the main.php file then it should appear on every page. If not only thing I can think is that it's maybe a chaching issue. I've had a look at your website and the script is on the product pages. Can see what you mean now. Although the script is there the ad isn't showing on the product pages.
  12. Not sure what kind of picture gallery you had in mind but I have tried these in Cubecart and they appear to work OK. https://www.w3schools.com/w3css/w3css_slideshow.asp
  13. public_html/skins/foundation/templates/content.checkout.php I think you need to add your text above or below <h2>{$LANG.checkout.your_basket}</h2>
  14. Try adding a new coupon and test it to see if it works. If it does then the easiest way might be to delete all the old coupons in the database and set them up again.
  15. Can you try using a different skin to see if you get the same problem. If you don't then it is most likely skin related if you do then it looks like a possible .htaccess issue.
  16. The coupon info is stored in the CubeCart_coupons table in your store database. Don't know why they aren't visible but I would guess if you want to stop a code being used you could delete the relevant code record from the coupons table. Always back up your database before editing it.
  17. Is this any help? https://forums.cubecart.com/topic/51262-link-to-static-page-fails/#comment-217644
  18. I think that code just sets the button to active, dont think it makes the layout change. I tried changing that last night myself and it didn't change the layout at all. Below that there appears to be two blocks of code one for the list view and one for the grid view. I think these might be the other way around in the Galaxy skin (hard to tell not having a copy). Maybe using the code from an appropriate foundation skin might be worth trying. The foundation skin on the cubecart demo defaults to list view whereas the Galaxy demo defaults to grid view.
  19. Try backing up the content.category file and copy in the file from the foundation skin.
  20. Mine does seem to default to list view. If you do a file compare on your skins/skinname/content.category.php file with the one in the foundation skin then you might get an idea of what you need to edit. Alternatively you could back up your original file and copy the one from foundation to see if that works.
  21. In the help it states Linked Account: Allows your admin account to be linked to an account on the front end. To add an account, just type in the name and the auto-search will list applicable account names. Why I do not know.
  22. Various ways to do this but you can try <img style="float: right;" src="https://www.aromaworx.com/_images/paypal.jpg" />
  23. Never use it for that reason. You can get one at http://www.web-site-map.com/ for active links. Using either method for a sitemap on an ecommerce website is not idea because there will be some products that will come back into stock that you might want to keep in the index.
  24. Loaded no problem when I tried on a tablet and a mobile phone.
×
×
  • Create New...