Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. The name is roban R-O-B-A-N and you don't want to make me angry.
  2. Please post your includes/global.inc file. Do you have ssl enabled?
  3. Great! Glad it worked for you. Now do me a big favor and get my name right.
  4. If you have the code for your flash try using the 'source' function in fckeditor to paste your code. Also your Latest Products alignment is messy. Try this fix: In the includes/content/index.inc.php find this line: for($i=0;$i<count($latestProducts);$i++){ Replace with this code $across=4; $index->assign("TW",100/$across); for($i=0;$i<count($latestProducts);$i++){ if (!(($i+1) % $across)) { $index->assign("TXT_TR","</tr><tr>"); } else { $index->assign("TXT_TR",""); } in skins/{insert skin name}/styleTemplates/content/index.tpl replace all code between <!-- BEGIN: repeat_prods --> and CODE <!-- END: repeat_prods --> including those two lines above with this code CODE <table width="100%" border="0"><tr> <!-- BEGIN: repeat_prods --> <td width="{TW}%"> <div style="float: center; text-align: center;"> <a href="index.php?act=viewProd&amp;productId={VAL_PRODUCT_ID}"><img src="{VAL_IMG_SRC}" alt="{VAL_PRODUCT_NAME}" border="0" /></a> <br /> <a href="index.php?act=viewProd&amp;productId={VAL_PRODUCT_ID}" class="txtDefault">{VAL_PRODUCT_NAME}</a> <br /> {TXT_PRICE} <span class="txtSale">{TXT_SALE_PRICE}</span> </div> </td> {TXT_TR} <!-- END: repeat_prods --> </tr></table> The $across variable is used to specify number products across.
  5. You can join many counter programs for free. One of the good ones IMO is twatch. It's a bit more complicated to set up but there is good documentation. It needs database tables set up but that shouldn't be a problem for you. The install routine works well and you'll put a snippet of code into your index.tpl before the last </body> tag to track visitors. Google 'twatch' and let me know what you think.
  6. There is a csv import mod in commercial mods at cubecart.org
  7. In your skins/your skin/boxes/searchForm.tpl: <!-- BEGIN: search_form --> <form action="index.php" method="get"> <span class="txtSearch"><strong>{LANG_SEARCH_FOR}</strong></span> <input name="searchStr" type="text" class="searchBox" id="searchStr" value="{SEARCHSTR}" size="20" /> <input type="hidden" name="act" value="viewCat" /> <input name="Submit" value="Search Site" type="submit" class="searchBtn" value="{LANG_GO}" /> </form> <!-- END: search_form --> Add the part in red.
  8. That's MSN for you. You're seeing stats that were relevant at the time of the search. For a more comprehensive explanation of their algorithms you'll have to contact them.
  9. In your administration control panel/Site Documents/Add New Document
  10. I'm not sure what you mean. Can you post the URL.
  11. Nice tutorial Mark. The files are images and they reside in your skins/your skin/styleImages/backgrounds folder. You can either download the ones on your server by FTP, edit and upload it or make your own. In the case of Legend skin, make a new image that is 756 X 116 px, put your grass and lawnmower images in it, name it topHeader.jpg and overwrite the original image. How you make your image is a topic for another forum. I use Photoshop but you can use any good graphics editor.
  12. The advantage to buying it from your host (which I did) is the installation. Let them install it for you. I don't remember what I paid but it's worth it.
  13. It depends on what you want to edit. I use notepad2
  14. Try putting your links in using the Source function. Code as: <a href="http://wwww.whatever">link text</a> Or if you have the link added elsewhere you can usually copy/paste it in the fckeditor. Your license code is added at the admin login screen and is valid for 1 domain for life.
  15. the style you're looking for is a.txtDefault-- text for categories box "Homepage, sale items", text for products names in Popular Products box and Sale Items box and .txtContentTitle-- Main Titles like "Welcome to Cube Cart" and Catagory Titles. You can also open skins/your skin/styleTemplates/content/viewProd.tpl and edit from there for specific titles
  16. As Ansuk says or you can go into CPanel/File Manager and navigate to your file (probably in public_html/store) and delete it from there.
  17. .searchBtn -- The "GO" button for your search box. .searchBox -- box that you write in for search .textbox-- The number that shows up in the quantity box from the view cart page .submit -- The "Join Now" button for mailing list, and the "Add" button for adding product codes to shopping cart. li.bullet-- little bullets that show up for the catagories li.bulletLrg -- bullet for "tell a friend" li.num -- numbers for products in sale and popular products .txtSession -- text for "Search for" "Welcome Guest" and brackets .txtCopy-- text in info box "products 2, catagories 1, prices: US dollars" .txtSiteDocs-- text "subscribe to our mailing list" and "Email" a.txtSession, a.txtSiteDocs-- "Login" and "Register" a.txtSession:hover, a.txtSiteDocs:hover-- mouse over for "Login" and "Register" a.txtButton-- "add to basket" button on product pages, and "buy" and "More" butttons on Catagory pages a.txtButton:hover-- rollover for "add to basket" button on product pages, and "buy" and "More" butttons on Catagory pages .txtOldPrice-- This is the price which by default appears with a line struck through when the item is on sale. .txtSale-- Price that shows on Catagory Page and product page .txtOutOfStock-- Text that tells a product is out of stock. .txtSiteDocs, a.txtSiteDocs -- links at bottom of page"about us, contact us . . ." a.txtSiteDocs:hover-- rollover for links at bottom of page"about us, contact us . . ." a.txtDefault-- text for categories box "Homepage, sale items", text for products names in Popular Products box and Sale Items box a.txtDefault:hover, a.txtLink:hover, a.txtLocation:hover -- rollover text for categories box "Homepage, sale items", text for products names in Popular Products box and Sale Items box .txtContentTitle-- Main Titles like "Welcome to Cube Cart" and Catagory Titles .txtBoxSave-- color of the text in the Sale box that says how much they save .tblList-- main area on catagory pages where the list of products is .tdListTitle-- text inside the main area "Image Description Price" .tdEven-- background color for the first product listed then every other one .tdOdd-- background color for the second product listed then every other one .txtCartPrice-- text for dollar amounts that show up in cart box on homepage- per item, items in cart and total prices- .txtCart -- Text "items in cart" and "Total" in cart box on homepage .cartTotal-- included dashed line that appears in cart box on homepage a.txtCartProduct:active, a.txtCartProduct:link, a.txtCartProduct:visited-- text for Products in cart box on home page a.txtCartProduct:hover-- roll over for text for Products in cart box on home page a.txtviewCart:active, a.txtviewCart:link, a.txtviewCart:visited -- text for "veiw basket" button in cart box on homepage a.txtviewCart:hover -- roll over for text for "veiw basket" button in cart box on homepage .cartProgress -- text inside cart that progresses as you go through check out "Cart--- Address--- Payment --- Complete" .txtcartProgressCurrent -- this is the text color that shows up for the page that you are on in the progression of the cart, for example when you are on the address page, address is this color and the rest are the color you specified for .cartProgress .quickBuy-- Inside cart txt that asks " Want to add more items? Enter the Product Code:" .tdcartTitle -- txt Inside Cart at the top "Qty, Product, Code, Stock, Price, Line Price" .tdcartEven-- background color for second product inside cart and every other one .tdcartOdd -- background color for the first product inside cart and every other one .tdCartSubTotal-- includes line above subtotal a.txtCheckout-- text and box for "continue" button on cart pages a.txtUpdate -- text and box for "update cart" button on cart pages .txtStockWarn-- text for when an item is out of stock .txtError -- text for when someone messes up while filling out information during cart process .txtCopyright, a.txtCopyright -- text for Copywrite info at bottom of page a.txtCopyright:hover-- roll over for Copywrite info at bottom of page .dropDown-- width of drop downs Layout.CSS for Classic Skin body -- entire window attributes #pageSurround-- large floating window inside window #topHeader-- top section of page surround .boxTitleLeft, .boxTitleRight -- top area of boxes in left and right columns where title appears .boxContentLeft, .boxContentRight-- main area of boxes in left and right columns .colLeft -- left column attributes or positioning .colMid -- middle large column attributes or positioning .colRight-- right column attributes or positioning .boxContent-- middle columns box (where to change colors, background, borders, and some text) .colLeftCheckout -- check out pages positioning for left column .colMainCheckout -- checkout pages positioning for main column .siteDocs -- positioning and attributes for box at bottom that contains "About Us | Contact Us | Privacy Policy | Terms & Conditions" .pagination -- main large box on catagory pages .regSep-- the "need to register?" box in checkout
  18. try <div float="left">{SESSION}</div> Coding may be off but if it is someone will flag it.
  19. I would save your images, skins folders, includes/global.inc, language/your language/home.inc and of course your database
  20. You're welcome and it's been posted before.
  21. Pay Pal has worked for me ever since I started using it. I'm pleased someone finally has debugged this and lay the blame where it belongs. Thank you.
×
×
  • Create New...