Forum Replies Created
-
sorry, i do not understand you problem ? you want hide 1 filter in one product category ? example in page http://boiteasecrets.fr/sextoys/par-thematiques/ you want hide filter ‘SM’ ? you can use custom css to do it, ex:
body.page-id-455 .dhvc-woo-filters ul li:nth-child(2){ display:none !important; }
in reply to: Hide some category with Masonry gridThis reply has been marked as private.in reply to: Woo Product Page Builder = BLANK PAGEDear, the short code support setting ‘Hide Masonry Filters’ . you can use this setting to hide filter .
Best regards.
in reply to: Hide some category with Masonry gridDear, please kindly send for me admin account and your problem URL via private reply, i will check details to help you.
Best regards.
in reply to: Woo Product Page Builder = BLANK PAGESorry, please kindly send for me your problem URL, i need check details to help you.
in reply to: Hide some category with Masonry gridDear, default plugin not support HTML code in excerpt,but you can add custom code to do it, please add custom code like topic
in reply to: Layout ExcerptDear, i have check plugin with ‘Flatsome’ theme. to fix your problem, you need create custom default template of plugin. please download and extract file ‘archive-product.zip’ then download file ‘archive-product.php’ and paste to folder ‘{yourtheme}/dhvc-woocommerce/’ (create folder ‘dhvc-woocommerce’ if not exits).
Best regards.
Attachments:
You must be logged in to view attached files.in reply to: Layout BrokenThis reply has been marked as private.in reply to: Sort by manual/defaultYes, if you want receive message notification. please go file ‘wp-content/plugins/dhvc-form/dhvc-form.php’ line ~650 and search code:
$dhvcform_db->insert_entry_data($data);
change to:
$dhvcform_db->insert_entry_data($data); $posted_data = $entry_data; $posted_data['site_url'] = get_site_url(); $posted_data['ip_address'] = dhvc_form_get_user_ip(); $posted_data['user_display_name'] = ( isset( $current_user->ID ) ? $current_user->display_name : '' ); $posted_data['user_email'] = ( isset( $current_user->ID ) ? $current_user->user_email : '' ); $posted_data['user_login'] = ( isset( $current_user->ID ) ? $current_user->ID : 0 ); $posted_data['form_url'] = isset($_REQUEST['form_url']) ? $_REQUEST['form_url'] : '' ; $posted_data['form_id'] = $form_id; $posted_data['form_title'] = get_the_title($form_id); $posted_data['post_id'] = isset($_REQUEST['post_id']) ? $_REQUEST['post_id'] : 0; $posted_data['post_title'] = get_the_title($posted_data['post_id']); $posted_data['submitted'] = date_i18n(dhvc_form_get_option('date_format','Y/m/d')).' '.date_i18n(dhvc_form_get_option('time_format','H:i')); $email_form_body = ''; $newline = dhvc_form_email_newline(); foreach ($email_data as $k=>$v){ $email_form_body .= '<strong>'.$k.':</strong> '.$v.$newline; } $posted_data['form_body'] = $email_form_body; $notice = get_post_meta($form_id,'_notice',true); if(get_post_meta($form_id,'_notice',true)){ //send email notice $mailer = dhvc_form_phpmailer(); $notice_email_type = dhvc_get_post_meta($form_id,'_notice_email_type','email_text'); if($notice_email_type == 'email_field'){ $notice_variables = dhvc_get_post_meta($form_id,'_notice_variables'); if($notice_variables){ if(isset($posted_data[$notice_variables]) && dhvc_form_validate_email($posted_data[$notice_variables])){ $mailer->From = trim((string)$posted_data[$notice_variables]); } } }else{ $mailer->From = trim((string)dhvc_get_post_meta($form_id,'_notice_email',get_option('admin_email'))); } $mailer->FromName = trim((string)dhvc_get_post_meta($form_id,'_notice_name',get_option('blogname'))); $recipients = get_post_meta($form_id,'_notice_recipients',true); //$recipients_arr = explode("\n", $recipients); if(is_array($recipients) && !empty($recipients)){ foreach ((array)$recipients as $recipient){ $recipient_email = trim($recipient); if(dhvc_form_validate_email($recipient_email)){ $mailer->AddAddress($recipient_email); } } } $subject = get_post_meta($form_id,'_notice_subject',true); $subject = dhvc_form_translate_variable($subject,$posted_data); $mailer->Subject = trim((string)$subject); $body = get_post_meta($form_id,'_notice_body',true); $html = false; if(get_post_meta($form_id,'_notice_html',true)) $html = true; $body = dhvc_form_translate_variable($body,$posted_data,$html); $body = apply_filters('dhvc_form_notice_body',$body,$form_id); if($html){ $mailer->MsgHTML(wpautop($body)); }else{ $mailer->Body = $body; } if(!empty($attachments)){ foreach ( $attachments as $attachment ) { try { $mailer->AddAttachment($attachment); } catch ( phpmailerException $e ) { continue; } } } try { $r = $mailer->Send(); } catch (phpmailerException $e) { if (WP_DEBUG) { throw $e; } } }
in reply to: Form Data no longer saving or being sentYes, i understand, but default DHVC Form plugin not send email when use form action is ‘Mailchimp’ if you want do it. please go file ‘wp-content/plugins/dhvc-form/dhvc-form.php’ line ~580 and search code:
if($_form_control && !empty($save_data) && $action == '_register'){
change to :
if($_form_control && !empty($save_data) && ($action == '_register' || $action == '_mailchimp')){
Please let me know if your problem is not resolved!
in reply to: Form Data no longer saving or being sentWhen use ‘Subscribe Mailchimp’ action, i see message Subscribe to Mailchimp Successful! when submited form. please check your Mailchimp again.
in reply to: Form Data no longer saving or being sentDear, i have check your form again. i see your form use setting ‘Use form action’ is Mailchimp. with some actions in form setting, the form will not save to data email not send email Notice email. i have change ‘Use form action’ to default ( empty), the form is save to data and send notice email. Please check your form again.
in reply to: Form Data no longer saving or being sentYes,the problem on your site is not caused by Woocommerce Products Layouts plugin, it’s caused by old plugin not compatible with WordPress and Woocommerce latest version. please check plugin on your site again.
in reply to: Broken layout after update to vers. 2.2.5This reply has been marked as private.in reply to: Form Data no longer saving or being sentThis reply has been marked as private.in reply to: Form Data no longer saving or being sent