Search the Community
Showing results for tags 'Question'.
-
It looks like the Advance Search page is there i Foundation, based on content.search.php - but what is the url for it? I'd like to add the link to it. Also, I have a stray link on the Search Results page that I cannot for the life of me find the source of. There is a link to our Security-Privacy page there, right above the Sort By choices that I need to get rid of.
- 41 replies
-
- cubecart v6
- question
-
(and 1 more)
Tagged with:
-
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
- 4 replies
-
- CubeCart v6
- CubeCart v3
-
(and 1 more)
Tagged with:
-
Hi, Cubecart V6.0.2 There appears to be a bug in the product display price (id="ptp") when using negative values for product options. The final price is calculated correctly at the cart but the option value is added to the display price rather than subtracted. For example; if I have a product with a price of £10 and I then create a dropdown list of size options with the smallest sizes having a product option value of negative £2 and the largest sizes having a product option value of £2, BOTH will be displayed as £12 rather than £8 when selecting the smaller option and £12 for the large. I hope I've explained it clearly enough. Any help or advice would be much appreciated. T
-
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
-
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 = " $"; // pesos $simboloD = " 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 - Cotización: ".$simbolo." ".$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." (Pesos)<h style="color:red" >Oferta</h></td>"; echo "<td class="style_titulos">Precio".$simbolo." (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&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." ".round($products[$i]['price']*$coti)." (".$simbolo." ".round($products[$i]['sale_price']*$coti).")</td>"; // FILA PRECIO if($products[$i]['sale_price']<="0"){ echo "<td class="style_activado">".$simbolo." ".round($products[$i]['price']*$coti)."</td>"; // FILA PRECIO }else{ //echo "<td class="style_activado" style="color:red">".$simbolo." ".round($products[$i]['sale_price']*$coti)."</td>"; // FILA PRECIO echo "<td class="style_activado">".$simbolo." ".round($products[$i]['sale_price']*$coti)." (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." ".round($products[$i]['price']*$coti)*$products[$i]['stock_level']."</td>"; // FILA PRICE }else{ //echo "<td class="style_activado" style="color:red">".$simbolo." ".round($products[$i]['sale_price']*$coti)."</td>"; // FILA PRECIO echo "<td class="style_activado">".$simbolo." ".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>
-
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
- 7 replies
-
- Question
- CubeCart v5
-
(and 1 more)
Tagged with:
-
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.
-
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
- 8 replies
-
- CubeCart v5
- Issue
-
(and 2 more)
Tagged with:
-
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!
-
Any reason not to use CDN's for the css/js files like jquery, foundation, etc? I'm using v6 on my store..
-
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
-
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.
- 6 replies
-
- CubeCart v4
- CubeCart v6
-
(and 1 more)
Tagged with:
-
Hi, I am doing some SEO work on my website and I am looking at headings. Does anyone know how to add these to each page, so that its recongised by google? Thanks,
-
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.
-
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.
-
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
-
Does anyone know if CubeCart or anyone else has a tax module that will support County taxes? Or taxes by zipcode?
- 4 replies
-
- CubeCart v5
- Question
-
(and 1 more)
Tagged with:
-
Hi All, Can anyone please help me to sort out this payment processing issue which I am suffering with the card save payment gateway. My shopping cart has been plugged with the card save payment gateway for the moment.Once I have been redirected to the card save gateway payment page I getting the following error. “This transaction cannot be processed. It was rejected because the passed transaction date/time has expired. Please press “Back†in your browser and resubmit the transaction.†Any help please ? Regards, Ruchira.
-
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?
-
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!!
-
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.
-
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?
-
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.
-
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!