Forum Replies Created
-
AuthorPosts
-
Pablo Pacheco
ParticipantHi,
Please try enabling the option “General > Open comments” and let me know if it helps.
Pablo Pacheco
ParticipantHi Jin,
Sorry for the delay. I couldn’t see the screenshot. Can you please try it again using a different theme, just temporarily?
Can i embed the discussions section to other tab via shortcode or other way?
I must say the plugin was not designed to work like that. Iām not sure if it will work 100% this way. But you can try something like this:if ( class_exists( 'Alg_WC_Products_Discussions_Tab' ) ) { echo alg_wc_products_discussions_tab()->core->get_comments_template(); }
June 17, 2022 at 9:59 pm in reply to: Do you provide a discount to non-profit organizations? #100046Pablo Pacheco
ParticipantHi Glasul,
Sorry for the delay. We’ve replied to you by email.
Pablo Pacheco
ParticipantHi Stephen,
Sorry for the delay. I believe I was able to fix it for you on version 1.9.8 I just released.
Please update the plugin and let me know if it helps šPablo Pacheco
ParticipantHi,
You could probably try to add this:
if ( class_exists( 'Alg_WC_Products_Discussions_Tab' ) ) { echo alg_wc_products_discussions_tab()->core->get_comments_template(); }
I must say the plugin was not designed to work like that. I’m not sure if it will work 100% this way. But of course you can try š
May 11, 2022 at 11:30 pm in reply to: How to switch from FontAwesome to some other solution? #100284Pablo Pacheco
ParticipantHi John,
Sorry for the delay. Yes, there are 2 ways.
1 – You can choose what will be the css classes for the new icons by adding this to your
functions.php
:add_action( 'alg_wc_wl_locate_template_params', function ( $params, $final_file, $path ) { $params['btn_icon_class'] = 'new-icon-class'; $params['btn_icon_class_added'] = 'new-icon-class-when-item-is-added'; return $params; }, 10, 3 );
add_filter( 'alg_wc_wl_fa_icon_class', function ( $class, $icon ) { switch ( $icon ) { case 'facebook': $class = 'fab fa-facebook-square'; break; case 'twitter': $class = 'fab fa-twitter-square'; break; case 'google_plus': $class = 'fab fa-google-plus-square'; break; case 'email': $class = 'fas fa-envelope-square'; break; case 'copy': $class = 'fas fa-copy'; break; case 'remove_btn': $class = 'fas fa-2x fa-times-circle'; break; } return $class; }, 10, 2 );
2 – You can override the template files present in the
templates
folder and add the new icons there manually. You could do that by copying the files from there and pasting it into a newwish-list-for-woocommerce
folder you’d have to create inside your theme folder or preferably, your child theme folder.Here are two topics from similar questions that could help:
– https://wordpress.org/support/topic/fontawesome-11/
– https://wordpress.org/support/topic/the-wish-list-is-empty/Pablo Pacheco
ParticipantHi,
This is just to inform that since v1.3.4 of the Pro version, there will be a new compatibility option with WPForms.
Pablo Pacheco
ParticipantHi Hemligg,
Yes, please send the WPForms to [email protected]. I’ll take a look if I can add compatibility.
Just a detail I couldn’t get, the upload from WPForms doesn’t work anymore or the renaming doesn’t work?
Pablo Pacheco
ParticipantHi,
I just tested it again and it is working for me now. Can you please make sure that the underscore you want to replace by a dash is coming from the
{filename}
indeed?If it’s coming from the
{posttitle}
for example it won’t work. In that case I can try to create a new option for you if you wish. Just let me know.Pablo Pacheco
ParticipantHi,
In order to see the “Gravity Forms” working with the renaming plugin you should try disabling one option: Advanced > Ignore files with no extension.
Let me know if it helps.
Pablo Pacheco
ParticipantHi Lionel,
Sorry for the delay. I believe I was able to fix that for you. Please update the plugin to version 1.3.3 I just released and let me know if it works.
Pablo Pacheco
ParticipantHi Frank,
What would you like to know more specifically? Let me show you the Wish list meta keys on the database separated by table.
Usermeta
_alg_wc_wl_item _alg_wc_wl_item_metas
Postmeta
_alg_wc_wl_added_by_registered_users_count _alg_wc_wl_added_by_unregistered_users_count
Options
"alg_wc_wlm_{$user_id}"
This ends up being translated to something like
_transient_alg_wc_wlm_4d725a9d3bafbeec286d3c0e10ed5374
Pablo Pacheco
ParticipantHi Debbie,
1. Please, make sure that you actually have an email value set on the settings, because the default placeholder is the admin email and sometimes it gets confusing.
2. I’m sorry. It won’t be possible due to the way I’m storing the wish list meta in the database. I’m saving it as a serialized array and then it’s almost impossible to do certain types of queries.
3. Please update the plugin to the version 1.9.6 I just released. I fixed it for you š
February 18, 2022 at 3:52 pm in reply to: How to preserve the variation URL on the wish list? #100276Pablo Pacheco
ParticipantHi Mark,
I just released a new version (1.9.5) with the fix.
Sorry for the long delay.February 3, 2022 at 10:39 pm in reply to: How do I make the text in the center of the window and the button below it? #99942Pablo Pacheco
ParticipantHi Simon,
Sorry for the delay.
Have you tried to center it using the Customizer options? And what button are you referring to? Have you tried to use the close button from the Customizer? There is a Close button from the customizer that could help you. You can find it at “Popup Notices – Internal Close Button“.
Let me know if you need more help.
-
AuthorPosts