Troy Templeman
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Image Aspect Ratio Crop Field] Failed to cropHi,
I’m getting the same “Failed to Crop” message when attempting to crop an image in wp-admin.
I also get the following console error on page load:
Failed to load resource: the server responded with a status of 500 (Internal Server Error) /***/wp-json/wp/v2/:1
After clicking the “Crop” button, I also get the following console error:
POST https://***/wp-json/aiarc/v1/crop 500 (Internal Server Error) xhr.js:184
I’m using the same versions as @guillemartin, but if I revert to version 4.1.4 of the plugin, I don’t get any errors and the crop works fine.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Price not displaying for a single WooCommerce variable productsThe problem here is that the first price area was removed so that all prices could be displayed in the second price area only. Is there a way of forcing the price to display in the second price area even when there is only 1 variation? Thanks!
OK, it’s working now.
I added:
<span class="price price-range"><? echo $product->get_price_html(); ?></span>before
<?php /** * woocommerce_before_single_variation Hook. */ do_action( 'woocommerce_before_single_variation' );in the variable.php template and added the following script:
$('.single_variation').on('show_variation', function() { $('.price-range').hide(); });I think it might be nice to have something like this as standard functionality in WooCommerce so that there’s only one spot for prices, instead of two.
Thanks again for your help Mike!
Yeah, I can see that
<div class="woocommerce-variation single_variation"</div>is hidden until a variation is selected, which displays the variation price inside this div. Do you know if/how/where I can setup a trigger for my div for price range? My javascript knowledge is pretty basic, lol.Thanks Mike. I added
<?php echo $product->get_price_html(); ?>here, which outputs the price range ok next to the “Add to Cart” button but when a variation is selected, the variation price also appears. Is there a way of switching these prices or hiding the price range after the variation is selected?Thanks!
I updated to 2.0.79 and can see the gallery thumbnails now but clicking on a gallery gives the same error “no images were found”.
Forum: Plugins
In reply to: [WP Lightbox 2] jquery errorThis worked for me too.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Missing Pages in SitemapNo, sorry I didn’t do that. I see all the pages now.
Is this a new way of displaying the xml sitemap? I seem to remember in the past that all pages would be displayed on the one page.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Missing Pages in SitemapHi Arnee,
I updated to version 4.05 but unfortunately I’m still having the same problem. I even tried deleting the plugin altogether and reinstalling. Is there something on my end I’m doing wrong?
Thanks!
Perfect, thanks!
I decided instead to simply add the My Bookings page (with my bookings shortcode) to the menu. Once they user clicks on that, they will be prompted to login. Thanks!
Thanks for the quick response. I tried disabling all other plugins and activating twentyfourteen theme but still doesn’t work. I submitted a bug report with login information as requested. Thanks!
Forum: Plugins
In reply to: [WooCommerce] Extremely High Shipping Costs with WooCommerce UPS ShippingI contacted UPS and the reason for this was an incorrect username in settings. It’s case sensitive and I had a capital letter instead of a lowercase letter. Username has to be correct in order to apply negotiated rates. I hope this helps for anyone else with the same problem.
Thanks, I’ve been looking at that. Do you know how to set it to redirect to the previous page the user was on instead of a static page that you specify? This would bring them back to the booking page/form that they were on before signing up.
Thanks, the latter was what I was looking for. However, after creating an account, is it possible for them to be redirected to booking login page/form instead of the WordPress dashboard? As a user, I think that would be the expected action. Thanks!