Jump to content

boberge

Member
  • Posts

    12
  • Joined

  • Last visited

Everything posted by boberge

  1. To the developer(s): the support e-mail does not work: [email protected] I have a question I'd like to ask via an e-mail, kind of urgent. Due to non-working support e-mail, I'll drop the question here in hope someone can help out: I was following the recipe for manual installation and the quick way with token, same result-the setup page will not open from the admin page in cc, general error 5000. I’m setting up this locally for now, localhost. And in a hurry since we’re planning to go live during the weekend with a major upgrade from cc v3 to cc v6. Please give me a hint how to proceed! Anyone, please help! Edit: I've also tried to open the webpage g7cart.com, but cannot access due to security issues (which isn't really a good sign...)
  2. Hi Check your norwegian language file in admin and make sure that æ, ø and å are there. Nils If you mean the language.inc.php file, yes, they have æ, ø and å. But I cannot se the link to the menu-text, that's only text from the MySql-database, isn't it? I believe the norwegian letters are not converted correctly since they show perfectly good in the official page skrotnissen.no compared to the test-page My Webpage. -BOB No, thats not it. Log in to your admin area and there you'll find a link to languages. Click and you'll see all the languages available. Click on the norwegian flag and check if æ'ø and å is displaying properly. Nils Ok, now I got it, what you meant, Nils! I logged into the admin-page, and the Norwegian flag was shown two times (!) - next to nb and no (foldernames). I wonder why the Norwegian language-folder has changed from no to nb, but that may not be of relevanse?! Further, clicking the nb (or no)-link, shows me that the Norwegian letters is not shown correctly. Thats´s only when they are shown inside a box (from a language.inc.php-file?!) and now when showing (for instance) an header. Norwegian letters not showing correctly is also the problem when showing text from inside the MySql-database, Norwegian letters are not shown correctly. Thank´s for following-up this issue, I´m not the fastest responder myself nowadays because I´m on holiday. This also means that I cannot (and will not) access the MySql-database and look at the php-files from my currect internet-cafe location. But again - thank´s! -BOB
  3. Hi Check your norwegian language file in admin and make sure that æ, ø and å are there. Nils If you mean the language.inc.php file, yes, they have æ, ø and å. But I cannot se the link to the menu-text, that's only text from the MySql-database, isn't it? I believe the norwegian letters are not converted correctly since they show perfectly good in the official page skrotnissen.no compared to the test-page My Webpage. -BOB
  4. Hi! Anyone having problems with norwegian letters not showing correctly when upgrading database from v3 to v4? If so, and you have a solution, please tell. Here is a testpage to demonstrate what I mean: My Webpage (the menu on the left side) Thanks. -BOB
  5. Hi! You don't need to alter any "master" file, here's the solution. Find "Character Map" -- PROGRAMS -> ACCESSORIES -> SYSTEM TOOLS Find "No-brake space" between "~" and " ¡" (Times New Roman as Font will show you this) Choose "Select" and "Copy" button to copy the "No-brake space" to clipboard In the currency set-up -> paste the "No-brake space" (in you're clipboard) behind you're currency and you have solved the problem! BOBERGE :D
  6. Ok, here is maybe a lead to you guys making serious mods. I've just upgraded to 3.0.12 myself, and experience the same problem. BUT Internet explorer (7.0.5700.6CO and 6.0.2900.2180.*) does not work Opera v. 9.02 does not work Mozilla Firefox v 1.03 WORKS JUST FINE!!! Or maybe I'm just way off Hope this helps solving what seems to be a browser problem. BOBERGE
  7. Thank's for your tip, Boberge has now opened his first topic in .org (CubeCart.org Forum > General Coding / Questions > Coding Help - PHP, MySQL, (X)HTML, CSS or JavaScript) Boberge
  8. Hi! Anyone who knows how to remove prices in "category view with thumbnails" (..\includes\content\viewCat.inc.php) when product is "out of stock" (when the product has an additional "SOLD" text)? I.e. I'm aiming to show the product description and thumbnails, but want to hide the prices. I've managed to remove the prices in "detailed view" (..\includes\content\viewProd.inc.php), but not in the "category view". Im trying to use the $productResults[$i]['stock_level'] variable, i.e. only write prices when stock level > 0, but this works only if the "sold-out" product is the first product. I've tried a lot of combinations around the viewCat.inc.php script, but unfortunately without any luck A lot of thank's in advance!!! Kind regards, Boberge
  9. Maybe this is what you all want?
  10. These two small mods mods will give a "simple list when showing categories " (example): Found in skins/TEMPLATE/styleTemplates/content/viewCat.tpl here. In addition you will have to modify the "layout.css" (which really is the point, the above code only mods the list from bulleted to not bulleted) Found in skins/TEMPLATE/styleTemplates/styleSheets/layout.css Search/find the string #subCats and replace "text-align: center;" with "text-align: left;". Walla! <div id="subCats"> <dl> <!-- BEGIN: sub_cats_loop --> <dd><a href="index.php?act=viewCat&amp;catId={TXT_LINK_CATID}" class="txtDefault">{TXT_CATEGORY}</a> ({NO_PRODUCTS})</dd> <!-- END: sub_cats_loop --> </dl> I.e. change <ul> (original) to <dl> (changing from bulleted to "none"). Changing <li> (original) to <dd> will align the list to the left with one tab. <dt> is without one "tab". More details regarding list-options can be found #subCats { background-color: #EBEDFE; text-align: left ; border: 1px solid #C9CEFC; margin: 0px; padding: 3px; float: left; width: 387px; } :)
×
×
  • Create New...