Forum Replies Created
-
Dear,
To save form submitted data to database, you need check to form setting ‘Save Submitted Form to Data ?’ (see attachment)Also, for email problem. I see you use you use sender method: ‘PHPMailer’ in admin menu ‘Form -> settings’ , If use that method, please make sure it is working on your site, you can use plugin to check https://wordpress.org/plugins/wp-test-email/ Or switch to use sender method ‘SMTP’
Best regards.
Maybe field name or some settings is wrong, you can send for me admin account and your form URL via private reply. I will check details to help you.
Best regards.
Dear @lenawenninger please kindly create new topic with your problem. I will check details on your site to help you.
Best regards.
in reply to: No email from form!This reply has been marked as private.Dear. the Demo Template is demo content of theme, please install theme then go to admin menu ‘Appearance -> Import Demo” then choose demo you want import.
Best regards.
in reply to: Can’t find demo templateYes, if you didn’t used purchase code, you can use it on your new site.
Best regards.
in reply to: Resetting codeSorry, the DHWCPage plugin not support gallery with video of Product Video plugin.
Best regards.
in reply to: Product Video for WooCommerceSorry, With your question, please contact with author of Product Video plugin, because the DHWC Page plugin not support gallery with video of Product Video plugin. So, need add custom code to change Image shortcode of DHVC Page plugin to use slider of Product video plugin.
Best regards.
in reply to: Product Video for WooCommerceDear, to fix your problem. Please add custom code to file
functions.php
Of your theme to change Image shortcode of DHVC Page plugin to use slider of Product video plugin.Code here
add_action('template_redirect',function(){ if(!defined('AFPV_PLUGIN_DIR')){ return ; } remove_shortcode('dhvc_woo_product_page_images'); add_shortcode ( 'dhvc_woo_product_page_images', function(){ ob_start(); echo '<div class="dhvc_woo_product_page_images--custom">'; include AFPV_PLUGIN_DIR . '/front/custom-woo-gallery/class-afpv-woo-gallery-front.php'; echo '/<div>'; return ob_get_clean(); } ); },11);
Best regards.
in reply to: Product Video for WooCommerceThis reply has been marked as private.in reply to: Product Video for WooCommerceDear, Please kindly send for me admin account and your problem URL via private reply. I will check details problem on your site to help you.
Best regards.
in reply to: No email from form!Dear, Please kindly send for me admin account and your problem URL via private reply. I will check details problem on your site to help you.
Best regards.
in reply to: Product Video for WooCommerceDear, If you want do it, please go to admin menu ‘Urami WP -> Theme Options -> Header tab’ and change ‘Header style’ to style you want. You can’t do it ?
in reply to: Want to get header as in demoThis reply has been marked as private.in reply to: DHWC blocks width and position problemsDear,
You can switch to use filter to add valid post type for ‘dhwc_template’ post type to enable Salient theme script. Please remove that code and add custom code and check again.
add_filter('vc_is_valid_post_type_be', function($is_valid, $post_type){ if($post_type === 'dhwc_template'){ return true; } return $is_valid; },10, 2);
Best regards.
in reply to: Salient WP Bakery & DHWC Page Conflict