Jump to content

Search the Community

Showing results for tags 'Question'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • CubeCart News & Announcements
    • News & Announcements
  • CubeCart Support Forums
    • Issue / Bug Reporting & Feature Requests
    • Install & Upgrade Support
    • Official CubeCart Hosting
    • Technical Help
    • Customising Look & Feel
  • CubeCart Extension Marketplace
    • Visit the CubeCart Extension Marketplace
    • Extension Discussion
    • Developer Forum
  • General
    • General Discussion
    • Show Off

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Location

  1. Hello, When a particular customer places an order on the site the VAT is not added to the total price for some products. I have set up the store to add VAT to each product I upload automatically, and have also checked each individual products to ensure the standard tax rate applies. When I put the products in my basket the VAT is added as it should, it's just this one customer who isn't being charged VAT. I was wondering if there is an option somewhere else which could be affecting this? I've checked them in the customer list but can't see anything. Any help would be massively appreciated. I can provide any required information. Thanks very much! George
  2. Bsmither helped me a long time ago add some extra columns to the Products Summary page in Admin. products.index.php <!-- MY SALE PRICE --> <td>{$product.sale_price}</td> <!-- END MY SALE PRICE --> <td align="center">{$product.stock_level}</td> <!-- MY DISCOUNT IMAGE --> <td align="center"><img src="admin/skins/default/images/{if $product.discount}1{else}0{/if}.png" class="toggle" /></td> <!-- END MY DISCOUNT IMAGE --> I tried to search for the original thread, but no luck. The code above is getting the "empty box" 0.png image, whether an item has a quantity discount in use or not. Both images, 1.png and 0.png, are available for use. This was working before v6.
  3. Hello, I have a question. A few years ago I developed a list of automatic prodcutos with coin dollars and pesos (currency of my country) to cubecart 4. my question is, how can I transfer it to cubecart 5 ??? This is the full code <style> .style_titulos { background-color: #CEDFFF; color: #000; border-color: #FF0000; /*text-transform:uppercase;*/ text-decoration: none; border-width: 0px; background-repeat: repeat-x; font-size: 16px; } .style_activado { background-color: #7C7C7C; color: #FFF; border-color: #000000; border-width: 1px; text-decoration: none; text-indent:10px; font-size: small; } .style_activado a{ text-decoration: none; color: #FFF; } .style_desactivado { background-color: #7C7C7C; color: #B6B6B6; border-color: #000000; border-width: 1px; text-indent:10px; font-size: small; text-decoration: line-through; } .style_desactivado a { text-decoration: line-through; color: #B6B6B6; } a:visited { color: #FFFC; } a:hover { color: #EA9900; } </style> <?php ob_start(); ////////////////////////////////////////////////////// if(!defined('CC_INI_SET')){ die("Access Denied"); } permission("statistics", 'read', true); require($glob['adminFolder'].CC_DS."includes".CC_DS."header.inc.php"); ///////////////////////////////////////// require_once ("ini.inc.php"); // archivo ini, sin zlib.output_compression ini.inc.php propio require_once ("includes".CC_DS."global.inc.php"); require_once ("includes".CC_DS."functions.inc.php"); require_once ("classes".CC_DS."db".CC_DS."db.php"); //////////////////////// // BUILD SUB CATEGORIES //////////////////////// $query = "SELECT productId, ".$glob['dbprefix']."CubeCart_inventory.cat_id, name, cat_name, date_added, price, disabled, sale_price, useStockLevel, stock_level, productCode FROM ".$glob['dbprefix']."CubeCart_inventory INNER JOIN ".$glob['dbprefix']."CubeCart_category ON ".$glob['dbprefix']."CubeCart_inventory.cat_id = ".$glob['dbprefix']."CubeCart_category.cat_id ORDER BY cat_name ASC, price ASC, name ASC"; $db = new db(); $products = $db->select($query); $simbolo = "&nbsp;$"; // pesos $simboloD = "&nbsp;uSs"; // dolares //////////////////////////// // carga monedas require($glob['adminFolder'].CC_DS."includes".CC_DS."cotizacion.inc.php"); // fin moneda //////////////////////////// $coti = $currencies[0]['value']; $PESOS = number_format($coti, 2, ',', ' '); // con solo 2 decimales ///////////////////////////////////////////////////////////// echo "<table width="100%" border="0" cellpadding="3" cellspacing="1" class="mainTable">"; echo "<tr>"; echo "<td colspan="2" class="tdTitle">Estadisticas de productos - precio - stock - valorizado</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan="2">"; echo "<ul>"; echo "<li><a href="http://www.nickhard.com.ar/tienda/admin.php?_g=stats/index" class="txtLink"><< Volver</a></li>"; echo "</ul>"; echo "</td>"; echo "</tr>"; echo "</table>"; ///////////////////////////////////////////////////////////// echo "<table class="style_titulos" style="width: 100%" border="1" id="Exportar_a_Excel">"; echo "<tr>"; echo "<td class="style_activado" width="100%" colspan="6">LISTADO DE PRECIOS USO INTERNO - &nbsp;Cotizaci&oacute;n:&nbsp;".$simbolo."&nbsp;".$PESOS."</td>"; echo "</tr>"; for ($i=0; $i<count($products); $i++){ if($products[$i]['cat_id']!==$products[$i-1]['cat_id']){ echo "<tr bgcolor="#FFFFE1">"; echo "<td class="style_titulos"> :: ".$products[$i]['cat_name']."</td>"; //echo "<td class="style_titulos">Precio".$simbolo."&nbsp;(Pesos)<h style="color:red" >Oferta</h></td>"; echo "<td class="style_titulos">Precio".$simbolo."&nbsp;(Pesos)</td>"; echo "<td class="style_titulos">Stock</td>"; echo "<td class="style_titulos">Valorizado de stock</td>"; echo "</tr>"; echo "<tr>"; } /////////////////////////////// // COMIENZO DEL IF RPINCIPAL // /////////////////////////////// //////////////////////////////////////////////////// // SI EL STOCK ES 0 ENTONCES NO CREA NINGUNA FILA // //////////////////////////////////////////////////// //echo "<td id="6" style="background-color: #FFFFE1; color: #FF0000; font-weight: bold; font-size: small">".substr(strip_tags($products[$i]['name']), 0, 85)."... (NO/FUERA DE STOCK)"."</td>"; ////////////////////////////////////////////////////////// // COMIENZO SI EL STOCK ES 1 O MAYOR A 1 ENTONCES CREA LAS FILAS // ////////////////////////////////////////////////////////// //////////////////////////// // COMIENZO DEL IF OFERTA // //////////////////////////// // if($products[$i]['disabled']){ if($products[$i]['stock_level']<="0"){ ////////////////////////////////////////// // Fin productos desactivados // si el producto esta desactivado // directamente no se muestra en la lista ////////////////////////////////////////// } else if(!$products[$i]['disabled']){ echo "<td class="style_activado" ><a target="_blank" href="http://nickhard.com.ar/tienda/index.php?_a=viewProd&amp;productId=".$products[$i]['productId']."">".substr(strip_tags($products[$i]['name']), 0, 125)."..."."</a></td>"; // FILA PRODUCTO // solo ver un precio, oferta o fijo. ////////////////////////////////////////// //echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['price']*$coti)." (".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti).")</td>"; // FILA PRECIO if($products[$i]['sale_price']<="0"){ echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['price']*$coti)."</td>"; // FILA PRECIO }else{ //echo "<td class="style_activado" style="color:red">".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti)."</td>"; // FILA PRECIO echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti)."&nbsp;(Oferta)</td>"; // FILA PRECIO } // solo ver un precio, oferta o fijo. ////////////////////////////////////////// echo "<td class="style_activado">".$products[$i]['stock_level']."</td>"; // FILA PRICE // valorizado if($products[$i]['sale_price']<="0"){ echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['price']*$coti)*$products[$i]['stock_level']."</td>"; // FILA PRICE }else{ //echo "<td class="style_activado" style="color:red">".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti)."</td>"; // FILA PRECIO echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti)*$products[$i]['stock_level']."</td>"; // FILA PRICE } // valorizado /*activado desactivados funciona */ } echo "</tr>"; } echo "</table>"; ////////////////////////////////////////////// ?> <style> .navTitle2 { padding: 0px; font-size: 12px; } </style>
  4. I am trying to use the card capture but it wont show the credit card details anywhere. where do I find them at? I am using 5.2.14
  5. I guess it should be something simple I am missing but I do not see option to add custom fields(additional fields) in Products & category fields? For example I need to add a Field called "Pressing instructions" on iPad covers we are selling so want to add a field in admin to enter same for categories? I can probabbly add a field in database table and add some code to admin files to achieve that but was wondering if it already exists or any third party module ? Many Thanks, Ranika
  6. we are loving CC6 so far! we are upgrading and migrating to CC6 from years old CC3. in customers data ,we noticed new CC6 database table has additional "salt" column for each customer is it possible if we map tables of new CC exactly using old CC3 table, our old customer can login using old passwords they have? or any other method to migrate CC3 to CC6 customers? any help/hint will really help
  7. So I updated to 6.0.2 and now in my dashboard I see over lapping text. See attached. I don't think I can fix this - or maybe I can. Maybe its my PC - if its my PC then so be it - but figured i'd bring it up.
  8. Hi all, My employer has tasked me with embedding a product demo video on a product page. I've had no trouble using the YouTube video however he has decided he wants the original file embedded to remove any association with YouTube. The code I used for the YouTube version worked fine. This was: <p> <iframe allowfullscreen="" frameborder="0" height="214" src="https://www.youtube.com/embed/LbAYBlrFhjI?feature=player_detailpage" width="380"></iframe> </p> I attempted altering the "src" to the files location on our server: https://www.leegodbold.com/public_html/video/kitsoundsonar.mp4 and https://www.leegodbold.com/public_html/video/kitsoundsonar.ogv However I get several error messages telling me that the sites security certificate is not valid, please contact the webmaster etc etc. Is there another way to embed the video? A way which I wouldn't have to deal with the security certificate and such other business. Any advice, positive or negative, would be really appreciated. I'm totally stumped as it stands as I'm not yet a pro with html. Thanks very much! George B
  9. I'm working on putting the meta title/description/keywords into the databases for my pages. However in the admin section under store settings > search engine, there is meta information. Which page does this information show for? The main page or every page on the site? Also, there is an option below it for Global Meta Data Behaviour with disable/merge/replace. What does this mean? Thank!
  10. Any reason not to use CDN's for the css/js files like jquery, foundation, etc? I'm using v6 on my store..
  11. Hello, First time user here, just installed it right now. I was thinking to use cubecart as an internal webstore, for managers to order computers, mobile phones and so. So I want to disable registration from the page and only allow registration from the admin interface. Is that possible from the settings or do I have to edit the code in the header? Kind Regards, Noiden
  12. Running current 6.0.0.b7 I am having a predicament. I have my site pretty much how I want it but I have 8 vendors who supply my inventory. Each vendor drop-ships my inventory to my customers. Each vendor has a different shipping method. I thought about incorporating the price of shipping into the retail cost of the item and charge free shipping, however for some items it would not make sense since of the customer ordered three of the same item they could conceivably all be shipped for roughly the same price as a single item. Is there a method using what I have now to be able to at the very least offer a shipping method "By manufacturer?" This is something I didn't really think about before getting this far. I guess I should have. Is there anyone who can make this, or give me a good method of finding a shipping cost to items that come from multiple vendors? Any solutions will be appreciated. Christopher Rowe
  13. We have a website that was done wayback in 2011 with Cubecart version 4.4.5, Php version 5.2.17, MySql Version 5.1.68-community-log. We cannot contact the person who set up this account anymore. We are totally clueless on what to do. Our questions are: 1. How can we update our Cubecart 4.4.5 into the latest version? 2. Do we also need to update the Php version? 3. Our domain name will also expire next month, how can we renew it? 4. Lastly, why is my admin screen looks like this? Do i need to install anything? Sorry for these basic questions but we still want to continue our website. Your answers will be a great help. Thank you.
  14. Using the grid view, such as on the homepage and others optionally, the height of the listing box varies, based on the length of the product name. Either someone helped me fix this, or Blueprint took care of this automatically. Could someone suggest what needs to be done with Foundation to make all boxes the same length? I do have a maximum product title length of 70 characters, if that helps any.
  15. One of many ignorant questions I've asked - I'm working on changing the colors of Foundation to suit myself, so I temporarily changed line 20 in main.php to take out the "min". <link rel="stylesheet" href="{$STORE_URL}/skins/{$SKIN_FOLDER}/css/foundation.css"> I don't understand how "min" works. Once I've made all my cosmetic changes, do I have to make them all again in the "min" file? Or is there an easy way to minify my modified css file and use that? I see lots of entries when I searched for how to minify, but I'm not comfortable that I would do it correctly.
  16. Please explain what the following is for and what is being GETted and POSTed when having logged in to the admin (beta6): (twice) http://player.vimeo.com/video/118638908 http://f.vimeocdn.com/p/flash/flideo/1.0.3b10/flideo.swf http://js-agent.newrelic.com/nr-536.min.js (interval) http://livepassdl.conviva.com/lpconfig/cfg/c3.customerName=c3.Vimeo&c3.platform=JS&c3.sver=2.90.0.24127?random=2986278850&uuid=2227888050.3567976234.3241472536.775265431 (twice) http://bam.nr-data.net/1/689d5b4562?a=2045681,2815207&pl=1424842769231&v=536.b800686&to=NVVXNhYAWhJWBhVfCwwfcxcKAkAIWAtOQA0PVVpMBw5aFUUKDVoBEEMbAQsPQBNYCQ1TFhEKeAMND3wAWQENUxZMV1AW&be=1681&fe=1506&dc=64&f=%5B%22err%22,%22xhr%22,%22stn%22%5D&perf=%7B%22timing%22:%7B%22of%22:1424842769231,%22n%22:0,%22dl%22:1562,%22di%22:1687,%22ds%22:1750,%22de%22:1750,%22dc%22:3187,%22l%22:3187,%22le%22:3187,%22r%22:15,%22re%22:15,%22f%22:15,%22dn%22:1172,%22dne%22:1203,%22c%22:1203,%22ce%22:1218,%22rq%22:1218,%22rp%22:1359,%22rpe%22:1375%7D,%22navigation%22:%7B%7D%7D&jsonp=NREUM.setToken (four times) POST https://gwd.lphbs.com/0/lpg/msg
  17. Does anyone know if CubeCart or anyone else has a tax module that will support County taxes? Or taxes by zipcode?
  18. I'm trying to see if there is a way to create a gift certificate. The store settings gives me the option to purchase one, but I want to be able to just create them myself as well. I've looked in the database with no real solution, seems like all it shows is the same thing as my public html folder does... Any ideas?
  19. I'm playing with the latest beta 6 using a copy of my database, so there are plenty of products. On opening the homepage I saw that the prices did not have decimal points in them, so USD showed $50.00 as $5000. On going to the Currency page in Admin to see what was going on, I see that NONE of the Decimal Symbols are filled in. This seems odd to me, as I would have to look up many of these currencies to discover what to put there. I have installed 5 languages in v6. Why would CC not provide the currency settings brought over from the upgrade from v5, at least for the languages installed within v6?
  20. At one time CC didn't handle images in folders very well, so I've always kept mine in the main source folder. But now I have 6k image files. Currently using 5.2.16 for live store. Is it currently safe to move images to folders? If so, how should I go about doing it - from within Filemanager, or create folders and move images via FTP?
  21. Hi, I am wondering if it's possible when using the shipping by weight option in the module settings to have 3 option names?? If so where do you go to change this and how so?? I am pretty new to cube cart and about to put the site live so this is one final job i need to do before that can happen. Thanks in advance!!
  22. 1. What is Fuzzy Time? Mine is set to %H%M. Where is this used, and when is it to be used? 2. How is the ProductFeedAccess Password used?
  23. I'm working on modifying my renamed Foundation skin. So far I have most of the text color changes made to suit me. That I can handle, thanks to Firebug. I've played a bit with changing the size of the columns, and I do pretty well for the full screen look. But I run into trouble with all the if's for small, etc. Also, I want all the right column swapped to the left. Any explanation for how to accomplish the column changes and switching the sidebar boxes would be appreciated.
  24. The info about v6 says you can use your old skins, but I want to be sure that v6 is compatible with Fusion and Blueprint. I do intend to change to a modified Foundation skin in time, but there's no timetable for that. I have to learn a lot and modify a lot before I will make MY Foundation live.
  25. I have enabled PayPal Pro for my checkout, however I can't seem to process credit cards via PayPal. It shows a separate line for credit cards and it doesn't move them to a secure PayPal page. It pulls up another page on my site, which isn't secure and I have no idea why it's there, what it would use to process the cards or how to get rid of it.. Can someone help me? I have attached pictures as references. Thanks!
×
×
  • Create New...