Bonaldi
Forum Replies Created
-
Hi,
I fixed the theme incompatibility with jQuery 3.5.1.
I will put a negative rating because of the lack of support.I share the fix here for the featured gallery anyway:
in js/isotope-setting.js,
replace
jQuery(window).on('load',function(){
by
jQuery(document).ready(function(){
To improve compatibility, you can also fix js/photograph-main.js and for all occurrences:
replace
.scroll(function( .click(function(
by
.on('scroll',function( .on('click',function(
Regards.
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Number of blocksHi Chris,
jQuery 3.5.1 compatibility.
jQuery.fn.resize() event shorthand is deprecated in mappress-google-maps-for-wordpress/build/index_mappress.js
Regards
Forum: Plugins
In reply to: [Product Add-Ons for WooCommerce] 2.1.9 bugs ?Hi,
As PTE, I translated the plugin into French on wp.org: the .json works.
If you want to test on your ticket system, you can download the files there.I’ll keep looking for reasons why they don’t work in manual.
Regards.
Forum: Plugins
In reply to: [WP-Optimize - Clean, Compress, Cache.] 500 internal server error sorryHi,
I have the same problem.
On activation I have a 500 internal server error.
Even if I put only the above rules and the WP-Optimize rules.
To recover the site, I have to remove the WP-Optimize rules in the .htaccess.Regards.
Forum: Plugins
In reply to: [Product Add-Ons for WooCommerce] 2.1.9 bugs ?May I contact you here?
https://www.bizswoop.com/pre-sales-contact/Forum: Plugins
In reply to: [Product Add-Ons for WooCommerce] 2.1.9 bugs ?I saw that the folder name had changed from
core
toscripts
.
I tested your switch solution above: it doesn’t work.
Besides, to update a language, it must be active on Translate.
I think there is a problem with manual language files.
Regards.Forum: Plugins
In reply to: [Product Add-Ons for WooCommerce] 2.1.9 bugs ?In 2.1.11 the translations still don’t take .json.
Forum: Plugins
In reply to: [Product Add-Ons for WooCommerce] 2.1.9 bugs ?You are informed so I close this topic.
Forum: Plugins
In reply to: [Product Add-Ons for WooCommerce] 2.1.9 bugs ?Link for animated .gif about 2.1.9. : https://we.tl/t-OTHTngbhv1
Forum: Plugins
In reply to: [Product Add-Ons for WooCommerce] 2.1.9 bugs ?About the translations, the files are all manually in place, (.mo, .po, .json) in the /lang folder of the plugin. I even duplicated them in the wp-content/languages/plugins folder.
With version 2.1.9, the translation is incomplete, the .json files are not found.
With a downgrade by ftp to version 2.0.34 everything is translated, even from the .json files.Strange, isn’t it?
Forum: Plugins
In reply to: [Product Add-Ons for WooCommerce] 2.1.9 bugs ?Hi,
Sorry, for not being clear enough.
When I talk about checkbox, I mean the one in the Required field, in backend.
However, I noticed that it didn’t work in frontend for select type.
Have you tested all types of addons?Otherwise, if I have a moment, I’ll try to make you a video.
Regards.
Forum: Plugins
In reply to: [Weight zone shipping for WooCommerce] Missing translations text-domainsI don’t need it personally, but it can be useful to others.
Forum: Themes and Templates
In reply to: [OnePress] Not all Dots appearsHi,
I get the same issue, not solved with 2.2.6.
Regards.Forum: Plugins
In reply to: [Extra Product Options for WooCommerce] NOW translated in FRENCH!Hi,
OK, I will help you to make it fully translatable :In settings/epofw-admin-settings.php lines 25, 178, 181, 184, 187
Please useesc_html__
Missing text-domain in includes/class-epofw-field-table.php, lines 250 and 252
Tabs and line breaks break the translation with Poedit.
Replace in settings/epofw-about-info.php, line 23 with
<?php esc_html_e( 'Extra Product options are much easier, more flexible, and faster to use than variable products. Instead of generating thousands of variations, Enable customers to customize products with additional options such as text fields, checkboxes, radio buttons, dropdowns, and more. You can add extra product options to selected Products or selected Categories.', 'extra-product-options-for-woocommerce' ); ?></p>
Delete it as it is already declared in extra-product-options-for-woocommerce.php line 30 and also settings/epofw-constant.php line 19:
if ( ! defined( 'EPOFW_PLUGIN_BASENAME' ) ) { define( 'EPOFW_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); }
Delete this which does not work for translations in settings/epofw-constant.php line 31 to 39
if ( ! defined( 'EPOFW_FIELD_LABEL' ) ) { define( 'EPOFW_FIELD_LABEL', esc_html__( 'Field Title', 'extra-product-options-for-woocommerce' ) ); } if ( ! defined( 'EPOFW_FIELD_SUB_LABEL' ) ) { define( 'EPOFW_FIELD_SUB_LABEL', esc_html__( 'Field Sub Title', 'extra-product-options-for-woocommerce' ) ); } if ( ! defined( 'EPOFW_ADDITIONAL_RULES' ) ) { define( 'EPOFW_ADDITIONAL_RULES', esc_html__( 'Additional Rules', 'extra-product-options-for-woocommerce' ) ); }
settings/epofw-common-function.php line 148:
replace
'title' => esc_html( EPOFW_FIELD_LABEL ),
with
'title' => esc_html__( 'Field Title', 'extra-product-options-for-woocommerce' ),
settings/epofw-common-function.php line 1255:
replace
'title' => esc_html( EPOFW_FIELD_SUB_LABEL ),
with
'title' => esc_html__( 'Field Sub Title', 'extra-product-options-for-woocommerce' ),
settings/epofw-common-function.php line 1176:
replace
'title' => esc_html( EPOFW_FIELD_LABEL ),
with
'title' => esc_html__( 'Field Title', 'extra-product-options-for-woocommerce' ),
settings/epofw-common-function.php line 1255:
replace
'title' => esc_html( EPOFW_FIELD_LABEL ),
with
'title' => esc_html__( 'Field Title', 'extra-product-options-for-woocommerce' ),
settings/epofw-common-function.php line 1802:
replace
$field_title = esc_html( EPOFW_ADDITIONAL_RULES );
with
$field_title = esc_html__( 'Additional Rules', 'extra-product-options-for-woocommerce' );
Regards.
- This reply was modified 3 weeks, 5 days ago by Bonaldi.
Forum: Plugins
In reply to: [Weight zone shipping for WooCommerce] Missing translations text-domainsYes, I do.