Pablo Pacheco

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 193 total)
  • Author
    Posts
  • in reply to: How to add html/comments to the discussion tab? #92587
    Pablo Pacheco
    Participant

    Hi,

    Please try enabling the option “General > Open comments” and let me know if it helps.

    in reply to: Missing input box #92585
    Pablo Pacheco
    Participant

    Hi 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();
    }
    in reply to: Do you provide a discount to non-profit organizations? #100046
    Pablo Pacheco
    Participant

    Hi Glasul,

    Sorry for the delay. We’ve replied to you by email.

    in reply to: Why is the “share by email” form disappearing #100286
    Pablo Pacheco
    Participant

    Hi 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 😉

    in reply to: Embedding discussions into a custom tab #92582
    Pablo Pacheco
    Participant

    Hi,

    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 🙂

    in reply to: How to switch from FontAwesome to some other solution? #100284
    Pablo Pacheco
    Participant

    Hi 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 new wish-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/

    in reply to: Why can’t I upload files to WpForms anymore? #100044
    Pablo Pacheco
    Participant

    Hi,

    This is just to inform that since v1.3.4 of the Pro version, there will be a new compatibility option with WPForms.

    in reply to: Why can’t I upload files to WpForms anymore? #100042
    Pablo Pacheco
    Participant

    Hi 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?

    in reply to: Why is this plugin not working for old files? #100038
    Pablo Pacheco
    Participant

    Hi,

    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.

    in reply to: Why is the plugin not working with Gravity Forms? #100040
    Pablo Pacheco
    Participant

    Hi,

    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.

    in reply to: Why is this plugin not working for old files? #100036
    Pablo Pacheco
    Participant

    Hi 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.

    in reply to: Is there documentation about importing? #100282
    Pablo Pacheco
    Participant

    Hi 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
    in reply to: How to share the wish list with admin? #100278
    Pablo Pacheco
    Participant

    Hi 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 🙂

    in reply to: How to preserve the variation URL on the wish list? #100276
    Pablo Pacheco
    Participant

    Hi Mark,

    I just released a new version (1.9.5) with the fix.
    Sorry for the long delay.

    Pablo Pacheco
    Participant

    Hi 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.

Viewing 15 posts - 16 through 30 (of 193 total)