Jump to content

leeofaccy

Member
  • Posts

    276
  • Joined

  • Last visited

Posts posted by leeofaccy

  1. You need to open your includes\boxes\topMenu.inc.php and assign the values to the text between the curly brackets that are on your \styleTemplates\boxes\topMenu.tpl

    Try this....

    <?php
    
    
    
    if (!defined('CC_INI_SET')) die("Access Denied");
    
    
    
            ## include lang file
    
            $lang = getLang('includes'.CC_DS.'boxes'.CC_DS.'topMenu.inc.php');
    
            $box_content = new XTemplate ('boxes'.CC_DS.'topMenu.tpl');
    
            $box_content->assign('LANG_HOME', $lang['topMenu']['home']);
    
            $box_content->assign('LANG_NEW_CUSTOMERS', $lang['topMenu']['new_customers']);
    
            $box_content->assign('LANG_SIGNIN', $lang['topMenu']['signin']);
    
            $box_content->assign('LANG_MY_ACCOUNT', $lang['topMenu']['my_account']);
    
            $box_content->assign('LANG_CUSTOMER_SERVICE', $lang['topMenu']['customer_service']);
    
            $box_content->parse('topMenu');
    
            $box_content = $box_content->text('topMenu');
    
    
    
    ?>
    
    
    Also, remove the comma from the end of this line in your language file
    
    
    
    
    
    'customer_service' => "Customer Service",

    Lee

  2. Hi Al

    On the product page, there should be a link that says Write Review / Comment. Once clicked the customer can then fill in their opinion on the product, then click Submit Review. In your admin panel menu, there is a link, Product Reviews. In there, you can then Publish/Edit or Delete the review/comment. Once published it should show under the product.

    If that is of no help, post your URL and we can take a look. Something may have been changed on your viewProd.inc file, as this controls the .tpl file.

    Lee

  3. Hi Alberto

    If you want just the price moving to the top, open YOUR_SKIN/styleTemplates/content/viewProd.tpl and find a line that looks something like this. It may be slightly different depending on your skin.

    		<p>
    
    		<strong>{LANG_PRICE}</strong>	<span	class="txtPrice">{TXT_PRICE_VIEW}</span> 
    
    		<span	class="txtSale">{TXT_SALE_PRICE_VIEW}</span>
    
    	</p>

    If you would like to keep the price at the bottom too, copy that code and paste it where you want it, higher up. If you do not want to keep the price at the bottom, cut the code and paste it in.

    Lee

  4. This happens because Cubecart doesn't know where you are shipping the item to, if the user isn't logged in. One customer may live in the USA and another in the UK, so it is highly unlikely that the shipping price will be the same to both customers. So, until the customer either logs in or enters an address, the shipping will show n/a. You can change this to say something different through the Language section, or there is a small 'hack' you can do if you only use a shipping module where you don't enter country codes (ISO code), such as your Flat Rate.

    Here is a link to a post on the sister site

    http://www.cubecartforums.org/index.php?showtopic=13978

    Lee

  5. Hi Sam

    There isn't anywhere to add shipping prices on the add/edit product pages. When you set the shipping price in the Per Item shipping module, each item will cost the amount you enter there, to ship. The shipping price is set in the module, not on the product page. For example, if you set the postage cost to £2.50 in the Per Item shipping module, each item will cost £2.50. If your customer orders 3 products, the shipping would be £7.50, 4 products £10, etc, etc.

    Lee

  6. Hi

    I have achieved this using CSS, but it wouldn't be very practical to explain exactly what I have done because it would be determined on the style of your site and/or what skin you are using.

    Are you ok with CSS? If so, I altered some of the styles on layout.css, between Start Cross-Browser DHTML Menu and End Cross-Browser DHTML Menu.

    Hope that helps a little :)

    Lee

  7. Hi

    If there is some code before the opening PHP tags in index.php in your store root folder, remove it, including any white space before the tags. (<?php)

    Also, upgrading your store to the latest version is a good idea and if you can upgrade your PHP version to the latest, through your webhosting control panel, do that too.

    Lee

  8. Hi

    In the admin menu, under the Documents tab, click Site Documents. Click the Add New link (Top right of page) and you can use the editor to make a new page. This will add the link to that menu. Or, if you have the page already made or you want to link to an external page, you could hard code the links into skins/YOURSKIN/styleTemplates/boxes/siteDocs.tpl

    Lee

  9. Hi

    You could set your shipping module to Tax Exempt, but add the tax into the shipping charge. ie. If your shipping cost is $1 and your tax is say 15%, set the shipping price to $1.15, then the tax is included rather than added on after.

    Lee

×
×
  • Create New...