Plugin Author
tuxlog
(@tuxlog)
Still one feature to fix for 4.7.. Please be patient.
Thread Starter
yezzz
(@yezzz)
Can you tell what feature needs fixing? Can I use the 4.7 testversion you sent me?
In the meantime I have added this code to my templates, instead of using the function above
wp_enqueue_style("wp-greet", plugins_url('wp-greet.css', dirname(__FILE__) ) );
If I’m correct you could have placed that/similar code into where you enqueue the scripts, but…
Well, I tried before but wasn’t succesful.
How to manage this if you are on a start page showing several post excerpts and one post has the form in it?
Are you saying that excerpt of a post containing the shortcode doesn’t render the shortcode, form, css, etc. And aren’t the gallery thumbnails supposed to send the visitor to a page containing the form. Why would someone put the form in a post anyway, which will later vanish to page 2,3, etc.
Plugin Author
tuxlog
(@tuxlog)
Hello Yezzz,
just another way to get rid of unwanted css styles
add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
function my_deregister_styles() {
if ( !is_page('about-us') ) {
wp_deregister_style( 'thickbox' );
wp_deregister_style( 'style' );
}
}
The advantage is you do not have to change the plugin code.
You can place it into your functions.php.
4.7. is coming really soon
Thread Starter
yezzz
(@yezzz)
Very late, but thanks for the update!