Forum Replies Created
-
This reply has been marked as private.in reply to: Need Help with 'Quick View'
Hi,
Our web developers are checking this issue for you. Please wait
Best regards,
Junnie
in reply to: Paypal form with checkboxHi,
Thanks for contacting us.
Please send me a link to your site and your admin account and FTP account via private message. I will check for you soon.
Best regards,
Junnie
in reply to: Displaying Products by User RoleHi,
Sorry for the delayed reply>
1. Override plugin template by copying file
wp-content/plugins/dhvc-woocommerce-page/templates/content-single-product.php paste to
wp-content/themes/your-theme/dhvc-woocommerce-page/content-single-product.php
“your-theme” => the current theme folder that you use.
2. To add the author for product, you can do the following steps:
– Add the author support for product, you add this funtion to the functions.php:function woo_support_author() {
add_post_type_support( ‘product’, ‘author’ );
}
– Get the author for Shop page, you add this function to the functions.php
add_action( ‘woocommerce_shop_loop_item_title’, ‘woo_product_author’, 11);
function woo_product_author() {
the_author();
}Best regards,
in reply to: Override fileHi,
Currently, I can’t login your site.
You can add these lines to Custom style or the style.css of Child Theme:
@media (max-width: 767px){
.woocommerce ul.products:not(.masonry-products)>li.product, .woocommerce ul.products:not(.masonry-products)>li.product:not(.product-category) {
width: 50%;
margin: 0;
float: none;
clear: both;
vertical-align: top;
padding: 10px;
}
}in reply to: Mobile – Products display in 2 columnsHi,
Ok, Please wait. I will check and teach you
Best regards,
Junnie
in reply to: White line bug on mobile😀
Hi,
Wish you a nice day.
We will update in the next version.
Best regards,
Junnie
in reply to: Theme UpdateHi,
I added code below into functions.php file to fix this issue for you
//Function for DHVC WooCommerce Plugins function dhvc_woo_product_quickview_before_custom(){ remove_action( 'woocommerce_before_single_product_summary', 'depot_mikado_single_product_content_additional_tag_before', 5 ); remove_action( 'woocommerce_after_single_product_summary', 'depot_mikado_single_product_content_additional_tag_after', 1 ); remove_action( 'woocommerce_before_single_product_summary', 'depot_mikado_single_product_summary_additional_tag_before', 30 ); remove_action( 'woocommerce_after_single_product_summary', 'depot_mikado_single_product_summary_additional_tag_after', 5 ); } add_action('dhvc_woo_product_quickview_before','dhvc_woo_product_quickview_before_custom');
Best regards,
Junniein reply to: Need Help with 'Quick View'Hi,
Wish you a nice day.
We will review this feature
Best regards,
Junnie
in reply to: Need Help Displaying ACF Data on Category PageHi,
Thanks for contacting us.
Please send me a link to your site and your admin account and FTP account via private message. I will check for you soon.
Best regards,
Junnie
in reply to: Paypal form with checkboxHi,
Thanks for contacting us.
Please send me a link to your site and your admin account and FTP account via private message. I will check for you soon.
Best regards,
Junnie
in reply to: White line bug on mobileHi,
Thanks for contacting us.
Please send me a link to your site and your admin account and FTP account via private message. I will check for you soon.
Best regards,
Junnie
in reply to: Mobile – Products display in 2 columnsThis reply has been marked as private.in reply to: Single Product image not diplaying correctlyHi,
I don’t add JS on your site. To the custom designs tab can display, you need to go to shortcode “Woo Product Layout” and uncheck the option “Hide free products”.
http://prntscr.com/l9ja7m
Currently, you can reload your site and check again.Best regards,
in reply to: Wc Single product data tabsHi,
Thanks for contacting us.
Please send me a link to your site and your admin account and FTP account via private message. I will check for you soon.
Best regards,
Junnie
in reply to: Override file