renuskanth
Forum Replies Created
-
Forum: Plugins
In reply to: [Schema] Plugin conflict with ADs injection code in Archive pagesThank you, working perfectly.
Forum: Plugins
In reply to: [Schema] Plugin conflict with ADs injection code in Archive pagesThanks Hesham, i will wait for the update or point me to dev version so i can test it
Forum: Plugins
In reply to: [Schema] Plugin conflict with ADs injection code in Archive pagesadd_action( ‘the_post’, ‘archive_adsense_injection’ );
function archive_adsense_injection() {
if( is_archive() ) {
global $wp_query;
if( $wp_query->current_post%8== 0 && $wp_query->current_post >0 && $wp_query->current_post < 18 ) {
echo ‘AD CODE Here’;
}
}
}Forum: Plugins
In reply to: [WP Super Cache] New version of WPSCMinanother issue –
Genesis Simple Share plugin V 1.0.4 – icons don’t appear on posts when minify is enabled.
Icons show up when it is disabled.Forum: Plugins
In reply to: [WP Super Cache] New version of WPSCMinHi,
i got below mentioned error after following installation steps.Fatal error: Unknown: Cannot use output buffering in output buffering display handlers in Unknown on line 0
error log message –
/public_html/wp-content/plugins/wp-super-cache/plugins/min/lib/JSMin.php): failed to open stream: No such file or directory in /public_html/wp-content/plugins/wp-super-cache/plugins/WPSCMin.php on line 131i have edited the file WPSCMin.php by replacing “JSMin.php”
with “JSMinPlus.php” to make it work.Looks like old file name was not updated in WPSCMin.php to reflect changes in minify plugin (https://github.com/mrclay/minify).
Please let me know if any other changes are required.
Thanks
Renu