XLPlugins
Forum Replies Created
-
Hi there,
It seems there is some footer HTML that theme is trying to hide via CSS but unable to since we don’t allow theme’s CSS to come up on Canvas templates.
Can you please add this snippet in theme’s functions.php and confirm if issue resolves?
Thanks
Hi there,
Couple of points:
1) No you do not need a specific URL such as order-received to show the thank you page. It will work with any URL you set, see this screenshot
2) In general, we have our own Custom Post Type for showing thank you page , and slug of POST Type can be managed from General>Permalinks>Thank You page setting.
3) If you need to change the permalink of individual Thank you page, click on Edit of the thank you page step and look for pencil icon to edit the URL.
Hope it clears the doubt.
Let us know if any further questions.
Hi there,
It seems that there is some Custom CSS coming up that is overriding.
Would you be able to provide link to checkout.
In case that is not possible here, please send a support ticket here:
https://buildwoofunnels.com/support/Thanks
Hello @alice85
We maintain a high standard of support and service.
I am seeing no support ticket or pending request with Alice name in our account.
As you mentioned you have contacted the support earlier. Can you send us the ticket ID or subject line or reply on the same thread with a link to this topic.
We will be happy to look into it and resolve any issues.
Let us know.
Forum: Plugins
In reply to: [NextMove Lite - Thank You Page for WooCommerce] Google customer reviewsHi @random775,
We need your site details.
So kindly do raise a support ticket here https://xlplugins.com/support/.
We monitor support tickets through the support desk every hour.
Please share the site details and query with screenshot in our support desk on above given link
Hi @bhavingohil,
Yes there is a feature in Nextmove for putting the recorded video as shown in the image https://i.imgur.com/nUKlXsl.png.
But the recorded video should be some where on the online platform and then you can put the link in the video component of the Nextmove plugin.
For more kindly go through the docs once : https://xlplugins.com/docs/nextmove-woocommerce-thank-you-page/getting-started/
Let us know if any other query.
Forum: Plugins
In reply to: [NextMove Lite - Thank You Page for WooCommerce] Google customer reviewsHi @random775
To add custom js to Nextmove kindly go through the docs file once :
https://xlplugins.com/docs/nextmove-woocommerce-thank-you-page/how-to/add-custom-javascript-events-thank-page/Let us know if any other query.
Hi @rauldangelo,
I’m sorry but I didn’t get you clearly.
kidnly raise a support ticket here https://xlplugins.com/support/
We monitor support tickets through the support desk every hour.
Please share the site details and query with screenshot in our support desk on above given link
Hi @pako69,
There might be some setting issue because it’s working fine at our end as well as our other users end.
You mentioned that user has not been created in WP. It’s simply suggest that you have not enabled the option to make the account during checkout.
If you are still unable to find it out then you can raise a support ticket here https://xlplugins.com/support/
We monitor support tickets through the support desk every hour.
Please share the site details and query with screenshot in our support desk on above given link
Hi @careerbuggy,
Email verification plugin is meant for user who are making account on your site.
This does not verify social login emails.
Are you getting prompt for verifying social login email?
Kidnly do raise a support ticket here https://xlplugins.com/support/
Please share the site details and query with screenshot in our support desk on above given link.
We monitor support tickets through the support desk every hour.
Forum: Plugins
In reply to: [User Email Verification for WooCommerce] API supportHi @madhursatija,
Sorry, currently there is no support for Rest API endpoints.
May I know the purpose for this?
Let us know if any other query.
Hi @nbdevelopgreece,
We need some more details so kidnly raise a support ticket here https://xlplugins.com/support/
We monitor support tickets through the support desk every hour.
Please share the site details and query with screenshot in our support desk on above given link
Hi @nbdevelopgreece,
May I know which hook you are using on functions.php file to get product details like regular price, sale price etc.
I cannot see any hook in the above code.
Let us know.
Hi @nbdevelopgreece,
Okay got you.
Try this :
$product = wc_get_product( $ID );
$normal_price = $product->get_price();
echo $normal_price; //it prints normally$finale_sale_price = add_filter(‘wcct_finale_discounted_price’,’custom_finale_sales_price’,10,3); //what must I do to get the finale sale price here?
echo $finale_sale_price;//I also tried (with no result)
//to get first variation
$product_variations = $product->get_available_variations();
$variation_product_id = $product_variations [0][‘variation_id’];
$variation_product = new WC_Product_Variation( $variation_product_id );//based on first variation get regular and sale price
echo $variation_product->regular_price; //displays regular price normally
echo $variation_product->get_sale_price; //empty
echo $variation_product->get_variation_sale_price; //empty
print_r($product->get_variation_prices()); //displays an array with variations all of them with the regular prices
echo $product->get_variation_regular_price(min,false); //displays regular price normally
echo $product->get_variation_sale_price(min,false); //displays regular price
echo $product->get_variation_price(min,false); //displays regular priceI have added $finale_sale_price = add_filter(‘wcct_finale_discounted_price’,’custom_finale_sales_price’,10,3) in the code.
Let us know if it doesn’t work.
Hi @nbdevelopgreece,
There’s a filter hook in Finale which you can use to get the Finale’s discounted price.
This filter is ‘wcct_finale_discounted_price’.
Use this in functions.php file as following :
add_filter(‘wcct_finale_discounted_price’,’custom_finale_sales_price’,10,3);
function custom_finale_sales_price($sale_price,$regular_price,$product_id){
$s_price = $sale_price;
$r_price = $regular_price;
if(‘ ‘!=$s_price)
{
return $s_price;
}
else
{
return $r_price;
}
}Let us know if you have any other query.