boddhid
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Builder for WPForms] Control image compression?I found a solution for the background-image: use “center” instead of “fill” and then by trial and error find the right pixel size for the background.
Forum: Plugins
In reply to: [PDF Builder for WPForms] Control image compression?Or would it help to use a specific width and height for the background image, to prevent compression? E.g. 3505 x 2477
Now the Preview.pdf created by PDF Builder when opened with Photoshop is 3505 x 2477 and the original background image 3508 x 2480
https://www.eft-center-hannover.de/basistraining/download/Certificate.jpg
PS Sorry, this topic should have been created under WooCommerce PDF Builder. Please let me know if I should open it there and close this one.Forum: Plugins
In reply to: [Quick Buy Now Button for WooCommerce] “Failed security check”-issueMoved the shop https://www.eft-center-hannover.de from multisite to single site. The “Failed security check”-issue disappeared.
Forum: Plugins
In reply to: [Autoptimize] How to find out which js to excludeThanks!! So, exclude JS-files until the error disappears 🙂
Great, it works like a charm.Forum: Plugins
In reply to: [Autoptimize] How to find out which js to excludeThanks a lot! Several JS errors occur, when we ‘Aggregate JS-files?’ is ticked.
We reproduced the issue on our test-environment:
http://test.raspberryhill.eu/naechste-paarseminare/The M.E. Calendar has close to 50 JS and JSON files in different subdirs, but when those are all excluded from aggregation by excluding wp-content/plugins/modern-events-calendar/ then what could be the cause?
Any help is welcome. I’m going to get a coffee…
Forum: Developing with WordPress
In reply to: Shortcode add 1 to pageThanks for pointing out! Of course “1” is equivalent with “true” in PHP – how could I forget.
I changed the shortcode handler (see below) and now it works as a charm.
function members_index($params = array()) { ob_start(); include(get_theme_root() . '/includes/index.php'); $ob_str=ob_get_contents(); ob_end_clean(); return $ob_str; } // register shortcode add_shortcode('members-index', 'members_index');