Forum Replies Created
-
Yes, please go to file “{yourtheme}/functions.php” and add custom code to change link of button “Vai all’offerta”
function dhvc_woo_add_to_cart_custom($output,$product){ $output = sprintf( '<a href="%s" title="%s" class="button">%s</a>', esc_url( get_permalink($product->id) ), esc_attr(get_the_title($product->id)), esc_html( 'Read More' ) ); return $output; } add_filter('dhvc-woo-add-to-cart', 'dhvc_woo_add_to_cart_custom',10,2);
in reply to: Info about url product in product catalogueSorry.
I do not clearly understand your problem! Please tell for me more details your problem.
I think, You want assign Custom Page template for all product ? if right. in current version not support assign Custom Page for all products, but you can fix it, please go to file “wp-content/plugins/dhvc-woocommerce-page/dhvc-woocommerce-page.php” line #105 search code :
$product_template_id = 0;
Change to :
$product_template_id = {your custom template ID};
in reply to: Single Product Page vs. Category PageSorry.
I do not clearly understand your problem!
You only change URL of Image on page http://viaggiamoinsieme.it/offerte-vacanza like to URL of button “Vai all’offerta” ??
in reply to: Info about url product in product catalogueDear.
in the previous reply. I tell you notice: Field name is required. Please enter single word, no spaces. Underscores allowed but when i go to check forum http://boostmerchant.com/agents/ on your site. i see the FORM NAME still wrong. please check name of each field again.You can see image in attachment!
Attachments:
You must be logged in to view attached files.in reply to: Form data Not receivedDear,
I go to check you site. i see you changed URL of Add to cart button.
Your problem has been solved?in reply to: Info about url product in product catalogueDear,
I go to check the form.some filed is missing on email data because some form field have Name is wrong. please go to edit form field with notice: Field name is required. Please enter single word, no spaces. Underscores allowed. example: please enter “street_address” not “street address”.in reply to: Form data Not receivedDear.
I can not check your site. it’s give a landing page. please send for me admin account on your site via private message.in reply to: Form data Not receivedDear,
In attachment i see your site use custom tabs for Woocommerce. please give for me your problem URL. i’ll see detail to help you.in reply to: Fatal ErrorDear. when add extra class in short code setting. it’s create a DIV with attribute class=”{extra-class}” , you can use this class to custom css.
in reply to: Adding custom CSSDear,
In image attachment. i see the data email and website url, but other field is missing. please give for me your form URL and Notifications email body . I will see detail to help you.in reply to: Form data Not receivedDear.
Yes, you can assign Custom Page Template for each Product via assign Custom Page Template for Product Category. Mean, all product in category display with Custom Page Template was assign for Category. You have problem when do it ? Please send for me details your problem URL. I’ll see detail to help you.in reply to: Single Product Page vs. Category PageDear,
If you want add border for thumbnail image. you can add custom css in your site..dhvc-woocommerce-page .attachment-shop_thumbnail { border: 1px solid #ddd; }
Also, what you want do with breadcrumbs ? i not see it in your site
in reply to: Adding custom CSSHi,
The conditional in form is sample, you can you can see example form content, please create a Form and in Form content editor, please switch to “Text” mode then copy and paste to form content :
[vc_row][vc_column width=”1/1″][dhvc_form_radio required=”” disabled=”” control_label=”Coditional” control_name=”coditional” options=”W3siaXNfZGVmYXVsdCI6MCwibGFiZWwiOiJPcHRpb24wIiwidmFsdWUiOiJ2YWx1ZTAifSx7ImlzX2RlZmF1bHQiOjAsImxhYmVsIjoiT3B0aW9uMSIsInZhbHVlIjoidmFsdWUxIn1d” conditional=”W3sidHlwZSI6Ij0iLCJ2YWx1ZSI6InZhbHVlMSIsImFjdGlvbiI6ImhpZGUiLCJlbGVtZW50IjoibGFiZWwxIn0seyJ0eXBlIjoiPSIsInZhbHVlIjoidmFsdWUxIiwiYWN0aW9uIjoic2hvdyIsImVsZW1lbnQiOiJjaGVja2JveDEifV0=”][/vc_column][/vc_row][vc_row][vc_column width=”1/1″][dhvc_form_label control_name=”label1″]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/dhvc_form_label][/vc_column][/vc_row][vc_row][vc_column width=”1/1″][dhvc_form_checkbox required=”” disabled=”” control_label=”Checkbox1″ control_name=”checkbox1″ conditional=”” options=”W3siaXNfZGVmYXVsdCI6MCwibGFiZWwiOiJPcHRpb24wIiwidmFsdWUiOiJ2YWx1ZTAifSx7ImlzX2RlZmF1bHQiOjAsImxhYmVsIjoiT3B0aW9uMSIsInZhbHVlIjoidmFsdWUxIn1d”][/vc_column][/vc_row]
see image:
After that, please download and re-install DHVC Form new version to your site, then go to DHVC Form settings change change “Conditional Container Element” to “.x-content-band”
Because you use the X theme and in X theme custom VC templatein reply to: How to build a form with conditional logicHi,
The plugin only support display excerpt product in Grid view and not support display product category in title. to show it, you need custom code in the plugin.
– To change excerpt product please check show “show_excerpt” then go to file “dhvc-woocommerce/includes/class.php” line 741 seach code$output .= wp_trim_words ($post->post_excerpt, $excerpt_length );
replace with:
$output .= wp_trim_words ($post->post_content, $excerpt_length );
– for add category : please go file “dhvc-woocommerce/includes/class.php” line #737 seach code:
$output .= '<a href="' . get_permalink () . '">'.the_title ('','',false) . '</a>';
replace with :
$output .= '<a href="' . get_permalink () . '">'.the_title ('','',false) . '</a>'; $output .= $product->get_categories();
With this plugin you can view and copy shortcode to use in Widget Text or other page, post , if WP Widget Text not working with shortcode. please go to file “{yourtheme}/functions.php” add add filter:
//allow shortcodes in text widget
add_filter(‘widget_text’, ‘do_shortcode’);Please see:
in reply to: Cannot see shortcodes in VC