Jump to content

leeofaccy

Member
  • Posts

    276
  • Joined

  • Last visited

Posts posted by leeofaccy

  1. Hi Julie

    Are you logged in when checking? If you are not logged in, the shipping shows as N/A, until you are. Or, if you haven't got, or don't want an account to checkout, you won't see the shipping cost until you fill in the shipping/invoice info etc. because you could have different rates for different places and it won't know what postage value to set until you have given an address, even if you have set a flat rate. If you already haven't done so, create a dummy account, log in, click on one of your products, Add to basket then View Basket. You should now see your shipping cost.

    Lee

  2. Hi

    Yes this is possible. You will need to edit your skins/KitaBlue/styleTemplates/content/viewProd.tpl. To move the Add to Basket higher, so it's under the product image and to the right (Basically, just higher than it is now), find the following code, around line 110

    <!-- BEGIN: buy_btn -->
    
    	<div style="position: relative; text-align: right;">{LANG_QUAN} 
    
    	<input name="quan" type="text" value="1" size="2" class="textbox" style="text-align:center;" />
    
    	<a href="java script:submitDoc('addtobasket');" class="txtButton">{BTN_ADDBASKET}</a>
    
    	</div>
    
    	<!-- END: buy_btn -->
    
    
    Cut the code and find, around line 14 this code
    
    
    
    <div style="text-align: center;"><img src="{IMG_SRC}" alt="{TXT_PRODTITLE}" class="viewProdImg" title="{TXT_PRODTITLE}" />
    
    
    Paste the first code after this. It should now look like this
    
    
    
    <div style="text-align: center;"><img src="{IMG_SRC}" alt="{TXT_PRODTITLE}" class="viewProdImg" title="{TXT_PRODTITLE}" /><!-- BEGIN: buy_btn -->
    
    	<div style="position: relative; text-align: right;">{LANG_QUAN} 
    
    	<input name="quan" type="text" value="1" size="2" class="textbox" style="text-align:center;" />
    
    	<a href="java script:submitDoc('addtobasket');" class="txtButton">{BTN_ADDBASKET}</a>
    
    	</div>
    
    	<!-- END: buy_btn --></div>

    I don't know your level of experience, so if you're not sure what you are doing PM me.

    Lee

  3. Hi

    Just check which version of PHP you are using. It looks like you are using PHP4 instead of PHP5. You should be able to check/change it through your cPanel or whatever you use on your web hosting service.

    Lee

  4. Maybe you could set up some 'drop-down' product options if your products are certain set sizes. For example, 100x250, 500x350 etc etc. You could then set the option to add to or subtract from the price depending on the size chosen. If the product isn't a certain set size, leaving the customer to choose, this isn't probably any good unless you could set a range i.e Up to 250mm £x.xx, then from 250mm up to 350mm (+£1), up to 500mm (+£2).

    Lee

    Ps Sorry about the similar posts, mustve submitted them almost at the same time :(

  5. Hi

    You need to change them through the Language tab in your Admin Panel. Languages>Front End Phrases>Content>View Basket / Checkout Pages. There you will find the Subtotal text, for example. Change the bottom one of the 2, as the top one is so you can revert back to the original text. The Language tab is where you will find all front and back-end phrases, which are listed in different categories to make them easier to find.

    Lee

  6. I checked it in IE8 and Firefox and it works fine. I've just checked it in IE7 and it is out of position. On the kitaBlue skin for example, there is a style sheet called IE7. For some reason there is not in this skin. To fix this, create a new stylesheet called IE7.css in the Carreta-Bright styleSheets folder. Create a new style called .SubmitBtn and add margin-top: -17px. Open /skins/Carreta-Bright/styleTemplates/global/index.tpl and find these lines in the Head section.

    <script>
    
     var RecaptchaOptions = {
    
    	theme : 'custom'
    
     }
    
    </script>
    
    
    
    
    Add this line after the above.
    
    
    
    <!--[if IE 7]>
    
    <link href="skins/{VAL_SKIN}/styleSheets/IE7.css" rel="stylesheet" type="text/css" />
    
    <![endif]-->
    
    
    It should now look like this...
    
    
    
    <script>
    
     var RecaptchaOptions = {
    
    	theme : 'custom'
    
     }
    
    </script>
    
    <!--[if IE 7]>
    
    <link href="skins/{VAL_SKIN}/styleSheets/IE7.css" rel="stylesheet" type="text/css" />
    
    <![endif]-->
    
    
    
    
    This should now fix your problem, hopefully!
    
    
    
    Lee
    
    
    
    Further Note: I have just clicked to 'View Basket' and there is an orange 'Add' arrow, next to the promotion code textbox. This is also out of position! To fix this open style.css. Find the style .AddBtn and change margin-top from -17px to 4px. Next, open the IE7.css file created earlier and edit the .SubmitBtn style to include the Add button. Like this
    
    
    
    .SubmitBtn, .AddBtn {
    
    	margin-top: -17px;
    
    }
    
    
    Next, open /skins/Carreta-Bright/styleTemplates/global/cart.tpl and find this in the Head section
    
    
    
    <link href="skins/{VAL_SKIN}/styleSheets/layout.css" rel="stylesheet" type="text/css" />
    
    <link href="skins/{VAL_SKIN}/styleSheets/style.css" rel="stylesheet" type="text/css" />
    
    
    Add the following lines after, same as above.
    
    
    
    <!--[if IE 7]>
    
    <link href="skins/{VAL_SKIN}/styleSheets/IE7.css" rel="stylesheet" type="text/css" />
    
    <![endif]-->

    Fingers crossed, it should now be ok :(

    Lee

    P.s. I don't know your level of experience, so if you are not sure what to do, PM me.

  7. Whats your URL? It might be easier if I take a look. I have set the same settings on a test site my end and it works fine.

    If you haven't already done so, try clearing the cache. Sometimes that works so any new settings take effect.

    Lee

  8. Hi

    First you need to enable the 'By Weight' shipping module. For this example we will use just one country, in one zone.

    1) In Zone 1 Countries, put GB.

    2) Put your Handling Fee, if using one, in the Handling Fee box.

    3) In the Zone 1 Shiping 1st Class Rates (Comma Separated) box enter 2:3.95, 15:8.00. That will give you a shipping fee of 3.95 up to 2KG and 8.00 from 2 to 15KG.

    4) Set the Tax if using in the Tax Class box.

    Not too sure what you mean with the free for personalised stuff though. You can set free shipping to be enabled over a set subtotal, or maybe By Category if you have a 'Personalised Items' category.

    Lee

  9. Hi Len

    CubeCart 4 comes with a flexible taxes section in the Taxes module. Here is the description from the tax module.

    The Flexible Taxes functionality will allow you to charge tax in multiple countries, or to charge multiple taxes (e.g. Canadian GST and PST), or to charge different tax rates based on country and county/state/zone.

    Hope that answers question 1

    Lee

  10. Hi Len

    There is a currency drop-down box that shows on the homepage etc in CubeCart, so if you plan to sell internationally you can set which currencies to show, through the Admin Panel. The rates auto-update and the customer can then click the drop-down and choose their currency, which in turn will change the prices from USD , for example, to GBP, Euros, etc.

    Lee

  11. If you set your products to £0.00 and go to 'purchase' one, the 'sale' goes through, as if you had payed, but it bypasses the payment section. The 'customer' sees the confirmation screen with the following text

    Thank you, your order was successful and payment has been made! Your goods will be dispatched as soon as possible. Please visit again soon.

    Also a Payment Recieved email is sent with the following in the body

    Dear Mr XXX XXXX,

    We would just like to inform you that payment for order number xxxxxx-xxxxxx-xxxx has cleared and you should receive your goods shortly.

    This email was sent from http://yourstore.co.uk

    Both the confirmation screen and email could be changed to whatever you would like your customer to see.

    Hope thats of some help....

    Lee

×
×
  • Create New...