jthomps123
Forum Replies Created
-
Forum: Plugins
In reply to: wpupdatestream and wpwhitesecurity hacksThis has happened to my shared hosting, and injected malware code into all of my sites’ .js files. I havent found the backdoor yet, and it keeps coming back. The offending file is t44.php, found it once in my root, and also in multiple wp-includes/text/Diff directories.
Forum: Plugins
In reply to: [Calculated Fields Form] Hot to attach calculate function to objectOK i’ve figured a work-around. I put a ‘calculate-button’ into the form and hidden it via CSS. Then used jquery ($(‘#fieldname109_1’).trigger(‘click’);) to fire it off when clicking another element.
If you have a more elegant way of starting the recalculate function please let me know. Thanks!
Forum: Plugins
In reply to: [Calculated Fields Form] Hot to attach calculate function to objectSure. Please view this link:
https://dev.eyestagedit.com/inm/place-an-order/
WHen you enter numbers and choose a ‘package’ a running total for that section gets put up into the bar at the top/right. I’ve also used a little jquery to ‘deselect’ the package by clicking the description that lights up red adn to deselect the radio button.
My issue, using jquery to uncheck the radio button does not ‘recalculate’ the fields dynamically using ajax.
Is there a function I can add to that <div> using .click() to fire off the dynamic recalculation?
Thanks!
I was just trying some basic <h1> and or <div> tags with classes.
The Theme is Salient from Theme Nectar.
https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Thanks for any help!
Forum: Plugins
In reply to: [Calculated Fields Form] Remove fields from emailI do not see the exactly what im looking for.
I have some fields that I used just for display and calculations on the form, that I never want sent in the email. However I have a few that need to display only when a value is there. So im not sure how this is supposed to work.
How would I do something like this: fieldname1 if not empty or if not 0.00?
Thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Pro Version gone after upgradeI cannot find my download link – it was purchased a while ago. I’ve already submitted via support with now answer.
Thank you for your help. Please advise.
Jason
Ended up not needing an s2 hook. Used a general wp hook:
add_action( ‘register_form’, ‘myfunction’ );
function myfunction() {
my stuff
}
I just ran into this problem after a 3.8 upgrade to a multisite yesterday. Copying the job and deleting the original worked for me.