Title: sfk's Replies | WordPress.org

---

# sfk

  [  ](https://wordpress.org/support/users/sfk/)

 *   [Profile](https://wordpress.org/support/users/sfk/)
 *   [Topics Started](https://wordpress.org/support/users/sfk/topics/)
 *   [Replies Created](https://wordpress.org/support/users/sfk/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/sfk/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/sfk/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/sfk/engagements/)
 *   [Favorites](https://wordpress.org/support/users/sfk/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wp tell a friend popup form] Spam robots](https://wordpress.org/support/topic/spam-robots-1/)
 *  Thread Starter [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [9 years ago](https://wordpress.org/support/topic/spam-robots-1/#post-9280492)
 * I use it but…. I block spammers and robots with another plugins and without captcha.
   
   First: [http://www.redsandmarketing.com/plugins/wp-spamshield/](http://www.redsandmarketing.com/plugins/wp-spamshield/)
   Second: [http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin](http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin)
 * And I use yet:
    [https://perishablepress.com/blackhole-bad-bots/](https://perishablepress.com/blackhole-bad-bots/)
   [http://bad-behavior.ioerror.us](http://bad-behavior.ioerror.us) [https://perishablepress.com/block-bad-queries/](https://perishablepress.com/block-bad-queries/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Companion Sitemap Generator - Simple, Smart, and SEO-Ready] Auto or only manual](https://wordpress.org/support/topic/auto-or-only-manual/)
 *  Thread Starter [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/auto-or-only-manual/#post-7374400)
 * Thanks for quick reply. I made exactly this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Companion Sitemap Generator - Simple, Smart, and SEO-Ready] Auto or only manual](https://wordpress.org/support/topic/auto-or-only-manual/)
 *  Thread Starter [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/auto-or-only-manual/#post-7374398)
 * Hi,
    thank you. How to update it? Override existing files or reinstall it? What
   is better way?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [includes/translation-install.php on line 59](https://wordpress.org/support/topic/includestranslation-installphp-on-line-59/)
 *  [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/includestranslation-installphp-on-line-59/#post-6878122)
 * Thank 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate WP Query Search Filter] Highlight search terms](https://wordpress.org/support/topic/highlight-search-terms-2/)
 *  Thread Starter [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/highlight-search-terms-2/#post-6971528)
 *     ```
       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 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate WP Query Search Filter] Highlight search terms](https://wordpress.org/support/topic/highlight-search-terms-2/)
 *  Thread Starter [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/highlight-search-terms-2/#post-6971527)
 * This 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 Loop
 *  if ( $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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate WP Query Search Filter] Highlight search terms](https://wordpress.org/support/topic/highlight-search-terms-2/)
 *  Thread Starter [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/highlight-search-terms-2/#post-6971485)
 * I 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?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popup Builder - Create highly converting, mobile friendly marketing popups.] How to search inside popups](https://wordpress.org/support/topic/how-to-search-inside-popups/)
 *  Thread Starter [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/how-to-search-inside-popups/#post-6893397)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ALO EasyMail Newsletter] [Plugin: ALO EasyMail Newsletter] syntax error](https://wordpress.org/support/topic/plugin-alo-easymail-newsletter-syntax-error/)
 *  [sfk](https://wordpress.org/support/users/sfk/)
 * (@sfk)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/plugin-alo-easymail-newsletter-syntax-error/#post-1654534)
 * I found same in alo-easymail_main.php. Change next time <? width <?php in line
   158 and 211… All best!

Viewing 9 replies - 1 through 9 (of 9 total)