Soela
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Bannerize Pro] Caching output of wp_bannerize_pro() in variableJust wanted to say a big Thank You for this amazing example of plugin support. Before I even could try out your workaround (which no doubt would have worked perfectly) I found an update with the feature implemented in the core! And the new function get_wp_bannerize_pro() of course works perfectly, too, and does exactly what I wanted.
Keep up the good work!All the best,
ChrisForum: Plugins
In reply to: [Shariff Wrapper] custom css possible?Hi Jan-Peter,
the problem with this is that sometimes
!important
is used in the shariff CSS as well (see e.g. the background-color in.shariff a:hover
). The Customizer code is inserted in the HTML <head> and gets overwritten by the shariff CSS rules in the footer.
As a workaround you can use the wp_footer action hook with low priority to write things into the footer that appear after the shariff CSS. Putting this into functions.php worked for me:function overwrite_shariff_css() { echo "<style>shariff a:hover { background-color: #ffed00 !important; }</style>\r"; } add_action('wp_footer', 'overwrite_shariff_css', 100);
Great plugin btw!
Best,
ChrisThanks for the ultra-quick reply!
Ok, I’ll patiently wait for news about multisite compatibility ;>)Forum: Fixing WordPress
In reply to: HTTP errors on media uploads after 4.5 update@randyking: This did the trick for me too, updating PHP 5.6 -> 7.0, issue gone. Thanks a lot!
Forum: Plugins
In reply to: [Simple Ads Manager] Banner not showing with drawAdsPlace()Ok, I had set up just one Ad Place. After setting up a second Ad Place and filling it with a banner it seems to work now. Not sure if this is normal intended behaviour …?
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Popup not working in some browsersYes, confirming Jacques again, works on my site, too, all of a sudden. Didn’t change anything. Seems printfirendly worked in the background, thanks for that!
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Popup not working in some browsersprintfriendly, thanks for answering!
The JS function containing the reference to https://cdn.printfriendly.com/printfriendly.js appears after my last content elements in the source code. Firefoxe’s “Inspect Element” shows that the function actually inserts the script-tag into the pages’ head. See https://preview.tanzfonds.de/
Again, a few days ago the plugin worked, nothing substantially changed in the page setup since.
The version variable in your printfriendly.js says “2015-10-03-122953466”, so the only thing that has been changed in the meantime seems to be this file.Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Popup not working in some browsersCan confirm what Jacques says. Disabling the Javascript option shows the print friendly page in the browser instead of a popup. Although on my page only the left column of the three column layout is rendered. Hmm …
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Popup not working in some browsersHello,
I’m experiencing a similar issue. The plugin was working a couple of days before, now the regular OS print dialog is triggered when I click the print friendly button. This happens in all browsers on Win and OSx. The onclick attribute of the button’s wrapping a-tag says “window.print()”, hence the described behaviour.
See https://preview.tanzfonds.de/
I’m not aware of having changed something substantial since the plugin worked, except updating some other plugs. Deactivated/activated and deinstalled/reinstalled the plugin which made no difference.Thanks and best regards,
SoelaHi Danny,
my gosh, this was a really fast support, thanks a lot for that! During I was shaping my answer the fix was already there…
I just double-checked: the
wp-head()
call was and is really there. As I said, the plugin worked quite well before I updated (really great and helpfull plug, btw ;-).But anyway, it works perfectly again!
Thanks a bunch and best regards,
Soela