Forum Replies Created
-
This reply has been marked as private.in reply to: How do I get the shortcode generator icon to show
Dear, i have login to your site and add custom code in file ‘dhvc-woocommerce-page/includes/map.php’ in line 53. now image field is working, please check your site again.
in reply to: Advanced Custom Fields ImagesSorry , please change custom css to :
#dhvc_woo_f6154ec386 .dhvc-woo-list-item .dhvc-woo-addtocart { padding: 10px 60px; }
Best regards.
in reply to: Alignment issueDear, to fix it, please add custom css in your site
.dhvc-woo-list-item .dhvc-woo-addtocart { padding: 10px 60px; }
Best regards.
in reply to: Alignment issueDear, please kindly give for me your problem URL and tell for me more details your problem, i will see details to help you.
Best regards.
in reply to: Alignment issueDear, i think this problem because it is conflict java script on your site, you can use Fire Bug (addon for Firefox) to debug your site.
please install Firebug when load your site you can see log like attachment.Attachments:
You must be logged in to view attached files.in reply to: Bug Date/CalendarThis reply has been marked as private.in reply to: "Filter By Brand" Widget Is Freezing My SiteDear, 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, the problem because css of plugin always resize image full 100%, if you want custom it, please add custom css in your site.
.dhvc-woo-images .dhvc-woo-thumbnail{ text-align: center !important; } .dhvc-woo-images .dhvc-woo-thumbnail img { display: inline-block !important; width: auto !important; }
Best regards.
in reply to: Warning!!Sorry, i don’t fix this error, please go to file ‘wp-content/plugins/dhvc-woocommerce/includes/dhwc-brand/includes/dhwc-widget-layered-nav.php’ line 100 search code:
$woocommerce->add_inline_js
change to :
wc_enqueue_js
after change code, please go to disable WP_Debug on your site, changed word “true” to “false”:
Best regards.in reply to: "Filter By Brand" Widget Is Freezing My SiteThis reply has been marked as private.in reply to: Bug Date/CalendarThis reply has been marked as private.in reply to: Slowed down my siteThis reply has been marked as private.in reply to: Thumbnails not changing sizeDear, i have login to your site and custom code in file ‘Bridge Child/dhvc-woocommerce-page/content-single-product.php’ and add custom code in file Bridge Child/functions.php to fix problem of plugin with YITH WooCommerce Zoom Magnifier plugin. custom code is:
function dhvc_woo_product_page_images_shortcode_custom($atts, $content = null){ global $product; extract ( shortcode_atts ( array ( 'el_class' => '' ), $atts ) ); ob_start (); if (! empty ( $el_class )) echo ' <div class="' . $el_class . '">'; if(function_exists('dhwcpl_single_product')){ dhwcpl_single_product(); dhwcpl_product_sale(); dhwcpl_product_out_of_store(); } $wc_get_template = function_exists( 'wc_get_template' ) ? 'wc_get_template' : 'woocommerce_get_template'; $wc_get_template( 'single-product/product-image-magnifier.php', array(), '', YITH_YWZM_DIR . 'templates/' ); if (! empty ( $el_class )) echo '</div> '; return ob_get_clean (); } function dhvc_woo_init(){ if(defined( 'YITH_YWZM_DIR' )){ remove_shortcode('dhvc_woo_product_page_images'); add_shortcode ( 'dhvc_woo_product_page_images', 'dhvc_woo_product_page_images_shortcode_custom' ); } } add_action('init','dhvc_woo_init',11);
in reply to: Sidebar on product-detail page Theme: Bridge