sfk
Forum Replies Created
-
Forum: Plugins
In reply to: [wp tell a friend popup form] Spam robotsI use it but…. I block spammers and robots with another plugins and without captcha.
First: https://www.redsandmarketing.com/plugins/wp-spamshield/
Second: https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-pluginAnd I use yet:
https://perishablepress.com/blackhole-bad-bots/
https://bad-behavior.ioerror.us
https://perishablepress.com/block-bad-queries/Forum: Plugins
In reply to: [Companion Sitemap Generator - HTML & XML] Auto or only manualThanks for quick reply. I made exactly this.
Forum: Plugins
In reply to: [Companion Sitemap Generator - HTML & XML] Auto or only manualHi,
thank you. How to update it? Override existing files or reinstall it? What is better way?Forum: Fixing WordPress
In reply to: includes/translation-install.php on line 59Thank you very much! I replace openssl in php ext folder with new version and now wordprees work fine… WordPress 3 work with earlier openssl but wordpress 4 doesn’t… THANK YOU James!!!!!
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Highlight search termsadd_filter('uwpqsf_result_tempt', 'customize_output', '', 4); function customize_output($results , $arg, $id, $getdata ){ // The Query $apiclass = new uwpqsfprocess(); $query = new WP_Query( $arg ); ob_start(); $result = ''; // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post();global $post; echo '<li>'.get_permalink().'</li>'; } echo $apiclass->ajax_pagination($arg['paged'],$query->max_num_pages, 4, $id, $getdata); } else { echo 'no post found'; } /* Restore original Post Data */ wp_reset_postdata(); $results = ob_get_clean(); return $results; }
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Highlight search termsThis code bellow I add to functions.php:
add_filter(‘uwpqsf_result_tempt’, ‘customize_output’, ”, 4);
function customize_output($results , $arg, $id, $getdata ){
// The Query
$apiclass = new uwpqsfprocess();
$query = new WP_Query( $arg );
ob_start(); $result = ”;
// The Loopif ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();global $post;
echo ‘- ‘.get_permalink().’
‘;
}
echo $apiclass->ajax_pagination($arg[‘paged’],$query->max_num_pages, 4, $id, $getdata);
} else {
echo ‘no post found’;
}
/* Restore original Post Data */
wp_reset_postdata();$results = ob_get_clean();
return $results;
}Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Highlight search termsI try this code before. I added to functions.php and later add to ultimate-wpqsf.php… and outcome only list of links and nothing else. I miss something?
Happy New Year!
I found all text in sg_html_popup table’s row content. When I try custom search plugins: not work. Eg. Ultimate WP Query Search Filter don’t shows popup builder’s custom post type and impossible choose it (however other custom post found and work with them)Forum: Plugins
In reply to: [ALO EasyMail Newsletter] [Plugin: ALO EasyMail Newsletter] syntax errorI found same in alo-easymail_main.php. Change next time <? width <?php in line 158 and 211… All best!