Jean Michel Caupain
Forum Replies Created
-
I had the same problem with my theme. Jetpack’s lazy loading does actually print an extra avatar, but it’s placed between
<noscript>tags. If your theme than useswp_kses_postto escape scripts, it apparently also removes the<noscript>tags, hence making a second author image visible immediately after the original one.Ok, thank you for the quick response.
On the new website I’m building it actually does work, sorry I’m a bit confused.
I’m using MyMail. Having your subscribers on your own site is convenient as long as your list is not too big compared to what your servers can handle. No synchronization required across multiple platforms. I added some code to have visitors sign-up as a user to your site, which makes all user data available to plugins.
And for the fifth star:
– Normally I’m not a big fan of heaving many quite expensive add-ons, unless the main package is solid, which is the case for Ninja-Forms with its many free features.
– I do not completely like the admin interface, just some little details.
– A big problem to me are the submissions which are stored in the post table. After the revisions, they take most of the rows.You asked for the reasons why I didn’t give five stars, that’s why I only listed negative points, but off course there are al lot of positive points which made write a short review and give it four stars.
Looking forward to version 3!
Forum: Plugins
In reply to: [Crafty Social Buttons] Does not adapt to theme.Thank you for taking this in account.
Forum: Plugins
In reply to: [Crafty Social Buttons] Does not adapt to theme.It’s this code
$before_widget = isset($instance['$before_widget']) ? $instance['$before_widget'] : '<div class="widget widget_crafty_social_buttons">'; $after_widget = isset($instance['$after_widget']) ? $instance['$after_widget'] : '</div>';Shouldn’t it be like this.
$before_widget = isset($args['before_widget']) ? $args['before_widget'] : '<div class="widget widget_crafty_social_buttons">'; $after_widget = isset($args['after_widget']) ? $args['after_widget'] : '</div>';I’m going to wrap the shortcode in a custom widget, since I like how fast the buttons load.