Forum Replies Created
-
Dear @pablostevens i have tell me use file ‘archive-product-legenda.zip’ not use file ‘archive-product-bridge.zip’
Dear
@pablostevens i have check your site, i see your site use ‘legenda’ theme and i see this theme have custom archive product page. to fix your problem please download and extract file ‘archive-product-legenda.zip’ then copy file ‘archive-product.php’ and paste to folder ‘{yourtheme}/dhvc-woocommerce/’ (create folder ‘dhvc-woocommerce’ if not exits).
@mpeis007 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).Please let me know if your problem is not resolved!
Attachments:
You must be logged in to view attached files.Dear, Please go to Visual Composer page setting (Settings -> Visual Composer ) and check ‘User groups access rules’ and allow access for DHVC Short codes.
If after check VC setting the form still not work on your site, please kindly give for me admin account via private reply. i will check detail to help you.
in reply to: Form Control tab not showing in Visual ComposerDear, you can add custom CLASS for all featured product because the plugin support product featured class to add Custom css.
Please go to file ‘wp-content/plugins/dhvc-woocommerce/includes/class.php’ line 658 search code:$output .= '<div class="dhvc-woo-item'; if ($display != 'carousel' && $display != 'list') : $output .= ' dhvc-woo-span' . (12 / absint ( $post_per_row )); endif; $output .= ' dhvc-woo-' . $display . '-item ' . implode ( ' ', $product_cats ); $output .= '">';
Change to:
$output .= '<div class="dhvc-woo-item'; if ($display != 'carousel' && $display != 'list') : $output .= ' dhvc-woo-span' . (12 / absint ( $post_per_row )); endif; $output .= ' dhvc-woo-' . $display . '-item ' . implode ( ' ', $product_cats ); if($product->is_featured()){ $output .=' dhvc-woo-item-featured'; } if($product->is_on_sale()){ $output .=' dhvc-woo-item-on-sale'; } $output .= '">';
After change custom code. you can use custom class ‘.dhvc-woo-item-featured’ add custom css for Product featured and ‘.dhvc-woo-item-on-sale’ for Product on Sale.
in reply to: Featured ProductsDear @mpeis007 i have check your site and i not see you used ‘Woocommerce Products Layouts’ in page please check again.
@pablostevens please kindly give for me your problem URL, i will check detail to help you.Dear, the DHVC Form plugin only support create simple register form with user, email and password field and it not support another user field because user can edit another field : Frist Name, Last name in profile after register.
in reply to: How to map registration fields and BuddypressDear, you want add custom css for ‘Ukulele Products’, please tell for me more detail what you want add custom style for ‘Ukulele Products’ product list ?
in reply to: Featured ProductsYes, if you can add conditional logic elments in a VC Columns, please go to Form -> Settings and change setting ‘Conditional Container Element’ to ‘.dhvc-form-group ‘
Best regards.
in reply to: Creating a form with conditional logicDear, Element of Conditional Logic need in arrow, please go to edit your form and move 2 text field ‘fourpiecegiftbox_bespoke’ and ‘fourpiecegiftbox_mixed’ to in each a VC Row
in reply to: Creating a form with conditional logicDear, i think this problem because PHP Mailer on your hosting not working, please go to Form -> Settings page and change settings Email sender method to SMTP.
Best regards.
in reply to: Submit button not sending email nor dataDear, if you apply for grid layout, please go to custom code search code
if($display == 'list'){
change to:
if($display == 'list' or $display == 'grid'){
Best regards.
in reply to: Some changes, help me please. :)Dear, for your problem, please add custom css on your site to fix it,
.dhvc-form-submit, .dhvc-form-submit:hover, .dhvc-form-submit:active, .dhvc-form-submit:focus{ float: none !important; }
in reply to: Submit button alignmentDear, please kindly give for me your form URL, i will see details to help you.
in reply to: Submit button alignmentDear, you not change custom code to new custom code ?
in reply to: Some changes, help me please. :)Dear, if you add icon for add to cart button, please add change custom to :
function dhvc_woo_add_to_cart_custom( $output_addtocart, $product, $display ) { if($display == 'list'){ $html = ''; $html .= '<div class="dhvc-woo-addtocart">'; $html .= sprintf( '<a href="%s" title="%s" class="button">%s</a>', esc_url( get_permalink($product->id) ), esc_attr(get_the_title($product->id)), '<i class="fa fa-plus"></i>' ); $html .= sprintf( '<a href="%s" rel="nofollow" title="%s" data-product_id="%s" data-product_sku="%s" data-quantity="%s" class="button %s product_type_%s">%s</a>', esc_url( $product->add_to_cart_url() ), esc_attr($product->add_to_cart_text()), esc_attr( $product->id ), esc_attr( $product->get_sku() ), esc_attr( isset( $quantity ) ? $quantity : 1 ), $product->is_purchasable() && $product->is_in_stock() ? 'add_to_cart_button' : '', esc_attr( $product->product_type ), '<i class="fa fa-shopping-cart"></i>' ); $html .='</div>'; $output_addtocart = $html; } return $output_addtocart; } add_filter('dhvc_woo_addtocart', 'dhvc_woo_add_to_cart_custom',10,3);
in reply to: Some changes, help me please. :)