Rob Liberty
Rob Liberty
are you using the correct "renderer" in the Grid Columns? {"header": "Image", "width": "50", "sortable": "false", "dataIndex": "image",**"renderer": "this.renderImage"**}
This would be an AMAZING feature! An input field on the cart that accepts a predefined "coupon code" and subtracts an associated amount once per cart. It could use a...
not a direct solution, but I rewrote most of the cart CSS and don't us the sprites. See my CSS below: ``` /*MiniCart*/ body #PPMiniCart{position:fixed;left:0;right:0;top:75px;z-index:999; width: 95%; max-width: 400px; margin:0...
Add in a quick jQuery replace function to strip the commas before passing to cart `var noCommas = $('.money').text().replace(/,/g, '');`
Yes line 87 of `core/components/migx/templates/mgr/fields.tpl`. It used to just add a `padding:10px 0 0;` before the last update. Thanks for looking into it.
Interesting, in the short term I've removed it on my local installs without any issues. I'll look deeper into your "styling-stuff" and post back if I find a more elegant...
I noticed a new update today, awesome! I'm still wondering if these features will ever be carried over from the GUI config to the main TV editor. I'd really like...
He wants an "Edit" button and a "Delete" button next to the "Add Items" button. So you could click a row and then click the new "Edit" button to edit...
Most likely you have an extra comma where one shouldn't be, or you're missing one. An additional trailing comma on the last item is usually my culprit.