Forum Replies Created
-
Hi,
Thanks for contacting us.
Please send me a link to your site and your admin account and FTP account via private message. I will check for you soon.
Best regards,
Junnie
in reply to: All Products Showing & php warnings.Hi,
Thanks for contacting us.
Please send me a link to your site and your admin account via private message. I will check for you soon.
Best regards,
Junnie
in reply to: Can no longer see Visual ComposerHi,
I have created a “Test form” with the content get from the form “[dhvc_form id=”1217″]”.
Later I created a new page and asigned for this form. It seems can’t submit form when the field required is empty.
https://prnt.sc/ls1rc9
Maybe the cache caused this issue, please reload the above link and check again.Best regards,
in reply to: Required fields problemHi,
I disabled these lines in the style.css of Child theme.
http://prntscr.com/lrlf9g
Please reload your site and check again.Best regards,
in reply to: Homepage content pushed to the rightHi,
sorry for my late response.
Now, I will check this issue for you
Best regards,
Junnie
in reply to: Homepage content pushed to the rightHi,
Thanks for contacting us.
Please send me a link to your site and your admin account via private message. I will check for you soon.
Best regards,
in reply to: How to display the popup on one page onlyHi,
Thanks for contacting us.
Please send me a link to your site and your admin account via private message. I will check for you soon.
Best regards,
in reply to: Required fields problemHi,
At this moment, Please add shortcode to display pop-up into page
[dh_popup id="Add your Popup ID"]
After that, Please go to setting and change “Open popup for event ==> To ” On page load”
Best regards,
Junnie
in reply to: How to display the popup on one page onlyHi,
Thanks for contacting us.
Please send me a link to your site and your admin account via private message. I will check for you soon.
Best regards,
in reply to: Change the style of My Account pageHi,
Thanks for contacting us.
Please send me a link to your site and your admin account via private message. I will check for you soon.
Best regards,
in reply to: Homepage content pushed to the rightHi,
Even though I put there (on “Posts Per Page”) other values, for example “10” it doesn’t work properly.
I have set the Post Per Page is 10 => When reload frontend, the number product displaying exactly 10 products.
http://prntscr.com/lqo2o3I have tried with Product order: Publish date and Modify => the frontend still normal works.
Note: You need to check the option “Ascending or Descending”:
Ascending: The product will display in order from old to new.
Descending: The product will display in order from new to old.
http://prntscr.com/lqoggbBest regards,
Hi,
If you want to add the social share for Single product then this hook is available in Woocommerce.http://prntscr.com/lqntsv
http://prntscr.com/lqntwuYou can setting for the plugin "Sassy Social Share" in here:
Best regards,
in reply to: Social SharingHi,
You can add this function to the functions.php:
/**
* Rename product data tabs
*/
add_filter( ‘woocommerce_product_tabs’, ‘woo_rename_tabs’, 98 );
function woo_rename_tabs( $tabs ) {
$tabs[‘additional_information’][‘title’] = __( ‘Product Information’ ); // Rename the additional information tabreturn $tabs;
}
in reply to: Change TagsHi,
Wish you a nice day!
Please send me a link to your site and your admin account. I will try to check this issue for youPlease check box Set as private reply
Best regards,Junnie
Hi,
Your theme has custom the product title via hook:
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_title’, 5 );
add_action( ‘woocommerce_single_product_summary’, ‘azalea_eltdf_woocommerce_template_single_title’, 5 );Currently, You can choose one of two ways to custom product single title for plugin “Woocommerce Single Product Page Builder”:
1. Edit the code directly for the plugin “Woocommerce Single Product Page Builder”.
You go to the shortcode.php (/plugins/dhvc-woocommerce-page/includes/) add these lines: http://prntscr.com/lq62s6
$tag = azalea_eltdf_options()->getOptionValue(‘eltdf_single_product_title_tag’);
if($tag === ”) {
$tag = ‘h1’;
}
the_title(‘<' . $tag . ' itemprop="name" class="eltdf-single-product-title">‘, ‘' . $tag . '>‘);
Instead of the function woocommerce_template_single_title ();
Note: You need to back it up, because when you update the new version, these lines will be lost.2. You custom the Product single title via Child theme. If you don’t want to use the Child Theme, you can custom via parent theme:
You create the folder “single-product” in the folder “woocommerce”. Later create a new file “title.php” and add these lines:$tag = azalea_eltdf_options()->getOptionValue(‘eltdf_single_product_title_tag’);
if($tag === ”) {
$tag = ‘h1’;
}
the_title(‘<' . $tag . ' itemprop="name" class="eltdf-single-product-title">‘, ‘' . $tag . '>‘);I am using this way now. http://prntscr.com/lq66cb
You can reload your site and check again.Best regards,
in reply to: Change Tags