marimarjm
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Bug on price using woocommerce shortcodessure, its on a temporary domain:
https://loremipsum.mx/goodlers/
If you check, the second product on the page first loads the correct prices $9000 and then changes to the one selected on the first product con the page, and it changes its price selection based on the prices selected on the first product.
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] Custom flag image sizeHello, i encounter the same problem and i saw the issue wasn’t solved on any of the support forums, so i searched for a way to fix it and ifound this worked:
On your functions.php you have to remove the image_size given by the plugin to the flags that makes them crop.
function wpdocs_remove_plugin_image_sizes() {
remove_image_size( ‘trp-custom-language-flag’);
}
add_action(‘init’, ‘wpdocs_remove_plugin_image_sizes’);After you do that you have to regenerate your thumbnails, you can use a plugin to do that.
And last you’ll have to give some css to make it look the way you like on your site:
img.trp-flag-image { width: 55px!important; height: 30px!important; }
and that’s all, it worked for me, i hope it works for you.
- This reply was modified 2 years, 7 months ago by marimarjm.
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] Flag image sizeHello, i encounter the same problem and i saw the issue wasn’t solved on any of the support forums, so i searched for a way to fix it and ifound this worked:
On your functions.php you have to remove the image_size given by the plugin to the flags that makes them crop.
function wpdocs_remove_plugin_image_sizes() {
remove_image_size( ‘trp-custom-language-flag’);
}
add_action(‘init’, ‘wpdocs_remove_plugin_image_sizes’);After you do that you have to regenerate your thumbnails, you can use a plugin to do that.
And last you’ll have to give some css to make it look the way you like on your site:
img.trp-flag-image { width: 55px!important; height: 30px!important; }
and that’s all, it worked for me, i hope it works for you.
- This reply was modified 2 years, 7 months ago by marimarjm.
Thank you, i hope that update can be soon?