Damn!
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Calculation formulaHello,
I believe there is a space missing between
return
and2
. The below should work.(function(){ if(fieldname3==’US’&&fieldname3==’MD’&&fieldname5<= 0.4) return 2; })();
Forum: Plugins
In reply to: [Calculated Fields Form] Value not showing up in Form 2Just what I needed. Thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Value not showing up in Form 2Thank you for letting me know that. One more question, How to create another Form Header inside a form.
Thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Value not showing up in Form 2Hello again,
I just tested my forms in AMP pages and the dependencies doesn’t seem to work. Now, I know
<script>
tags are prohibited in AMP pages unless the type isapplication/ld+json
. Is there any workaround to fix this?Ref page: https://damnripped.com/test-post/amp/
- This reply was modified 6 years, 11 months ago by Damn!.
Forum: Plugins
In reply to: [CP Blocks] Printing 2 Forms with 1 ButtonHello,
I’ve fixed it by enclosing the text content within a div container ex:
<div id="noprint">
and using some style tags like below:<STYLE> @media print{ #noprint{ display:none; } } </STYLE>
Thanks.
Forum: Plugins
In reply to: [CP Blocks] Printing 2 Forms with 1 ButtonBut the issue is, there is some text content inbetween the 2 forms. If I put them in the same container won’t the content will also print along with the forms? or am I missing something?
Forum: Plugins
In reply to: [CP Blocks] Printing 2 Forms with 1 ButtonHello,
The cache was already cleared, but I cleared it once again now. Please see these screenshots of the container:
Forum: Plugins
In reply to: [CP Blocks] Printing 2 Forms with 1 ButtonI just changed the classes to ids ex:
<div id="forms-container">
and tried to print withprintForm("#forms-container");
. Still only the first form prints.Forum: Plugins
In reply to: [CP Blocks] Printing 2 Forms with 1 ButtonI just tried enclosing the shortcodes with div containers with same class name ex:
class="forms-container"
and print it, only the first form prints.I guess the correct question would be: How to combiningly print the forms present in 2 seperate containers?
Forum: Plugins
In reply to: [CP Blocks] Printing 2 Forms with 1 ButtonHello,
The container the forms are in my page is the “entry-content” and I’ve given the fucntion as
printForm(".entry-content");
Doing that prints the forms along with all the content (including the ads) in the page. I’d like to print only the forms excluding all the content. Is it possible?
Ref page: https://damnripped.com/test/
Forum: Plugins
In reply to: [String locator] Not available under Tools anymoreHello,
Weird as it may seem, no plugin interfered with the settings as I haven’t updated any plugins in a long time. THe only thing that got updated was the wordpress core and I guess that’s the culprit.
Anyway, adding this
define( 'DISALLOW_FILE_EDIT', false );
to the wp-config.php file fixed the issue. Maybe you should add this to your docs/faqs or something.Thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Value not showing up in Form 2Ok thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Value not showing up in Form 2One more thing, I’d like to know how html,js and css minification affect the forms? I tried wp fastest cache and cloudflare minification and the forms didn’t perform well I must say. I don’t know if its because of my messy implementation, could be it for all I know. What are your thoughts on this? Have you tested this?
Forum: Plugins
In reply to: [Calculated Fields Form] Value not showing up in Form 2Hello,
Yes, I didn’t consider the how the persistence option would affect my form as I updated CFF after a really long time. And Weird as it may seem, I’m not sure how this piece of disappeared suddenly.
<script> jQuery(document).on('change', '.my-external-kg-field input', function(){ jQuery('.my-auxillary-kg-field input').val(jQuery(this).val()).change(); }); </script>
But doesn’t matter I’ve added it now. Thanks for looking into this and your time.
- This reply was modified 6 years, 11 months ago by Damn!.
Forum: Plugins
In reply to: [Calculated Fields Form] Value not showing up in Form 2Hello,
For some reason enabling the “browser’s persistence” option broke my code. Disabling it fixed the issue.
Thanks.