Forum Replies Created
-
AuthorPosts
-
October 10, 2022 at 3:12 pm in reply to: Is it possible to add multiple variations to the wish list? #100306
Pablo Pacheco
ParticipantHi Julie,
Sorry for the delay. Would you be willing to wait a few more days so I can try to improve that?
October 6, 2022 at 10:47 pm in reply to: Is it possible to add multiple variations to the wish list? #100304Pablo Pacheco
ParticipantHi Julie,
For now, it’s not possible to add multiple variations of the same variable product. But I’ll try to improve that. If I have any news about it I’ll let you know
Pablo Pacheco
ParticipantHi Suhail,
Ok, I can take a look. Can you please describe what you want with more details?
Can you please create/share an admin account to your server (WP and preferably FTP), so I could log in and take a look? If that’s the case, you can send an email to [email protected].
September 28, 2022 at 10:58 pm in reply to: What is the difference between a filename and a permalink name? #100057Pablo Pacheco
ParticipantHi Silu,
- Filename is the real name of the file. Ex:
my-file.jpg
. Permalink is the URL pointing to the file. Ex:http://site.com/my-file
- Unfortunately, I don’t know if I’ll be able to help in that case. I can just say that the filter we’re using to rename files is
sanitize_file_name
. The WooCommerce app should be using it, as WordPress itself is.
September 16, 2022 at 9:28 pm in reply to: Is there a way to hide the original message from WooCommerce? #99946Pablo Pacheco
ParticipantHi Stefan,
Please try adding this to your Customizer > Additional CSS:
.woocommerce-notices-wrapper{ display: none !important; }
I believe it would work.
Pablo Pacheco
ParticipantHi,
First, you have to create a custom rule in the filename structure option using curly braces, like
{my_custom_rule}
. You just have to write it, in any position you want.Then you can use the filter
frou_sanitize_file_name
to create a custom function. For example, if you want to add the user id it would be something like this:add_filter( 'frou_sanitize_file_name', function($filename_infs){ $filename_infs['structure']['translation']['my_custom_rule'] = get_current_user_id(); return $filename_infs; }, 20 );
August 3, 2022 at 8:45 pm in reply to: Why is there an error when I try to add a variation to wish list? #100300Pablo Pacheco
ParticipantHi Jacob,
Can you please elaborate on your issue? I couldn’t reproduce it here.
August 3, 2022 at 8:30 pm in reply to: Why am I getting duplicate email notifications from the Stock Alert? #100298Pablo Pacheco
ParticipantHi Julian,
Can you please make sure that you’re using the most recent version of the plugin (v2.0.0)?
A long time ago I fixed a problem related to the stock alert and now I think it’s working just fine.
August 2, 2022 at 2:55 am in reply to: Why am I getting duplicate email notifications from the Stock Alert? #100296Pablo Pacheco
ParticipantHi Julian,
Is this related to the Stock alert?
Pablo Pacheco
ParticipantHi John,
You can try the
[alg_wc_wl_toggle_item]
shortcode along with theproduct_id
param. Example with a product ID of 333:[alg_wc_wl_toggle_item product_id="333"]
July 23, 2022 at 1:39 am in reply to: Why is the cookie from the plugin disabling the cache? #100292Pablo Pacheco
ParticipantHi Julian,
Please, update the plugin to version 1.9.9 I just released. I believe I was able to fix it for you. Let me know if it helps π
July 23, 2022 at 1:34 am in reply to: How to remove the item from the wish list when it’s added to cart? #100288Pablo Pacheco
ParticipantNot for now, but the item can be removed from the wish list if it gets purchased. You just need to enable the option “Wish list > Auto remove” and set the order status. Let me know if it’s important for you and I can try to develop it.
Pablo Pacheco
ParticipantGreat!
Sure, I will, thanks π
Pablo Pacheco
ParticipantPlease, try adding
zip
to the option “Advanced > Ignore file extensions“. In the end, it could be like this:tmp,log,zip
.Let me know if it helps.
Pablo Pacheco
ParticipantHi Glasul,
Sorry for the long delay. Let me try to help you. Can you please create/share an admin account to your server (WP and preferably FTP), so I could log in and check whatβs going on? If that’s the case, you can send an email to [email protected].
- Filename is the real name of the file. Ex:
-
AuthorPosts