Will there be consideration for HPOS Compatability in the future?
]]>Hi there,
I received an email from Wordfence saying, ‘Critical Problem: The Plugin “YITH Custom Thank You Page for WooCommerce” has been removed from www.remarpro.com.’ It doesn’t provide any more detail.
When I go to edit my custom thank you page I get spinning wheels for the content blocks.
Can you please advise how to fix this, or is it even possible if it’s been removed? I’m very confused.
Thanks,
Jules
What filters/hooks etc would need to be used to add URL parameters to the end of all the thank you page URLs?
I need billing first name, billing last name, and billing email like this:
https://myshopname.com/thank-you-for-shopping-with-us/?order-received=2272&key=wc_order_sweUP1cutEjET&ctpw=2176&[email protected]
I need to know where to start. Thanks in advance
]]>I have an issue with your plugin, using the thank you page all the checkout values that has to be sent to analytics (like euros etc.) aren’t sent. I tried deactivating your plugin and the transaction values manage to reach analytics.
Is there a solution?
]]>Hi team I have issue with payment method ruls, that is not working even if I not set general page this is the rule:
this is general settings:
please note that I had tested with general page and without general page.
]]>Hi I’m having issues with a website I’ve been asked to troubleshoot.
When trying to edit some pages a critical error occurs which seems to be linked to the Yith Custom Thank You Page plugin.
There has been a critical error on this website. Please check your site admin email inbox for instructions.
Learn more about debugging in WordPress.
The same critical error also shows when editing a woocommerce product when clicking on the custom thank you page link at the bottom.
The custom thank you pages have largely been done with elementor. Are there compatibility issues between the two or is something else likely to be the issue.
Also received an automated email which contained text below (URIs slightly redacted), many thanks for any help you can provide;
Since WordPress 5.2 there is a built-in feature that detects when a plugin or theme causes a fatal error on your site, and notifies you with this automated email.
In this case, WordPress caught an error with one of your plugins, YITH Custom ThankYou Page for Woocommerce Premium.
When seeking help with this issue, you may be asked for some of the following information:
WordPress version 5.6.2
Current theme: BuddyBoss Child (version 1.0.0) Current plugin: YITH Custom ThankYou Page for Woocommerce Premium (version 1.3.1) PHP version 7.3.27-1+0~20210211.76+debian9~1.gbp8355b8
Error Details
=============
An error of type E_ERROR was caused in line 827 of the file /home/.../public_html/wp-content/plugins/yith-custom-thankyou-page-for-woocommerce-premium/includes/class.yith-custom-thankyou-page-admin-premium.php. Error message: Uncaught Error: Call to a member function get_type() on bool in /home/.../public_html/wp-content/plugins/yith-custom-thankyou-page-for-woocommerce-premium/includes/class.yith-custom-thankyou-page-admin-premium.php:827
Stack trace:
#0 /home/.../public_html/wp-includes/class-wp-hook.php(287): YITH_Custom_Thankyou_Page_Admin_Premium->yit_ctpw_add_panel_tab_content('')
#1 /home/.../public_html/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array)
#2 /home/.../public_html/wp-includes/plugin.php(484): WP_Hook->do_action(Array)
#3 /home/.../public_html/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php(53): do_action('woocommerce_pro...')
#4 /home/.../public_html/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php(33): include('/ho
]]>
Hello
I installed it and configurated a thank you page for my main language. Then when I swap to other languages, the thank you page to be selected is empty, even if the thank you page has been translated and published in all language.
If I select a thank you page in any lanugage, the page selected in main language disappear.
If I select a thank you page in main languge, and make a purchase in other language, the translation of the thank you page is called, but is empty. only the elementor elements are present but nothing from cart.
Did we miss somthing here ?! thx.
Hi, I have Yith custom thank you page plugin installed in my website.
The Thank you page is displayed after checkout however, the traditional woocommerce thank you page is displayed below my custom page.
Please advice why this could be.
How I can display sellers information in custom thank you page. We have customers information showing, but how can we show sellers information ?
Any help will be highly appreciated.
Thank you
]]>Hello..
The plugin works perfectly in the principal language but if i change to the second language the thank you page don’t include the Order Details.
I use WPML to translate.
Tank you in advance for your help.
]]>Hello
I use your plugin “CUSTOM THANK YOU PAGE”. This overwrite or replace the standard Woo checkoutpage.
I need to load a script on the checkout page to enable the affiliate tracking. See below:
https://sc.tradetracker.net/implementation/overview?f%5Btarget%5D=merchant&f%5Bname%5D=General&f%5Bv…
This script is not working anymore with Custom thankyou page enabled. I hope you can help me to get this script working with your plugin enabled.
I add the following codes to my WP
CODE1
to file: woocommerce/includes/wc-template-hooks.php
add_action(‘woocommerce_thankyou’, ‘tradetracker’);
CODE 2
to file: /wp-includes/functions.php file
function tradetracker($order_id)
{
$campaignID = ‘#ID’; // Enter your campaignID as provided by TradeTracker.
$productID = ‘#ID’; // Enter your productID as provided by TradeTracker.
// *****************
$order = new WC_Order($order_id);
$transactionID = htmlentities($order_id, ENT_QUOTES);
$transactionAmount = htmlentities((float) $order->order_total – (float) $order->order_shipping – (float) $order->order_discount – (float) $order->order_tax);
echo “<script type=\”text/javascript\”>
var ttConversionOptions = ttConversionOptions || [];
ttConversionOptions.push({
type: ‘sales’,
campaignID: ‘{$campaignID}’,
productID: ‘{$productID}’,
transactionID: ‘{$transactionID}’,
transactionAmount: ‘{$transactionAmount}’,
quantity: ‘1’,
descrMerchant: ”,
descrAffiliate: ”,
currency: ”
});
</script>
<noscript>
</noscript>
<script type=\”text/javascript\”>
(function(ttConversionOptions) {
var campaignID = ‘campaignID’ in ttConversionOptions ? ttConversionOptions.campaignID : (‘length’ in ttConversionOptions && ttConversionOptions.length ? ttConversionOptions[0].campaignID : null);
var tt = document.createElement(‘script’); tt.type = ‘text/javascript’; tt.async = true; tt.src = ‘//tm.tradetracker.net/conversion?s=’ + encodeURIComponent(campaignID) + ‘&t=m’;
var s = document.getElementsByTagName(‘script’); s = s[s.length – 1]; s.parentNode.insertBefore(tt, s);
})(ttConversionOptions);
</script>”;
}
Hi,
I have used the plugin to redirect to a custom page after checkout. However, the default order details page displays right below the custom page once an order is placed. Is there a way to remove this and have only the custom page?
Thanks!
]]>I have the priority set to “product” in the settings
I have a custom page setup for general orders
and 3 products use a “product” defined page, selected in the page back-end
Yet for these 3 products, I’m still re-directed to the general page?
Why is this?
Ive tried with the basic theme and no plugins, still the same issue
]]>Hi, GTM4WP doesn’t work using a custom typ created with this plugin!
]]>Hi,
I have the free version of the plug in.
After passing an order as a customer, I get this page https://foglietto.fr/merci-pour-votre-commande/?order=2840&key=wc_order_F2mlbE70JlVj5&ctpw=2138 instead of this one https://foglietto.fr/merci-pour-votre-commande/.
The setting in the plug in is right though. I don’t understand from where the problem is coming from…
]]>Hi,
For some reason, users who place orders are not being redirected to the thank you page upon placing an order/payment received.
Could you please let me diagnose the issue?
Thank you
]]>Maybe is not with Divi the problem? I don’t know, but I needed to asign another page for to checkout, and this page is built with Divi Builder. The checkout process it stays working a long time until at end says that it has been redirected too many times and the page goes blank. I have all the latest versions of WP, themes and plugins.
]]>Where I translate the text?
]]>After the last elementor update release your plugin conflicts with elementor.
The widget bar not load.
If i deactivate your plugin all working.
]]>Hi,
This plugin is not working with this leader sale theme from themeforest:
https://themeforest.net/item/thegem-creative-multipurpose-highperformance-wordpress-theme/16061685
Does not matter if I set a custom page to show after order finish, when customer finish the order and back to store it always go to this simple plage:
https://i.imgur.com/85xZqKW.png
In custom page I add this:
[yith_orderreview_header]
[yith_orderreview_table]
I’m not using transparent checkout, the customer goes to my payment gateway and then go back to the store with a custom link that I set something like this:
https://www.mysite.com/my-custom-page/?transaction_id=4FC0CA60-A1CA-49D9-BA6B-F10148B71FD1
But if I do this the custom page is showing empty, the plugin is not showing the order details for customer!
]]>Hi,
On the version 1.1.4, the custom thank you page for variable product is not working. after placing an order, it redirects to general thank you page. I also tested with your plugin demo site.
Please solve this issue.
]]>I am using payumoney gateway with woocommerce. I have to set a thank you page with their plugin which makes this plugin not working. How to solve this issue.
]]>Hi,
when the plugin is active, Google Analytics cannot track the conversion, something is spoiled by the plugin…
What could be wrong?
Thanks in advance!
]]>Hi!
First of all thank you for a great plugin ??
I’m trying to change the language to Swedish and have followed all these steps thoroughly:
https://docs.yithemes.com/yith-custom-thank-you-page-for-woocommerce/localization/manual-localization/
But it just doesn’t want to work for me… ??
I have WordPress 4.9.8
Woocommerce 4.9.8
PHP Version: 7.0.30
Yith Version 1.0.7
https://ibb.co/n19a2e
I have choosen Swedish(Svenska)
https://ibb.co/fTPm8K
The translation, for example the “Custom CSS”
https://ibb.co/iVrKvz
The “Custom CSS” doesn’t change. Same thing for all other translations.
https://ibb.co/gTwV2e
https://ibb.co/gOBoNe
The files in the: public_html/wp-content/plugins/yith-custom-thank-you-page-for-woocommerce/languages
I don’t know what I’m missing :/
Would really appreciate some help
Best Regards
Dominic
This plugin causes the composition on the Avada theme to crash when using the YITH short codes. Crash means the footer and all the content below the header is blank when previewed. Rather using Fusion Builder or strictly the default WordPress editor in text mode, the Thank You plugin’s short codes simply don’t work with the world’s most used theme: Avada.
]]>Hi guys,
I’m using the plugin on three websites, but on all of them people don’t get redirected to the page. They get an error with too many redirects. I have updated all the plugins and only when deactivating this plugin, did the error go away.
How can this be solved? Thanks in advance!
]]>I am using the trial version of the custom thank you page plugin before deciding to buy but it appears that replacing the default confirmation page breaks the hook into the WordPress filter woocommerce_is_order_received_page:
https://docs.woocommerce.com/wc-apidocs/source-function-is_order_received_page.html#211 This filter should return “true” on the custom order received page.
Is there a fix for this please?
]]>Hi,
When activating the plugin the payment method text and order details disappear.
You can check on the provided link https://staging-yonilife.kinsta.com/cs/obchod/
It is a staging area, so feel free to make test order to see for yourself.
]]>Hi there,
Very useful plugin! In the free version I got these errors (see link below). Am I doing something wrong?
Or the text:
Notice: id werd verkeerd aangeroepen. Producteigenschappen mogen niet rechtstreeks aangeroepen worden. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/Avada/100-width.php'), the_content, apply_filters('the_content'), WP_Hook->apply_filters, call_user_func_array, YITH_Custom_Thankyou_Page_Frontend->yith_custom_thankyou_page, do_action('yith_ctpw_successful_ac'), WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, YITH_Custom_Thankyou_Page_Frontend->yith_ctpw_table, include('/plugins/yith-custom-thank-you-page-for-woocommerce/templates/woocommerce/yith_ctpw_table.php'), WC_Abstract_Legacy_Product->__get, wc_doing_it_wrong Lees alles over foutopsporing in WordPress voor meer informatie. (Dit bericht is toegevoegd in versie 3.0.) in /home/hosting/revealyourdreams/WWW/wp-includes/functions.php on line 4138
Could be useful, but not in it current state.
2 errrors
WARNING: _() EXPECTS EXACTLY 1 PARAMETER, 2 GIVEN WOOCOMMERCE/YITH_CTPW_TABLE.PHP ON LINE 6
WARNING: _() EXPECTS EXACTLY 1 PARAMETER, 2 GIVEN WOOCOMMERCE/YITH_CTPW_CUSTOMER_DETAILS.PHP ON LINE 1
]]>