applemango
Forum Replies Created
-
Many thanks for your reply but I got around this another way in the end.
Cheers!I also confirm the same issue ??
WordPress: Version 5.5.1
ACF Pro: Version 5.9.1
ACF Content Analysis for Yoast SEO: Version 2.7
Yoast SEO: Version 14.9Forum: Plugins
In reply to: [ACF Content Analysis for Yoast SEO] Text length: The text contains 0 words.I also confirm the same issue ??
WordPress: Version 5.5.1
ACF Pro: Version 5.9.1
ACF Content Analysis for Yoast SEO: Version 2.7
Yoast SEO: Version 14.9Forum: Plugins
In reply to: [Booking Package] Separate email template for user confirmationHi there, thanks for the recent update separating out the user/admin emails but I don’t see where this is? Under Calendar Settings > Emails I just see New Booking, Approval, Pending, Deletion and Cancellation?
Another feature that would be very useful is to customise the Booking Completed message that’s shown on completion.
Thanks again!
Forum: Plugins
In reply to: [Booking Package] additional currencyHi there, I’d like to request that GBP (British Pounds, displayed as £123) are also added as a currency, thank you!!
- This reply was modified 5 years, 11 months ago by applemango.
Thank you for the prompt fix!
I also have the same problem updating NF on a production site. I temporarily got round the error by adding a “maintainance” column to the wp_nf3_upgrades table but please share a fix ASAP thanks!
- This reply was modified 6 years, 2 months ago by applemango. Reason: Added temp fix
Forum: Plugins
In reply to: [uTubeVideo Gallery] Error saving the video thumbnailUPDATE: This issue disappeared for me when I made the following change to php.ini:
allow_url_fopen = on
This was actually a solution to another plugin issue, retrieving Vimeo thumbnails and this change clearly fixed both issues.
Forum: Plugins
In reply to: [Gallery - Video Gallery and Youtube Gallery] Vimeo thumbnails not loadingI should add that the thumbnail does not appear either in the admin screen or on the front end, but the video does play when clicked. There’s just a blank area in place of the thumbnail.
Thanks for the get_query_var tip. The rest I actually figured out myself in the end. I wasn’t that familiar with how the archive templates worked but now it’s all good. Thank you!
Forum: Plugins
In reply to: [Wistia WordPress Plugin] Video isn't authorizedHi there, I’m getting exactly the same errors. Did you get this working? If so please can you share what you did?
The debug option was no help as that only appears to log errors post IPN response.
Yes I created the theme myself but I solved the problem by adding a function:
function checkout_page_template( $template ) { $segments = explode('/', $_SERVER['REQUEST_URI']); if(is_page('checkout') || $segments[1] == 'checkout' ) { $new_template = locate_template( array( 'content_checkout.php' ) ); if ( '' != $new_template ) { return $new_template ; } } return $template; } add_filter( 'template_include', 'checkout_page_template', 99 );
This is probably not the best solution to this problem but it works and the client is happy. If there is another solution to this please let me know!
Yes, I’d already seen that page and that is exactly how I’ve got it set up:
PRODUCTS:
print_wp_cart_button_for_product($title, $price);CART:
print_wp_shopping_cart();Both pages render the button and the full cart okay, it’s when the underlying form is submitted (not the paypal button) that the strange behaviour occurs, loading the default template regardless of the URL.
Any ideas?
Forum: Fixing WordPress
In reply to: display custom taxonomy column on custom post add new pagehey there, if it’s still of some use i finally solved this using the following post:
Forum: Fixing WordPress
In reply to: display custom taxonomy column on custom post add new pagehi there. did you solve this?