Benson
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Change the color of radio buttonsNever mind, I found the solution. Someone had asked a similar question.
https://wordpress.org/support/topic/colour-of-radio-button-check-boxes/
Wait! You answered this guy’s question but cant answer mine? unbelievable.
Forum: Plugins
In reply to: [Calculated Fields Form] Notification Emails Issues- With SMTPHow do I resolve the issue?
Forum: Plugins
In reply to: [Calculated Fields Form] Notification IssuesThank you for the prompt response. However, I meant I do not get the notification email when there is an attachment.
Hi,
You did not respond to the question. I wanted to know if one can add two tabs or more by adding codes.
That is additional tabs by adding code to the theme’s function.php.
add_filter( 'user_registration_account_menu_items', 'ur_custom_menu_items', 10, 1 ); function ur_custom_menu_items( $items ) { $items['orders'] = __( 'My Orders', 'user-registration' ); return $items; } add_action( 'init', 'user_registration_add_orders_my_account_endpoint' ); function user_registration_add_orders_my_account_endpoint() { add_rewrite_endpoint( 'orders', EP_PAGES ); } function user_registration_orders_endpoint_content() { echo 'View my orders'; } add_action( 'user_registration_account_orders_endpoint', 'user_registration_orders_endpoint_content' );Forum: Plugins
In reply to: [Calculated Fields Form] Autofill FieldsOkay, noted.
Forum: Plugins
In reply to: [Calculated Fields Form] Empty fieldnames in the notification emailThank you, worked perfectly.
Forum: Plugins
In reply to: [Calculated Fields Form] Displaying results in summary in a tableResolved, thanks for the support!
Forum: Plugins
In reply to: [Calculated Fields Form] Displaying results in summary in a tableHello,
The checkboxes fields are still showing on the summary even when the corresponding fields are empty. All the other fields are working fine with the conditional operations.
Forum: Plugins
In reply to: [Calculated Fields Form] Displaying results in summary in a tableThank you.
Forum: Plugins
In reply to: [Calculated Fields Form] Displaying results in summary in a tableGreat!
Last question, is it possible to exclude the empty fields?Forum: Plugins
In reply to: [Calculated Fields Form] Displaying results in summary in a tableThanks a lot!
However, some fields are showing the ‘choice value’ but I would prefer to show the ‘choice text’. How do I address this?