Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. Did you mod viewcat.tpl in your original. Just a hint here: To use Killer Silver just upload the images.
  2. It will arrange in whatever order you've set your options in your database. The value_name is what makes it arrange in alphabetical order. If you delete this, it will arrange by your database values. If you look at my teeshirt site I have product options from small to xxxlarge. Before I changed this file it went from large as the first option. You want to go to yourdb_options_mid and arrange the values the way you want them.
  3. Move the {SESSION} in index.tpl to a side box
  4. Err...Um This should be in shamelss promotions.
  5. I would backup my database in any case. Your products will still be there.
  6. To the best of my knowledge you cannot upgrade to 3.03 using Fantastico. They probably have no dea it's even available. The best way is to download the 3.03 package from this site and follow the directions. If you haven't installed mods on your site yet, it will be a piece of cake to upgrade and instructions are included.
  7. Product options are set to display alphabetically no matter what order they are in the database but here's a fix. Go to your database and order them the way you like, then do this: You need to edit /includes/content/viewProd.inc.php On or around line 154, you'll find the following: CODE // build sql query for product options luuuuuurvely $query = "SELECT ".$glob['dbprefix']."CubeCart_options_bot.option_id, ". $glob['dbprefix']."CubeCart_options_bot.value_id, option_price, option_symbol, value_name, option_name, assign_id FROM `". $glob['dbprefix']."CubeCart_options_bot` INNER JOIN `". $glob['dbprefix']."CubeCart_options_mid` ON ". $glob['dbprefix']."CubeCart_options_mid.value_id = ". $glob['dbprefix']."CubeCart_options_bot.value_id INNER JOIN `". $glob['dbprefix']."CubeCart_options_top` ON ". $glob['dbprefix']."CubeCart_options_bot.option_id = ". $glob['dbprefix']."CubeCart_options_top.option_id WHERE product =". $db->mySQLSafe($_GET['productId'])." ORDER BY option_name, value_name ASC"; (here it's multi-line to make it easier to read in the file it's one long line) At the end after the "ORDER BY", simply remove the ", value_name" (remove the comma with it). That will pull them in by the order in the database then. That's the way I did it.
  8. roban

    Button

    When you are in rich text editor to edit homepage in admin there is a button to add a button to your text. If you look at my vitamin site you'll see what I mean. I have added a 'Buy' button that links to the product. That button is called from somewhere and I can't find it. I want to change the properties.
  9. roban

    Button

    Where is the button generated from that you can call in rich text editor?
  10. Depending upon what skin you are using look in index.tpl and see if there are any extra <br> or </div> tags before your <body> tag or after your {SESSION} tag. As a temporary fix you can add <br> tags just before {CATEGORIES} which will move the boxes down.
  11. Did you upload the new global.inc? If so you should not have. You have to keep your old one or transfer the data from the old one into the new.
  12. The instructions are clear. Upload every file to the server replacing your existing ones excluding: includes/global.inc.php install/ language/*/home.inc.php (If you have made changes.) In other words do not upload the above 3
  13. did you configure global.inc for your information
  14. You can't simply run the upgrade.php, you have to upload the files in the upload folder first. As for myself I will not do this until I feel that this is a stable release.
  15. Did you configure your global.inc before uploading?
  16. That would be 'Beyond Compare' Thanks
  17. many thanks for this new release. Has every file changed? I'm wondering if it's possible to winmerge only those necessary for a modded store.
  18. roban

    Contact forn

    This is what I use. Create your document. Edit for your e-mail address, etc. Paste into document. <TR VALIGN=TOP ALIGN=LEFT> <TD COLSPAN=2></TD> <TD COLSPAN=2 WIDTH=191 CLASS="TextObject"> <P STYLE="text-align: center;"><form action="sendmail"> Name: <input type="text" name="Name"><br> Email: <input type="text" name="mailfrom"><br> Street Address: <input type="text" name="StreetAddress"><br> City: <input type="text" name="City"><br> Zip: <input type="text" name="Zip"><br> Phone: <input type="text" name="Phone"><br> <input type="hidden" name="sendtoemail" value="your e-mail address"><br> <input type="submit" value="Send Email"> </form>&nbsp;</P>
  19. IE supports hover: in links but here's a site that might help you with the rest: http://www.xs4all.nl/~peterned/csshover.html
  20. Without some code it's difficult to say but look at the width of your side boxes. Should be around 160 px
  21. File Name :: Killer Skin Gold Background with Orange Tabs Author :: roban Category :: Skins Description Gold background images for cat bar and doc bar View File
  22. roban

    add a box

    Add to skins/your skin/styleTemplates/global/index.tpl where you want box to appear: <div class="boxTitleRight">Your head-line</div> <div class="boxContentLeft"> Use the code you wish to add border="0" > </div> <div class="boxFootRight">&nbsp;</div>
  23. A very interesting site. I wonder sometimes how people get interested in what they sell. I would remove any categories with no products. With so many clicks to get through to open a product list, it's frustrating to finally find no items in a category or sub-cat. You can always add them as you get products. I would also link your Homepage to your URL and drop the /index.php. You can do this in your skin\styleTemplates\boxes\categories.tpl <!-- BEGIN: categories --> <div class="topCats"> <div class="topCatsBgRight"> <span class="topCatsBgLeft">&nbsp;</span> <table border="0" cellspacing="0" align="center" cellpadding="0"> <tr> <td class="topCatsTabLeft">&nbsp;</td> <td class="topCatsTabMid"><a href="index.php" class="txtCat">{LANG_HOME}</a></td> <td class="topCatsTabRight">&nbsp;</td> <!-- BEGIN: li --> <td class="topCatsTabLeft">&nbsp;</td> <td class="topCatsTabMid"><a href="index.php?act=viewCat&amp;catId={DATA.cat_id}" class="txtCat">{DATA.cat_name}</a></td> <td class="topCatsTabRight">&nbsp;</td> <!-- END: li --> <!-- BEGIN: sale --> <td class="topCatsTabLeft">&nbsp;</td> <td class="topCatsTabMid"><a href="index.php?act=viewCat&amp;catId=saleItems" class="txtCat">{LANG_SALE_ITEMS}</a></td> <td class="topCatsTabRight">&nbsp;</td> <!-- END: sale --> </tr> </table> </div> </div> <!-- END: categories --> Change "index.php" to "http://www. your url"
×
×
  • Create New...