Graicifyd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] HIDE ENTRY TITLE ON PAGESActually this solves the problem perfectly.
.page .entry-title { display: none !important; }Forum: Themes and Templates
In reply to: [GeneratePress] HIDE ENTRY TITLE ON PAGESThanks, this works
Forum: Plugins
In reply to: [Calculated Fields Form] Vertical SlidersThank you so much, you are amazing.
Forum: Plugins
In reply to: [Calculated Fields Form] MAKE TOOLTIP APPEAR ON PAGE LOADThanks.
Forum: Plugins
In reply to: [Calculated Fields Form] WRAP SUMMARY FIELD WITH EXTRA TEXTThank you so much, this worked.
Forum: Plugins
In reply to: [Calculated Fields Form] Auto select radio button optionThank you.
I have implemented it this way:
(function(){ if(fieldname114<=5.5 )return getField(127).setVal('0'); if(fieldname114>5.5&&fieldname115<=9.4 return getField(127).setVal('1'); if(fieldname114>9.4&&fieldname115<=10) return getField(127).setVal('2'); if(fieldname114>10&&fieldname115<=12) return getField(127).setVal('3'); if(fieldname114>12&&fieldname115<=14) return getField(127).setVal('4'); if(fieldname114>14&&fieldname115<=16) return getField(127).setVal('5'); if(fieldname114>16&&fieldname115<=20) return getField(127).setVal('6'); })()I am not sure my implementation is correct because the options are not getting checked automatically.
This is the page I am working on.
Forum: Plugins
In reply to: [Calculated Fields Form] CSS FOR WORD WRAPAmazing, thank you so muck.
Forum: Plugins
In reply to: [Calculated Fields Form] CSS FOR WORD WRAPPlease one more thing, how can I make the result appear in a bracket? For example:
(23)
I tried this:
(function(){ var result = PREC((fieldname46*(0.4/4)),2); jQuery('.result-60').html((result))+' kg'); return result; })()but I didn’t get it right.
Forum: Plugins
In reply to: [Calculated Fields Form] CSS FOR WORD WRAPThanks, you are awesome!
Forum: Plugins
In reply to: [Calculated Fields Form] CSS FOR WORD WRAPI have been able to effect the table here thank you. Would I be able to include a symbol to be displayed at the end in this code as it appears in regular calculated field?
For example, I have this formula:
(function(){ var result = PREC(fieldname30,0); jQuery('.result-1').html(result); return result; })()How can I include a ‘g’ symbol at the end to have something like ‘3 g’?
Thank you for your support.
Forum: Plugins
In reply to: [Calculated Fields Form] CSS FOR WORD WRAPThank you so much, you are amazing.
Forum: Plugins
In reply to: [Calculated Fields Form] Creating an HTML Table and inserted calculated fieldThank you…this is great.
Forum: Plugins
In reply to: [Calculated Fields Form] DISPLAY TWO FIELDS WITH A COLON SEPERATORThank you so much
Forum: Plugins
In reply to: [Calculated Fields Form] CONVERT DECIMAL TO TIMEThank you! One more thing. If I wanted to multiply the right side of the decimal by a number, for instance
.45*2
How can I do it?
Forum: Plugins
In reply to: [Calculated Fields Form] DEPENDENCY ON CALCULATE BUTTONAmazing! Thank you so much.