Forum Replies Created
-
Dear, please check email field again. i see email field name have a ‘space’ in end of it. please remove space in name of it.
in reply to: Email Field Not Showing in EntriesDear, please kindly give for me admin account and your problem URL via private reply. i will check detail to help you.
Best regards.
in reply to: Link tot product detailpage breaks.Dear, please kindly give for me admin account via private reply, i will check detail to help you.
Best regards.
in reply to: Exclude productDear @mpeis007 i have check again and i see problem in in custom template, to fix it, please download and extract file ‘archive-product-bridge.zip’ then copy file ‘archive-product.php’ and paste to folder ‘{yourtheme}/dhvc-woocommerce/’ (create folder ‘dhvc-woocommerce’ if not exits).
Attachments:
You must be logged in to view attached files.Dear, i have see WooCommerce fields with name:
- billing
- billing_first_name
- billing_last_name
- billing_company
- billing_address_1
- billing_address_2
- billing_city
- billing_postcode
- billing_country
- billing_state
- billing_email
- billing_phone
- shipping
- shipping_first_name
- shipping_last_name
- shipping_company
- shipping_address_1
- shipping_address_2
- shipping_city
- shipping_postcode
- shipping_country
- shipping_state
If you want add this field in register form with DHVC Form plugin. please create field with name like default WOO field name. example create text field with name ‘billing_company’ in DHVC Form Register.
After create form, you need add custom code to save when register form submit, please go to file ‘wp-content/plugins/dhvc-form/dhvc-form.php’ line ~ 1128 add custom code (like attachment)
//add custom code: if(isset($data['billing_company'])){ update_user_meta($ret, 'billing_company', $data['billing_company']); }
Attachments:
You must be logged in to view attached files.in reply to: Register form save for woo commerce account.Sorry. i don’t understand your question, please kindly tell for me more details with screen shot ?
in reply to: Formatting email replyDear, the plugin not support apply for all product, you can assign Custom template for each product or you can assign Custom template for each Product category.
Also, if you want apply custom template, you can add custom code to do it, please read more in TOPIC
Dear @mpeis007 please enable WP Debug on your site and send for me admin account via private reply. i will check detail to help you.
Dear, i have check ‘DHWOO Product Brand Layered Nav’ again, i see it still working, you can check brand in HERE
Please kindly send for me admin account and your problem URL via private reply. i will check detail to help you.
in reply to: "Filter By Brand" Widget Is Freezing My SiteDear, please tell for me fields you want add for register form ? i have check Woo Register form, i see it’s sample register form.
in reply to: Register form save for woo commerce account.Dear, i see the spacing because you use GAP short code to add spacing, but with some elements not show by ‘conditional logic’ it will give spacing.
To fix it: you can remove all GAP short code and add custom css your site to add space for each field,.dhvc-form-group{ margin-bottom:20px }
in reply to: Spacing in between rows in formDear, i have edit custom function in your site to :
function dhvc_woo_title_custom($output_title, $product, $display){ if($display == 'list'){ $html = ''; $html .= '<h2 class="dhvc-woo-title dhvc-woo-clearfix">'; $html .= '<a href="' . get_permalink ($product->id) . '">'.get_the_title($product->id) . '</a>'; $html .= '</h2>'; $html .= '<div class="woocommerce dhvc-woo-rating dhvc-woo-clearfix">'; $rating = $product->get_average_rating(); $rating = absint($rating); $rating_html = '<div class="star-rating" title="' . sprintf( __( 'Rated %s out of 5', 'woocommerce' ), $rating ) . '">'; $rating_html .= '<span style="width:' . ( ( $rating / 5 ) * 100 ) . '%"><strong class="rating">' . $rating . '</strong> ' . __( 'out of 5', 'woocommerce' ) . '</span>'; $rating_html .= '</div>'; $html .= $rating_html; $html .= '</div>'; $html .= '<div class="dhvc-woo-price">'; $html .= $product->get_price_html (); $html .= '</div>'; $output_title = $html; } return $output_title; } add_filter('dhvc_woo_title', 'dhvc_woo_title_custom',10,3); function dhvc_woo_rating_custom($output_rating,$product, $display){ if($display == 'list'){ return ''; } return $output_rating; } add_filter('dhvc_woo_rating', 'dhvc_woo_rating_custom',10,3); function dhvc_woo_price_custom($output_price,$product, $display){ if($display == 'list'){ return ''; } return $output_price; } add_filter('dhvc_woo_price', 'dhvc_woo_price_custom',10,3);
Now, it’s working, please check your site again.
in reply to: Price and raiting above excerpt – list display typeDear, You can download and re-install plugin latest version in your site. to remove empty field in email. with custom code in file {your theme}/functions.php
add_filter( 'dhvc_form_use_email_empty_field_value', '__return_false' );
in reply to: Formatting email replyDear, please update DHVC Form plugin on your site to latest version 1.3.7 . in latest version support remove empty field in email. if you want remove empty value in email please go to file {your theme}/functions.php and add custom code:
add_filter( 'dhvc_form_use_email_empty_field_value', '__return_false' );
in reply to: Formatting email replyDear, please send for me admin account via private reply, i will check details to help you.
in reply to: Price and raiting above excerpt – list display type - billing