WJ Notepad re-size - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Plugins (http://get-simple.info/forums/forumdisplay.php?fid=13) +--- Thread: WJ Notepad re-size (/showthread.php?tid=7304) |
WJ Notepad re-size - datiswous - 2015-05-24 The WJ Notepad plugin shows a Fancybox with (editable) content, but it is not re-sizable (and a bit small) by default. With the following edit and use of GS Custom Settings plugin you can re-size the Fancybox: Somewhere (between line 63-65) in the plugin's wj_notepad.php you see the following code: Code: |false|400|elastic|function|ajax|data|autoDimensions|autoScale|ready||document|autoSize|height|type|notepadmodal|transitionIn|width|707|fancybox| You change 400 to: <?php get_setting('wj_notepad_size','height'); ?> and 707 to: <?php get_setting('wj_notepad_size','weight'); ?> So it looks like this: Code: |false|<?php get_setting('wj_notepad_size','height'); ?>|elastic|function|ajax|data|autoDimensions|autoScale|ready||document|autoSize|height|type|notepadmodal|transitionIn|width|<?php get_setting('wj_notepad_size','weight'); ?>|fancybox| Save the following code as wj_notepad_size_data.json and import it in the admin of GS Custom Settings: Code: { You can then, in the admin of GS Custom Settings change height and weight of the Fancybox, by number, but without px after it. EDIT: When this hack is done, disabling the plugin GS Custom Settings gives you a white screen of death. To fix this, delete the notepad.php plugin file. |