badmax69
Forum Replies Created
-
Forum: Plugins
In reply to: [Germanized for WooCommerce] Im Kundenkonto keine Sendung und RetoureDen Rücksendeantrag-Button hab ich bereits drin. Komm langsam dahinter
Forum: Plugins
In reply to: [Germanized for WooCommerce] Checkout Ausgabe Steuer zus?tzliche@vendidero
Perfekt, das wars. Danke dirHi,
yes, but #login don′t workForum: Plugins
In reply to: [Calculated Fields Form] Conflict with two different forms on one pageOk, thank you ??
Forum: Plugins
In reply to: [Calculated Fields Form] Conflict with two different forms on one pageNo, that was only an example. The second form has not the same classes. In the first form I add a fieldname54 for test. And with getField(54).setVal(fieldname11) I also get the value from the second form.
But I think, that the issue is in the second form. Here I have `JSON.parse(SERVER_SIDE(‘unserialize’, 12));
jQuery(‘[id*=”fieldname’+’11_”]’).attr(‘value’, result[‘fieldname’+11]).change();`How can I limit the jQuery to form 12?
Forum: Plugins
In reply to: [Calculated Fields Form] Conflict with two different forms on one pageFor example:
(function(){ var result = fieldname11; var label = IF(result == 2, 'xxx', 'yyy'); getField(54).setVal(fieldname11); jQuery('.my-class label').html(label); })()
Both variations have the same result: the value from fieldname11 of the second form.
Forum: Plugins
In reply to: [Calculated Fields Form] Wait until fieldname is filled from ServerFast and perfect as always. Thank you ??
Forum: Plugins
In reply to: [Calculated Fields Form] Value of fieldname cannot be formattedPerfect – you are the best ??
Thank you
Forum: Plugins
In reply to: [Calculated Fields Form] Value of fieldname cannot be formattedIn addition:
If I set the comma in the field “Symbol for grouping thousands in the field’s …” of fieldname3, I get the formatted number in the second calculated field (e.g. 4,500), but here jQuery(‘.Length’).html(r); again only outputs 4500.
Forum: Plugins
In reply to: [Calculated Fields Form] Change Label with jQuerySorry, figured it out. The label should not be empty before.
- This reply was modified 5 years, 11 months ago by badmax69.
Forum: Plugins
In reply to: [Calculated Fields Form] Change Label with jQueryUnfortunately this code does not work.
Forum: Plugins
In reply to: [Calculated Fields Form] Change text of checkbox with valuesForum: Plugins
In reply to: [Calculated Fields Form] Input mask saves in another database table. How?No, I meant that this entry already existed. No new entry will be added.
Thanks for pointing out that there is still an entry in the wp_cp_calculated_fields_form_posts table.
Forum: Plugins
In reply to: [Calculated Fields Form] Input mask saves in another database table. How?Hi,
Database host, user, password and name are taken from the wp-config.php. Database table of the plugin NinjaTables is called wp_ninja_table_items.
In NinjaTables I created a table called Test. In this table there is a column with the name “Name”. There is already an entry marked as a row.
The next row is to be filled with the data from CFF.In CFF I have a form with a field “Name” (fieldname1).
The code snippet looks like this:
{ $field1 = mysqli_escape_string( $db_link, $params[ 'fieldname1' ] ); mysqli_query( $db_link, "INSERT INTO <code>".DATABASE_TABLE."</code> ('name') VALUES ('$field1');" ); mysqli_close($db_link); }
The table of NinjaTables looks different of course. The value is there {“name”:”John Doe”}
Do you have any idea where the error is? Because it is still written in the wp_cp_calculated_fields_form_posts.
Forum: Plugins
In reply to: [Calculated Fields Form] Print Form with multiple Page breaksHm, nope.
I have the printForm(‘[id*=”cp_calculatedfieldsf_pform”]’); and it still print the last site