Hi,
A very obvious feature thus plugin should have fory opinion, option to lock the entire order for design after payment.
This feature is requested because, if you add the download button after payment and you don't want the client to continue designing the customized product he paid for and then keep downloading the new designed product, this is unacceptable.
Thank you in advance.
5 Votes
8 Comments
Sorted by
O
Oliviaposted
over 2 years ago
HI Danny,
i'm using FPD with Woocommerce, i had the same issue and found a way to do that.
Hello, would love to see that option too. Any news please?
0 Votes
E
Eoin Brennanposted
almost 3 years ago
Hi
Any update on this? I have same issue.
Eoin
0 Votes
D
Dannyposted
over 3 years ago
Is that possible by css or any other option?
0 Votes
D
Dannyposted
over 3 years ago
Hi,
In addition to the previous comment,
Even if I can use the css to hide product designer but show only the download button (number 2 which gives the option downloading png), will be a good solution otherwise weissed the whole point.
0 Votes
D
Dannyposted
over 3 years ago
Hi rady kal,
The one disabling pointer events is great!
But… the entire wrapper disgner freezes and when the client wants to get his product in png he can't do that because button number 2 (in the uploaded picture) is freezed too and button number 1 downloading only pdf.
How can I make the entire wrapper designer freezed but leave only the download button number 2 clickable? Or change button number 1 to download png?
Thank you in advance!
Hi, A very obvious feature thus plugin should have fory opinion, option to lock the entire order for design after payment. This feature is requested because, if you add the download button after payment and you don't want the client to continue designing the customized product he paid for and then keep downloading the new designed product, this is unacceptable. Thank you in advance.
5 Votes
8 Comments
Olivia posted over 2 years ago
HI Danny,
i'm using FPD with Woocommerce, i had the same issue and found a way to do that.
In the file : fpd/woo/class-wc-product.php
I edit the lines 225 > 247 with this code :
if( $order && $order->is_paid() ) {
FPD_Frontend_Product::$remove_watermark = true;
if( $product->is_downloadable() ) :
$dlbutton = do_shortcode( '[fpd_action type="download" layout="icon-text"]' );
?>
<style>.fpd-product-designer-wrapper{display:none !important; visibility: hidden !important;}; </style>
<span id="fpd-extern-download-png" class="fpd-blue-btn" style="display: inline-block; margin: 10px 10px 10px 0;color: #fff;"><?php echo $dlbutton; ?></span>
<?php
endif;
}
else {
FPD_Frontend_Product::$remove_watermark = false;
}
$allowed_edit_status = array(
'pending'
);
Hope this helps ;)
Olivia
0 Votes
rady kal posted over 2 years ago Admin
You can modify the CSS by applying the pointer-events only to the .fpd-product-stage:
0 Votes
AAdrien posted over 2 years ago
Hello, would love to see that option too. Any news please?
0 Votes
Eoin Brennan posted almost 3 years ago
Hi
Any update on this? I have same issue.
Eoin
0 Votes
Danny posted over 3 years ago
0 Votes
Danny posted over 3 years ago
0 Votes
Danny posted over 3 years ago
Attachments (1)
Screenshot20....jpg
50.4 KB
0 Votes
rady kal posted over 3 years ago Admin
You can do that with some custom CSS:
Hide product designer:
or disable pointer events:
0 Votes
Login or Sign up to post a comment