Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author templateinvaders

    (@templateinvaders)

    Hi @matiazar

    You can hook the tinvwl_wishlist_item_name filter. It uses 3 params – $html_name, $wl_product_array, $WC_Product

    Thread Starter matiazar

    (@matiazar)

    thanks! i will try today!

    Thread Starter matiazar

    (@matiazar)

    is this code ok?

    add_filter( ‘tinvwl_wishlist_item_name’, ‘wishtlist_item_name’, 10, 3 );
    function wishtlist_item_name($html_name, $wl_product_array, $WC_Product) {
    return “hola”;
    }

    where I can see that “hola” text? on mini wishlist? on wishlist? i dont see it anywhere..
    help. and thanks again

    Plugin Author templateinvaders

    (@templateinvaders)

    Hi @matiazar

    Your custom function changing product name for wishlist table. If you are a premium user you can apply the same function to the mini wishlist template also like:
    add_filter( 'tinvwl_mini_wishlist_item_name', 'wishtlist_item_name', 10, 3 );

    P.S. we tested your code and it works as should

    Thread Starter matiazar

    (@matiazar)

    ok, thanks. i dont know why. but is not working on my site.

    Plugin Author templateinvaders

    (@templateinvaders)

    Maybe you have some browser cache or run code so late. Try to add it directly to functions.php of your active theme.

    Thread Starter matiazar

    (@matiazar)

    thanks for your time. nothing happend. removed cache and changed it to my functions.php and no change.

    Plugin Author templateinvaders

    (@templateinvaders)

    You can message us via chat from plugin settings pages and we can do some quick debug of your setup!

    Thread Starter matiazar

    (@matiazar)

    thanks, i dont find any chat link on my wordpress panel (on wishlist plugin settings)

    Plugin Author templateinvaders

    (@templateinvaders)

    You can use our contact page also:
    https://templateinvaders.com/help/

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘change product title with more info custom fields’ is closed to new replies.