Jump to content

Dirty Butter

Moderator
  • Posts

    6,634
  • Joined

  • Last visited

  • Days Won

    139

Everything posted by Dirty Butter

  1. You might try hard coding the url in this line of your skin/template/main.php <p class="logo"><a href="{$STORE_URL}/index.php"><img src="{$STORE_URL}/images/logos/{$SKIN_FOLDER}-{$SKIN_SUBSET}.php" alt="{$META_TITLE}" /></a></p> Be sure to back up your copy of main.php before trying thjs, as I'm a novice.
  2. Sorry for the delay in replying, that did the trick. Thanks! GREAT! Glad I could help. Happy Thanksgiving!
  3. I'd like to show the full title of each item on the Latest Products. Right now it has an ellipsis. Since Google limits length to 70 characters the titles are not very long. I can't find where the name length and use of the ellipsis is controlled. Can anyone help?
  4. I know you're busy right now trying to fix the forum. But it looks like quite a few bugs left in 5.0.5 have been squashed. Any idea when we'll see 5.0.6?
  5. What were the default strftime settings on Store Settings/Advanced?
  6. Al fixed this for us after submitting a support ticket. The problem was apparently in the files, not the email template.
  7. That worked just fine. I added this to my skin/styles/layout.css I tested it with a fake order and it seems to work perfectly. Thanks again, Viola. You have been very helpful, and I really appreciate it. .hidden {display:none; } and then changed <div class="select_register"><input type="checkbox" name="register" id="show-reg" value="1" class="" {$REGISTER_CHECKED} /> <label for="show-reg">{$LANG.account.create_account}</label></div> to <div class="hidden"><input type="checkbox" name="register" id="show-reg" value="1" class="" {$REGISTER_CHECKED} /> <label for="show-reg">{$LANG.account.create_account}</label></div>
  8. I ended up buying Goober's Product Description Tab plugin. It works beautifully. I left the Notes tab disabled, so it shows in Admin but not on the customer screen. It's also great for showing additional images without getting a long strip of thumbnails down the product listing.
  9. It's very helpful to me to see the actual image in the Product list, instead of the image icon. I know I can click on it to see the image, so that's tolerable. BUT, once I'm in the product listing it's much more awkward to see the primary image. It involves looking at the store item, right clicking on the image to see its name, going to Image in the Product listing and scanning down the image list to find the right one ... and THEN click on it to see which item it is. Rather than do that I search for the item number on the store to see which toy has been ordered so I can go pull it. VERY AWKWARD and time consuming. Is there a way to put the product image itself preferably on the General tab of Products, or on the Images tab?
  10. You're more than welcome. Good luck!
  11. What do I need to change in the box codes to get only in stock items to show in the Featured and Popular Products boxes?
  12. Are you using Save&Reload at each tab? If not, that's what I have to do to make it work. But a lot of bugs have been taken care of in 5.0.5. It's definitely worth the time to upgrade, as long as you follow the directions about deleting cache first.
  13. If you click on Documents in Admin there's a Create Document tab visible above the current document list.
  14. Each one of these has a tab for Search Engines where you can add a custom title, url, meta keywords, and meta description.
  15. If you're talking about ordering them on the Customer view that can be done by moving them to suit yourself from the Admin Categories screen. There are up/down arrows so you can drag them where you want them. But if you want them in alphabetical order when you view the manufacturers in Admin - I'd like to know how to do that, too. I've already had problems, because the new manufacturers I've added since the upgrade are listed at the bottom, not in alphabetical order.
  16. You want Robsta's "Sale Items with images" plugin for that: http://www.cubecartforums.org/index.php?showtopic=15082 I installed Robsta's free plugin, and it works as is, as long as you follow his directions to add to the common styles sheet. It will scroll a marquee, too, if that's what someone wants, with some additional provided code. <div id="sale_products"> <h3>{$LANG.catalogue.title_saleitems}</h3> {foreach from=$PRODUCTS item=product} <div class="SaleProdEa"><a href="{$product.url}" title="{$product.name}"><img src="{$product.image}" alt="{$product.name}" /></a><br/> <a href="{$product.url}" title="{$product.name}">{$product.name}</a><br /> <span class="saving">{$LANG.catalogue.saving} {$product.saving}</span> </div> {/foreach} </div> And it works with this combination of your code and his. Aparently I did have to increase the number of Sales items to show in the General Settings to 20 to get all my sales items to rotate randomly. <div id="sale_products"> <h3>{$LANG.catalogue.title_saleitems}</h3> <br/> {assign var=random value=$PRODUCTS|array_rand} <a href="{$PRODUCTS.$random.url}" title="{$PRODUCTS.$random.name}">{$PRODUCTS.$random.name}</a><br /> <div class="SaleProdEa"><a href="{$PRODUCTS.$random.url}" title="{$PRODUCTS.$random.name}"><img src="{$PRODUCTS.$random.image}" alt="{$PRODUCTS.$random.name}" /></a><br/> {if {$PRODUCTS.$random.saving}}<span class="saving">{$LANG.catalogue.saving} {$PRODUCTS.$random.saving}</span>{/if} </div> </div>} I did get a little confused when installing Robsta's plugin. I extracted it to the wrong place evidently and had to move the files to the proper plugin folder. Other than that it was great! And it's FREE!! Yea Robsta and Viola!! I love it!
  17. I have the SEO set to Replace Global Meta Data in General Settings. I accidentally noticed while checking my Google Feed that the SEO description I have set for each product is NOT being used in the feed. The correct seo_meta _description IS in the database inventory table, so the problem has to be in the files, possibly the classes/seo.class.php. This is a clean install site. I checked back several months and the August feed copy I still have also is showing the wrong description, so this does not have anything to do with one of the 5x upgrades. Can anyone offer a suggestion to fix this?
  18. I've asked for help doing the same thing here on the forum with no response, so I hope someone can give us the way to do it.
  19. Maybe it's a size or file type problem? Mine is a jpg. More likely the file has been corrupted in some way. I would delete all instances of it from your image and cache file and try uploading it again from the Logo screen. After it's uploaded you have to change the red X to the green check.
  20. I wish that it had been possible to port your old database to the new version, but the tables are just too different. You have to go the upgrade route. But you can use the trial key to make your upgrade test site with a different directory while you continue with your live version. Did you use the Logo upload screen in General Settings and enable it?
  21. It might actually be possible to do that in the template. I found a thread about it in the Smarty forum: http://www.smarty.net/forums/viewtopic.php?p=60501 So in your box.sale_items.php template file you should have a foreach loop like this: I haven't tested this myself so let us know how it goes. {foreach from=$PRODUCTS item=product} <li> <a href="{$product.url}" title="{$product.name}">{$product.name}</a><br /> {if {$product.saving}}<span class="saving">{$LANG.catalogue.saving} {$product.saving}</span>{/if} </li> {/foreach} which you would replace with this: {assign var=random value=$PRODUCTS|array_rand} <li> <a href="{$PRODUCTS.$random.url}" title="{$PRODUCTS.$random.name}">{$PRODUCTS.$random.name}</a><br /> {if {$PRODUCTS.$random.saving}}<span class="saving">{$LANG.catalogue.saving} {$PRODUCTS.$random.saving}</span>{/if} </li> It works just fine!! Thank you so much, Viola! I did take the <ul><li></li></ul> out, as it didn't seem necessary for just one product to have the little box image and the indent there. Any suggestion about how to get the photo of the current random item to show as well?
  22. FF8.0 is new. I'm not having any trouble with it. Do you have an up to date Java plugin?
  23. FireFox Addons from Mozilla. Try this page - http://www.mozilla.org/en-US/plugincheck/
  24. Since it just started do you know if all your Addon's are up to date? Or maybe the opposite - an Addon has updated and broken something?
×
×
  • Create New...