With this filter you can adjust for the table-layouts (X and Y) the title of the “price”-column. add_filter('at_table_x_product_price_row_title', 'at_set_product_price_row_title', 11, 4); add_filter('at_table_y_product_price_row_title', 'at_set_product_price_row_title', 11, 4); function at_set_product_price_row_title($title) { $title = 'Price / Month'; return $title; } Was this article helpful? (No Ratings Yet)
Keine Kommentare vorhanden