Jump to content

ayz1

Member
  • Posts

    452
  • Joined

  • Last visited

  • Days Won

    12

Posts posted by ayz1

  1. This should work in the meantime if anyone wants to give it a try.

    If you want a global sale but leave already discounted items as they are just run the following queries (No need to put store into global sale mode but set to Per-Product and assumes a 10% discount is required but this can be changed by altering the SET `sale_price` = `price` * 0.9 section)

    ALTER TABLE `cc_CubeCart_inventory` ADD `sale_price2` decimal(16,2) DEFAULT '0.00' COMMENT 'Sale Price2';

    UPDATE `cc_CubeCart_inventory` SET `sale_price2` = `sale_price`;

    UPDATE `cc_CubeCart_inventory` SET `sale_price` = `price` * 0.9 WHERE `sale_price` = 0;

     

    RUN AFTER END OF SALE to reset

    UPDATE `cc_CubeCart_inventory` SET `sale_price` = `sale_price2`;

    ALTER TABLE `cc_CubeCart_inventory` DROP `sale_price2`;

     

    Best tried on a backup to test first.

  2. Just for information futher to this. I have one item Price 10.00 with Sale Price of 6.99. If you then set the store to Global Sales mode say 10% then the sale price becomes 9.00 and not 6.99 so something to watch out for, This can be a problem for some store owners and has been covered in the forum previously but don't think a solution was found.

  3. Ive just added a Sale Item category to a clean install and then put the store in Sales mode. I now have two Sale Items links on the menu. Cubecart will name a duplicate category with a C and the number of the category in my case sale-items-c2.html. Maybe the easiest way to solve this is to delete the Sale Items category altogether,

     

  4. Have you checked the image file count in the main directory to check that they have all been copied over? On a product where the image doesn't show then check to se if the image is in the folder if not then it hasn't been copied over. As long as the file exists in the source folder and the filepath is set to NULL then it should be visible.

  5. In cPanel installatron there is a V2 version which I have just tried to install but without success. I ran V3 for many years and this was very stable so was reluctant to change to V6. However things move on and V6 is a much more modern platform suitable for use on modern day devices such as mobile phones and tablets,V3 does not look good on them. Maybe give it a go it's FREE and the support on here probably already covers any issues you come accross. If not just ask for help.

  6. If you want to start from scratch you could move all your image files from their folders into the main image folder (you can do this in filemanager moving the whole folder contents at once or ftp them) and then reset the filepath in the filemanager table by running an appropriate query. You could then set up your new folders as you require.

  7. Try this

       {if isset($TAXES)}
                      <select name="tax_type" id="tax_type" class="textbox">
                         <option value="">{$LANG.common.please_select} &hellip;</option>
                         {foreach from=$TAXES item=tax}<option value="{$tax.id}"{$tax.selected}>{$tax.tax_name}</option>{/foreach}
                         <option selected="selected" value="1">Standard Tax</option>
                      </select>

    Make sure value="1" is the correct value in your setup.

  8. 2 hours ago, bsmither said:

    And is it the case that moving a site will require that SSL be switched off prior to the move? Like in CC3/4?

    I tried copying a 6.0.0 site to a test server and forgot to switch off SSL in admin I then got the security alert. I then tried copying again after switching SSL off and didn't get the security alert. So assume the answer is yes.

  9. On 17/04/2017 at 9:26 AM, jpayam said:

    I purchased the galaxyx  theme , how we can receive support for a Premium product? 
    i have sent 2 emails to seller and also use "email developer" in extension shop, after 3 weeks i have not receive any response!

    galaxyx  theme problems:

    1- GalaxyX do not show switch languages box.
    2 - register / login button do not work on tablet.

     

     

    For 2 - register / login button

    In the skins templates/box.session.php file have you got something like

    <div class="tablet-button"><i class="fa fa-sign-in"></i></div>

    If so try changing to

    <div class="tablet-button"><i class="fa fa-sign-in"><a href="http://www.mydomain.com/login.html"</a></i></div>

    For the language box I think this just needs a simple edit in the main.php file. I will look at it when I get a bit more time.

×
×
  • Create New...