dunskii
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Engine GeoTarget] User location not accurateThanks for the response Brian,
Yep, that makes sense, and sound like others on the team assumed as much and have a solution.Forum: Plugins
In reply to: [Really Simple CAPTCHA] Validation error not displayingThanks that did the job
DI’m waiting for confirmation but when I added a shipping name, it was displayed again. I’m thinking there were gremlins last week.
Forum: Themes and Templates
In reply to: Group Post by date loop help!Hi Shevylinks
Just wondering what you solution to this was.
Cheers,
DForum: Plugins
In reply to: [JW Player for Flash & HTML5 Video] Video player disappearsChanging the rendering method doesn’t make a difference.
I’ve noticed the player does flash up on the screen and then disappears.
The above happens on chrome, firefox and safari
It works fine on Android Chrome.
It works fine(ish) in IE (sizing is a little odd)
Changed the theme to twenty thirteen and it works fine, so I’m guessing there’s a conflict somewhere.
Are there any know JS conflicts?
Thanks in advance
DForum: Plugins
In reply to: Select which Post/Pages to display Poll Daddy ratingsnever mind, found the answer here
https://support.polldaddy.com/rating-widget/Forum: Networking WordPress
In reply to: Dashboard running slow for 1 sub siteNevermind, did an extra update network and things are back to normal
Forum: Plugins
In reply to: [Minimum Purchase for WP E-Commerce] Unable to activate this pluginHi Vark,
Sorry for the delay in replying.
Finally had enough time to relook at this.
Just letting you know that switching to a binary upload did the trick.
I haven’t tested the new version yet, will be doing soon though.
Thanks for the help.
DHow did you get this to work in mulitsite.
I could activate it but can’t see anywhere for it settings
Cheers,
DForum: Plugins
In reply to: [The Events Calendar] Gravity Forms and The Events Calendarthis would be great ??
Forum: Plugins
In reply to: [The Events Calendar] Gravity Forms and The Events Calendarthis would be great ??
Forum: Plugins
In reply to: MarketPress Lite – images not showing in product listingdon’t know if you’re still looking into this, but I was having the same issue then found out if you click on the upload/insert media image, choose your image and make it the feature image, the image is shown. Maybe in the paid version the product thumbnail has its own form field.
DHi Marco, just confirming that it works fine with V. 2.0.5
Forum: Fixing WordPress
In reply to: Call a wp e-commerce variableNever mind I solved it. Just had to find the right bits of the shopping_cart_functions.php file
DFYI (note i haven’t added shipping)
To get QTY
$cart = $_SESSION[‘nzshpcrt_cart’];
$cart_count = 0;foreach((array)$cart as $item) {
$cart_count += $item->quantity;
}
echo $cart_count;To get sub total
foreach($cart as $cart_item) {$product_id = $cart_item->product_id;
$quantity = $cart_item->quantity;
$price = $quantity * calculate_product_price($product_id, $cart_item->product_variations,’stay’,$cart_item->extras);
$total += $price;
}
echo nzshpcrt_currency_display(($total), 1);