• Resolved mfghost

    (@mfghost)


    So far the plugin is working fine but I would like to change the text that says “thumbnail” and “action” on the table when using a mobile device. On the regular/desktop version the text is not there (as needed) but the mobile version shows “thumbnail, price, quantity” etc. I would like to change the “thumbnail” and “action” text if possible. Can you tell me which file I need to edit? Thank you.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter mfghost

    (@mfghost)

    Here is the text I am trying to edit (see image).

    Plugin Author WPXtension

    (@wpxteam)

    @mfghost

    I hope you are doing well today. Please add the following snippet using a plugin called Code Snippets or add the following snippet inside your current theme’s functions.php file.

    // Thumbnail Title
    add_filter('pvtfw_image_link_title', function( $default ){
    	return __('Your Thumbnail Title', 'product-variant-table-for-woocommerce');
    }, 10, 1);
    
    // Action Title
    add_filter('pvtfw_action_title', function( $default ){
    	return __('Your Action Title', 'product-variant-table-for-woocommerce');
    }, 10, 1);

    I hope the above snippet will help you to achieve your need. Please let me know if it helps.

    Best Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Edit/Remove Text On Table In Mobile’ is closed to new replies.