Forum Replies Created
-
This reply has been marked as private.in reply to: Followed steps, but page does not show anything.
Dear, you can not view product http://www.bgreplicas.com/store/product/preorder-guyhelmet-kits/ ?
in reply to: Followed steps, but page does not show anything.Dear, after assign Custom Template for a product, please check product in front-end. i see custom template is working in product http://www.bgreplicas.com/store/product/preorder-guyhelmet-kits/
Please check your site again.
in reply to: Followed steps, but page does not show anything.Dear, in current version, the plugin not support apply custom template for all product, but you can custom code to do it, please go to file “wp-content/plugins/dhvc-woocommerce-page/dhvc-woocommerce-page.php” line #105 and change code :
$product_template_id = 0;
to
$product_template_id = {your custom template id};
Best regards,
Dear @somepro please kindly give for me admin account and your problem URL via private reply,
I will check details to help you.Best regards.
in reply to: Advanced Custom Fields ImagesDear, please kindly give for me admin account and your problem URL via private reply. i will check details to help you.
Best regards.
in reply to: Extra class name option not respondingPlease kindly give for me admin account via private reply, i will check details to help you.
Best regards.
in reply to: change category query from "or" to "and"Dear. if you want display your shop page and search product page with layout of plugin. you will use setting ‘ Use DHVC WOO Override Woocommerce Product Archive / Shop Page Options.’ and build a ‘Woocommerce Products Layouts’ short code and use setting ‘MAIN QUERY’ in shop page. the mean, your shop page will display with layout of plugin.
best regards.
in reply to: Plugin failed to work loading more than 180 itemsDear, i have check again. i see this problem because YOAST seo plugin run short code in admin to check content. to fix it. please go to file ‘wp-content/plugins/dhvc-woocommerce-page/dhvc-woocommerce-page.php’ and search code
require_once DHVC_WOO_PAGE_DIR.'/includes/shortcode.php';
change to
if(!is_admin()): require_once DHVC_WOO_PAGE_DIR.'/includes/shortcode.php'; endif;
Best regards.
in reply to: Product Page Price ErrorDear, i have check your site and edit your product http://nzmedi.com/wp-admin/post.php?post=9247&action=edit . I have assign single page template for it (see attachment). After save edit, i have view product in front-end http://nzmedi.com/product/locoid-oint-100g-1/ it’s working, please check your site again.
– After create single product template, please go to edit product and assign it for a product to display single product with custom template
Attachments:
You must be logged in to view attached files.in reply to: Product Page Price ErrorThis reply has been marked as private.in reply to: Plugin failed to work loading more than 180 itemsThis reply has been marked as private.in reply to: Product Page Price ErrorDear, the default Query of plugin will select product in CAT 1 or in CAT 2. You want change Query of plugin to select product in CAT 1 AND in CAT 2 ?
If you want do it. please go to file ‘wp-content/plugins/dhvc-woocommerce/includes/class.php’ and search code:$category = str_replace('-1', implode(',', $categories), $category); $query_args['tax_query'][] = array( 'taxonomy' => 'product_cat', 'field' => 'id', 'terms' => explode(',',$category), 'operator' => 'IN' );
change to:
$category = str_replace('-1', implode(',', $categories), $category); $cat_arr = explode(',',$category); if(count($cat_arr) > 1){ $tax_query = array('relation' => 'AND'); foreach ($cat_arr as $k=>$v){ $tax_query[] = array( 'taxonomy' => 'product_cat', 'field' => 'id', 'terms' => $v, 'operator' => 'IN' ); } $query_args['tax_query'][] = $tax_query; }else{ $query_args['tax_query'][] = array( 'taxonomy' => 'product_cat', 'field' => 'id', 'terms' => $cat_arr , 'operator' => 'IN' ); }
Best regards.
in reply to: change category query from "or" to "and"Dear, i can not check your site. it give problem like attachment.
Also, you can give for me your problem screen shot ?
Attachments:
You must be logged in to view attached files.in reply to: WooCommerce VC Elements not very compatible with VCDear, please kindly give for me admin account and your problem URL via private reply. i will check details to help you.
Best regards.
in reply to: Product Page Price Error