talentoracle
Forum Replies Created
-
Back online thank goodness!
We’re having the same issue. Thanks for advising if anyone finds a fix!
Forum: Plugins
In reply to: [Nooz] Adding a space after a press release dateThank you @farinspace
- This reply was modified 6 years, 6 months ago by talentoracle.
Forum: Plugins
In reply to: [Calculated Fields Form] Printing forms with page breaksThis note is only to assist anyone else with this issue in the future. If your site is hosted on wordpress.com, cp-blocks won’t work since it contains javascript.
Forum: Plugins
In reply to: [Calculated Fields Form] Printing forms with page breaksThank you very much but regretfully this did not work. I made no changes to the following print code or the print button. I only added the code mentioned from your response in a HTML Content field and tried it twice. The result is to print only the final page as it was previously.
<SCRIPT>
function printForm(){
var w = window.open(null, ‘Print_Page’, ‘scrollbars=yes’);
jQuery(‘#fbuilder input’).each(function () {
var e = jQuery(this);
e.text(e.val()).attr(‘value’, e.val());
if (e.hasClass(‘large’))
e.css(‘width’, ‘100%’);
if (typeof e.prop(‘checked’) != ‘undefined’ && e.prop(‘checked’))
e.attr(‘CHECKED’, e.prop(‘checked’));
});
var html = jQuery(‘#fbuilder’).html();
jQuery(‘#fbuilder TEXTAREA’).each(function () {
var e = jQuery(this).parent().html();
html = html.replace(e, jQuery(this).val());
});
jQuery(‘#fbuilder SELECT’).each(function () {
var e = jQuery(this).parent().html();
html = html.replace(e, jQuery(this).find(‘option:selected’)[0].text);
});
w.document.write(html);
w.document.close();
w.print();
}
</SCRIPT>Forum: Plugins
In reply to: [Nooz] Shared on LinkedInGot it. Thank you @farinspace !