1. Home
  2. Knowledge Base
  3. WooCommerce Product Add-Ons Ultimate
  4. Product Page
  5. Display field description directly under the label
  1. Home
  2. Knowledge Base
  3. WooCommerce Product Add-Ons Ultimate
  4. Display field description directly under the label

Display field description directly under the label

Normally in WooCommerce Product Add-Ons Ultimate, the field description appears under the field elements. If you prefer to display the description directly under the field label, use this snippet:

<?php
/**
* Move the description under the label for product add-ons
*/
function prefix_field_description_list_layout( $item, $id, $group_layout, $file ) {
pewc_field_description( $item, $id, $group_layout );
}
add_action( 'pewc_before_include_frontend_template', 'prefix_field_description_list_layout', 10, 4 );
// Remove the description field from after the field
remove_action( 'pewc_after_field_template', 'pewc_field_description_list_layout' );

Here’s how to add the snippet.

Was this article helpful?

Related Articles