Forum Replies Created
-
Hi,
The plugin only support display excerpt product in Grid view and not support display product category in title. to show it, you need custom code in the plugin.
– To change excerpt product please check show “show_excerpt” then go to file “dhvc-woocommerce/includes/class.php” line 741 seach code$output .= wp_trim_words ($post->post_excerpt, $excerpt_length );
replace with:
$output .= wp_trim_words ($post->post_content, $excerpt_length );
– for add category : please go file “dhvc-woocommerce/includes/class.php” line #737 seach code:
$output .= '<a href="' . get_permalink () . '">'.the_title ('','',false) . '</a>';
replace with :
$output .= '<a href="' . get_permalink () . '">'.the_title ('','',false) . '</a>'; $output .= $product->get_categories();
With this plugin you can view and copy shortcode to use in Widget Text or other page, post , if WP Widget Text not working with shortcode. please go to file “{yourtheme}/functions.php” add add filter:
//allow shortcodes in text widget
add_filter(‘widget_text’, ‘do_shortcode’);Please see:
in reply to: Cannot see shortcodes in VCHi,
I go to check your site, i see this problem because conflict “owlCarousel” slider in your site, please download file “script.js” in attachment and replace file “dhvc-woocommerce/assets/js/script.js”
Attachments:
You must be logged in to view attached files.in reply to: Had an unexpected issue using the pluginHi,
If you want receive form submit data in your email, please settup “Notifications email settings” function by go to menu “Forms->settings” and change setting email “Sender method” to SMTP and config SMTP function, then go to check “Auto reply email” function in DHVC Form
in reply to: Problem of "autoreply email settings" functionHi,
I to go check your site, the plugin not working because it requires Visual Composer in your site, please install Visual Composer in your site,
in reply to: Do not see the "page" option1. You can see demo of DHV Form plugin, for example website use DHVC Form, can you search it in comment of this plugin or see more: http://polharlingen.nl/taxi/reserveren/ http://standupforpits.us/sponsors/official-sponsor/
2. the plugin support add custom class to add custom css for Submit buton.in reply to: Pre sales questionHi,
The size 437×437 is after apply css for this image, the natural size is 50×50.
in reply to: Problem with resizing imagesIf you want add full page parallax image for page while the form does not eliminate the image background, you will not see it because you add the form to 1/3 column, please remove image background in form and add background for row in WP login ( like you doing). i think i is good idea.
in reply to: Form eliminates the imagePlease check DHVC Woocommerce Products Layouts version, if you use version 2.1.10 or latest, please go to file “{yourtheme}/functions.php” and add custom code to change text add to cart button to “By now”
function dhvc_custom_add_to_cart_text($button,$product){ return sprintf( '<a href="%s" rel="nofollow" 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->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 ), esc_html( 'Buy now' ) ); } add_filter('dhvc-woo-add-to-cart', 'dhvc_custom_add_to_cart_text',10,2);
in reply to: How to get back shopping cart iconIn the new version, we do not use custom add to cart button, we change to use default “Add to cart” button of Woo, we go to check your site, we see the button not inherit style from your theme, please add custom css in your site.
.dhvc-woo-addtocart a { background: none repeat scroll 0 0 #fff !important; border: 2px solid #111 !important; border-radius: 30px !important; color: #111 !important; height: 45px; line-height: 40px !important; margin: 0; padding: 0 30px !important; transition: all 200ms ease-out 0s; width: auto; }
in reply to: How to get back shopping cart iconThank you for contact with us!
1, to use DHVC Form, can you use DHVC Form Shortcode in Form list
2, It is available in the recent update version of Visual WordPress Form.if you want change “Add to cart” button to “read more” button. please go to file “{yourtheme}/functions.php” and add filter function to it.
function dhvc_custom_add_to_cart($button,$product){ $readmore='<a class="btn btn-alternative" href="'.get_the_permalink($product->ID).'">'.__('Read more').'</a>'; return $readmore; } add_filter('dhvc-woo-add-to-cart', 'dhvc_custom_add_to_cart',10,2);
in reply to: Change add to cart button to read moreDear Lawson,
Thank’s for paying interested in our plugin. About your question:
1.Yes, the plugin only work with Visual Composer (require) and Woocommerce (require)
2. Yes, with the plugin you can re-position swatch attributes, not only that, you can re-position title, images description of single product page.in reply to: Pre-sale questionYou can not do it ? it’s easy to build with Shortcode in Visual Composer.
in reply to: Have fatal errorhe plugin support you to create and re-order display WOO single product data like: tiltle, image, description.. in a WP page and assign it to a product, you can only view it with a product and not view it like a WP page, what you want change ? please tell for me more details?
in reply to: Have fatal error