Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. To 'tweak' settings for site docs go to your skins/your skin/styleSheets/style.css and look for: .txtSiteDocs, a.txtSiteDocs { font-family: Arial, Helvetica, sans-serif; font-size: 70%; color: #0B4492; text-decoration:none; } a.txtSiteDocs:hover { font-family: Arial, Helvetica, sans-serif; font-size: 70%; color: #000000; text-decoration:none; As for adding images this can be done in your admin control panel in Site Documents. Use the fckeditor to add your images. Please review the pinned posts in each section as your answers to most commonly asked questions can be found there.
  2. The problem is the link he has for the download is wrong. It downloads a php file and the body of the file is a text saying the download does not exist at the address. He has to change the download path to get the mp3.
  3. There's a mod for that at cubecart.org
  4. Oh boy! You might as well upload new copies of your layout.css or post the contents of the one you're using now.
  5. I had tried to help you Pete in about a dozen e-mails but you never got back to me with the required information so if you keep posting the same problem, you might not get the help you need.
  6. I'd like to see an About us or About Our Company page. Before spending money on your product I'd like to know something about your company that assures me that you are legitimate and a real person standing behind your products. The text on your home page is good to have for SEO purposes but as it is, it doesn't serve you very well. The information you provide can be added to your product descriptions. You show no meta tags like key words and descriptions and your coding being frames will not help with the search engines because there's nothing for them to spider. This is what a search engine sees now: Spidered Text : creativestate.net Your browser does not support frames. Spidered Links : No spiderable links found. Meta Keywords : No meta kewords found. Meta Description : No meta description found.
  7. How about a little information M8. Like skin you're using or a URL...anything!
  8. Add the following code to your index.tpl where you want the box to appear: <div class="boxTitleRight">Your box title here</div> <div class="boxContentLeft"> <a href="http://your link here"><img src="http://your image source here"></a> <border="0" > </div> <div class="boxFootRight"> </div>
  9. version 2 rocks solid and aku-U-da Manz
  10. Go get 'em tiger. That's the spirit!
  11. Not really! I'd probably go to one of your Google Ads stores since they have more importance on your home page than your own store. Your sub cats are all crunched together at least in Fire Fox. Your About us page is NOT about you and your Privacy Page scares me to death. Not a very professional presentation. I have to believe there is a 'company' behind this before I'd give you my money.
  12. While it is not possible to do a simple upgrade due to the differences in database structure and file structure, there is a service offered by some members that will convert the database. You can then install the latest version and import the database. It works well. Do some hunting at cubecart.org or get in touch with convict.
  13. You're doing just great. You have a nice design and now get some product images in there so we can see what it looks like.
  14. roban

    SEO query

    One of SEO's biggest problems are the web site owners themselves. They have no patience and think that if they tweak this and that, they will see an immediate benefit. IT JUST AIN'T TRUE. It takes a minimum of 3 months for a site to get indexed and that doesn't mean Google folks. They have their own way of looking at things. I spend hundreds of hours doing SEO for web sites because that's my business and I watch with great care the demographics and it still takes time. It doesn't matter what page you have as an opener if your products stink and you give your visitors no reason to buy from you, you can have the prettiest damn site on the Internet and you'll still fail.
  15. Try these: (make backups first) Open /includes/contents/viewCat.inc.php Find somewhere @ line 158 $productListQuery = "SELECT ".$glob['dbprefix']."CubeCart_cats_idx.cat_id, ".$glob['dbprefix']."CubeCart_cats_idx.productId, productCode, quantity, description, image, price, name, popularity, sale_price, stock_level, useStockLevel FROM ".$glob['dbprefix']."CubeCart_cats_idx INNER JOIN ".$glob['dbprefix']."CubeCart_inventory ON ".$glob['dbprefix']."CubeCart_cats_idx.productId = ".$glob['dbprefix']."CubeCart_inventory.productId WHERE ".$glob['dbprefix']."CubeCart_cats_idx.cat_id = ".$db->mySQLSafe($_GET['catId']); Replace it with $productListQuery = "SELECT ".$glob['dbprefix']."CubeCart_cats_idx.cat_id, ".$glob['dbprefix']."CubeCart_cats_idx.productId, productCode, quantity, description, image, price, name, popularity, sale_price, stock_level, useStockLevel FROM ".$glob['dbprefix']."CubeCart_cats_idx INNER JOIN ".$glob['dbprefix']."CubeCart_inventory ON ".$glob['dbprefix']."CubeCart_cats_idx.productId = ".$glob['dbprefix']."CubeCart_inventory.productId WHERE ".$glob['dbprefix']."CubeCart_cats_idx.cat_id = ".$db->mySQLSafe($_GET['catId'])." ORDER BY name ASC"; or this one: open includes/boxes/categories.inc.php About line 35 // query database $results = $db->select("SELECT cat_name, cat_id FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = 0"); $resultsForeign = $db->select("SELECT cat_master_id as cat_id, cat_name FROM ".$glob['dbprefix']."CubeCart_cats_lang WHERE cat_lang = '".$lang_folder."'"); REPLACE WITH // query database $results = $db->select("SELECT cat_name, cat_id FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = 0 order by cat_name"); $resultsForeign = $db->select("SELECT cat_master_id as cat_id, cat_name FROM ".$glob['dbprefix']."CubeCart_cats_lang WHERE cat_lang = '".$lang_folder."' order by cat_name");
  16. Is that version 2 or 3? If version 3 try this: 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 <!-- END: repeat_prods --> including those two lines above with this 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&productId={VAL_PRODUCT_ID}"><img src="{VAL_IMG_SRC}" alt="{VAL_PRODUCT_NAME}" border="0" /></a> <br /> <a href="index.php?act=viewProd&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.
  17. have you tried a float: left; in the #topHeader {
  18. You've just been Google f_ _ ked. Actually it's because the results come from any number of data centers and from a different data center each time.
  19. try enclosing the link in " instead of '
  20. What I have done in the past is to create the article in Dreamweaver and upload it as an html to my root. Then I create a new box with text links to the articles and have them open in a pop up window.
×
×
  • Create New...