Viewing 1 replies (of 1 total)
  • You can find the title in the file uwpqsf-process-class.php, I’ve added my own title by doing the following:

    function uajax_result($arg, $id,$pagenumber,$getdata){
        	$query = new WP_Query( $arg );
    	$html = '';
    		//print_r($query);	// The Loop
    	if ( $query->have_posts() ) {
    	  $html .= '<h1 class="postsby"><span>'.__('TITLE OF THE PAGE:', 'UWPQSF' ).'</span></h1>';
    	   while ( $query->have_posts() ) {
    	        	$query->the_post();global $post;

    See the $html .= ‘<h1 … part. The code begins at Line 285.

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Edit Results Page Text’ is closed to new replies.