Valdinia
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] The default value of a field set to current page URLThank you!
I have the same problem: two forms on the same page, but only one displaying reCAPTCHA. Did you find a solution?
Thank youThe solution I found:
In /wp-content/plugins/woocommerce-lightbox/inc/wpb_wl_hooks.php
change this line:add_action( ‘woocommerce_before_shop_loop_item’,’wpb_wl_hook_quickview_link’, 11 );
by replacing priority 11 with priority 9. So the correct line should be:
add_action( ‘woocommerce_before_shop_loop_item’,’wpb_wl_hook_quickview_link’, 9);
The solution I found:
In /wp-content/plugins/woocommerce-lightbox/inc/wpb_wl_hooks.php
change this line:add_action( ‘woocommerce_before_shop_loop_item’,’wpb_wl_hook_quickview_link’, 11 );
by replacing priority 11 with priority 9. So the correct line should be:
add_action( ‘woocommerce_before_shop_loop_item’,’wpb_wl_hook_quickview_link’, 9);
It works just perfect now, thank you!!!
Valdinia
Forum: Plugins
In reply to: [BackUpWordPress] Are you deleting backups randomly?!!!PLUS(!!!), only one of the backups contains both the files and the SQL script. The other one contains only the files!
Good job! I was relying on your backup.
I started searching for another backup tool, one that I can trust.Forum: Plugins
In reply to: [Compare Products for WooCommerce] Compare Button on Product ArchiveI found a solution to add the Compare hyperlink under each product listed on the Product Category page (archive page). I hope it will help you:
In my child-theme, in the functions.php file I added this:
function vald_add_compare_button() {
if ( function_exists(‘woo_add_compare_button’ ) ) echo woo_add_compare_button();
}
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘vald_add_compare_button’ );The problem is that both the Compare link and the Compare button are displayed, so I added this style in my child-theme CSS:
.woo_grid_compare_button_container {
display:none;
}I hope this is a correct solution. Probably not the best, but it works for me.
In the mean time I found a solution to add the Compare hyperlink under each product listed on the Product Category page (archive page):
In my child-theme, in the functions.php file I added this:
function vald_add_compare_button() {
if ( function_exists(‘woo_add_compare_button’ ) ) echo woo_add_compare_button();
}
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘vald_add_compare_button’ );The problem is that both the Compare link and the Compare button are displayed, so I added this style in my child-theme CSS:
.woo_grid_compare_button_container {
display:none;
}I hope this is a correct solution. Probably not the best, but it works for me.
Forum: Plugins
In reply to: [DK PDF] The PDF looks very nice, but no product imageJust perfect, thank you so much!
Forum: Plugins
In reply to: [DK PDF] The PDF looks very nice, but no product imageFirst I used the non-recommended way: I directly modified your dkpdf-index.php file, I added the product image, price and excerpt so I got what I need in the .pdf file, thank you!
Then I reverted your file to its original state and I used a copy of dkpdf-index.php into my child theme. I tried different combinations for the path:
I copied the dkpdf-index.php into my child theme, in this folder:
/public_html/store/wp-content/themes/child-theme/dk-pdf/templatesI also tried with dkpdf instead of dk-pdf
/public_html/store/wp-content/themes/child-theme/dkpdf/templatesor without the templates folder:
/public_html/store/wp-content/themes/child-theme/dkpdf/but still no luck. What am I doing wrong?
(I knew that only woocommerce files can be overridden by copying them into my child theme)Thank you
ValdiniaForum: Plugins
In reply to: [DK PDF] The PDF looks very nice, but no product imageThank you, I’ll give it a try!
Forum: Plugins
In reply to: [DK PDF] The PDF looks very nice, but no product imageThe website is not public yet. Could you give me your email address?
For point 2 I found this: https://docs.woothemes.com/document/woocommerce-display-category-image-on-category-archive/
In the mean time I found the solution for point 1:
I copy and modified the function woocommerce_page_title() (Located at includes/wc-template-functions.php)into my child theme’s functions.phpMy solution:
For products search you can use a3rev’s plugin Predictive search as you type:
https://www.ads-software.com/plugins/woocommerce-predictive-search/