Viewing 30 results - 1 through 30 (of 54 total)
  • Author
    Search Results
  • #1471083

    ja – wenn du dir die Lang Files ansiehst, ist im de_DE_formal.po und im de_DE.po die gleiche Übersetzung dafür vorgesehen.
    Entweder bearbeitest du jetzt diese Langfiles und lädst Child-Theme Lang files hoch, oder du nutzt Plugins um solche Dinge verändern zu können.
    Wenn es nicht allzuhäufig vorkommt kannst du diese Übersetzung auch via snippet in der child-theme functions.php ändern:

    function my_text_strings( $translated_text, $text, $domain ){
      switch ( $translated_text ){
        case 'If you are not happy with the results below please do another search'   :  $translated_text = __( 'Hier jetzt deine neue Übersetzung hinein', $domain ); break;
      }
      return $translated_text;
    }
    add_filter('gettext', 'my_text_strings', 20, 3);
    #1471079
    slikslok
    Participant

    Hallo,
    in der der search.php ist nur die englische Textversion (“If you are not happy with the results below please do another search”). Ich möchte aber die deutsche Version ändern (“Suchergebnis nicht zufriedenstellend? Versuche es mal mit einem Wort oder einer anderen Schreibweise”).
    In welcher Datei?

    Danke und Grüße
    Tim

    #1360820
    This reply has been marked as private.
    #1291773

    Hey rsilvestre,

    Please copy search.php to your child theme, then cut this part out:

                        <div class='page-heading-container clearfix'>
                            <section class="search_form_field">
                                <?php
                                echo "<h4>".__('New Search','avia_framework')."</h4>";
                                echo "<p>".__('If you are not happy with the results below please do another search','avia_framework')."</p>";
    
                                get_search_form();
                                echo "<span class='author-extra-border'></span>";
                                ?>
                            </section>
                        </div>

    And paste it just above this comment:

    <!--end content-->

    Best regards,
    Rikard

    #1171515
    r0gerliu
    Participant

    Hi support team,
    My site recently want to change the text “If you are not happy with the results below please do another search”, so I modify the “search.php” file from theme editor, but it’s looks like search function is crash, then I revert back to the original text still not working.
    Please help me debug my site ( I did’nt use child theme)

    #1136874

    Hi,

    Looks like the theme has no translations for the Hrvatski or Crotian language yet (see private field). The translation progress is only 1%. You will have to translate the PO file manually using the POEdit software.

    // https://poedit.net/

    We tried to translate it using the Loco Translate plugin, but it generates the wrong markup.

    #: search.php:32 
    msgid "If you are not happy with the results below please do another search" 
    msgstr "" 
    "Ako niste zadovoljni s donjim rezultatima, pokušajte još jednom pretražiti"
    
    

    Please try to use the POEdit software.

    Best regards,
    Ismael

    #1077416

    Hi Ismael,

    Thank you for your quick reply.
    Unfortunately, nothing happed.
    I am providing you additional information:
    Page URL: https://zoomit.gr/wordpress_2/?s=fdgfdgdgdf
    screenshot: https://prnt.sc/mwd5tn

    Whole search.php with your modification:

    <?php
    if ( !defined(‘ABSPATH’) ){ die(); }

    global $avia_config;

    /*
    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    */
    get_header();

    // allows to customize the layout
    do_action( ‘ava_search_after_get_header’ );

    $results = avia_which_archive();
    echo avia_title(array(‘title’ => $results ));

    do_action( ‘ava_after_main_title’ );
    ?>

    <div class=’container_wrap container_wrap_first main_color <?php avia_layout_class( ‘main’ ); ?>’>

    <div class=’container’>

    <main class=’content template-search <?php avia_layout_class( ‘content’ ); ?> units’ <?php avia_markup_helper(array(‘context’ => ‘content’));?>>

    <div class=’page-heading-container clearfix’>
    <section class=”search_form_field”>
    <?php
    echo “<h4>”.__(‘New Search’,’avia_framework’).”</h4>”;
    echo “<p>”.__(‘If you are not happy with the results below please do another search’,’avia_framework’).”</p>”;

    get_search_form();
    echo “<span class=’author-extra-border’></span>”;
    ?>
    </section>
    </div>

    <?php
    if(!empty($_GET[‘s’]) || have_posts())
    {
    echo “<h4 class=’extra-mini-title widgettitle’>{$results}</h4>”;

    /* Run the loop to output the posts.
    * If you want to overload this in a child theme then include a file
    * called loop-search.php and that will be used instead.
    */
    $more = 0;
    global $posts;
    $post_ids = array();
    foreach($posts as $post) $post_ids[] = $post->ID;

    if(!empty($post_ids))
    {
    $atts = array(
    ‘type’ => ‘grid’,
    ‘items’ => get_option(‘posts_per_page’),
    ‘columns’ => 4,
    ‘class’ => ‘avia-builder-el-no-sibling’,
    ‘paginate’ => ‘yes’,
    ‘use_main_query_pagination’ => ‘yes’,
    ‘custom_query’ => array( ‘post__in’=>$post_ids, ‘post_type’=>get_post_types() )
    );

    $blog = new avia_product_slider($atts);
    $blog->query_entries();
    echo “<div class=’entry-content-wrapper’>”.$blog->html().”</div>”;
    if(empty($post_ids)) {
    echo “<div class=’entry-content-wrapper’>”.__(‘No products found.’, ‘avia_framework’).”</div>”;
    }
    }

    }

    ?>

    <!–end content–>
    </main>

    <?php

    //get the sidebar
    $avia_config[‘currently_viewing’] = ‘page’;

    get_sidebar();

    ?>

    </div><!–end container–>

    </div><!– close default .container_wrap element –>

    <?php get_footer(); ?>

    I am looking forward to your news.

    Best regards,
    Nick

    #1077194

    Hi Ismael,

    Thank you for your excellent support! I really appreciate it!

    I am providing you the whole content of search.php:

    <?php
    if ( !defined(‘ABSPATH’) ){ die(); }

    global $avia_config;

    /*
    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    */
    get_header();

    // allows to customize the layout
    do_action( ‘ava_search_after_get_header’ );

    $results = avia_which_archive();
    echo avia_title(array(‘title’ => $results ));

    do_action( ‘ava_after_main_title’ );
    ?>

    <div class=’container_wrap container_wrap_first main_color <?php avia_layout_class( ‘main’ ); ?>’>

    <div class=’container’>

    <main class=’content template-search <?php avia_layout_class( ‘content’ ); ?> units’ <?php avia_markup_helper(array(‘context’ => ‘content’));?>>

    <div class=’page-heading-container clearfix’>
    <section class=”search_form_field”>
    <?php
    echo “<h4>”.__(‘New Search’,’avia_framework’).”</h4>”;
    echo “<p>”.__(‘If you are not happy with the results below please do another search’,’avia_framework’).”</p>”;

    get_search_form();
    echo “<span class=’author-extra-border’></span>”;
    ?>
    </section>
    </div>

    <?php
    if(!empty($_GET[‘s’]) || have_posts())
    {
    echo “<h4 class=’extra-mini-title widgettitle’>{$results}</h4>”;

    /* Run the loop to output the posts.
    * If you want to overload this in a child theme then include a file
    * called loop-search.php and that will be used instead.
    */
    $more = 0;
    global $posts;
    $post_ids = array();
    foreach($posts as $post) $post_ids[] = $post->ID;

    if(!empty($post_ids))
    {
    $atts = array(
    ‘type’ => ‘grid’,
    ‘items’ => get_option(‘posts_per_page’),
    ‘columns’ => 4,
    ‘class’ => ‘avia-builder-el-no-sibling’,
    ‘paginate’ => ‘yes’,
    ‘use_main_query_pagination’ => ‘yes’,
    ‘custom_query’ => array( ‘post__in’=>$post_ids, ‘post_type’=>get_post_types() )
    );

    $blog = new avia_product_slider($atts);
    $blog->query_entries();
    echo “<div class=’entry-content-wrapper’>”.$blog->html().”</div>”;
    }

    }

    ?>

    <!–end content–>
    </main>

    <?php

    //get the sidebar
    $avia_config[‘currently_viewing’] = ‘page’;

    get_sidebar();

    ?>

    </div><!–end container–>

    </div><!– close default .container_wrap element –>

    <?php get_footer(); ?>

    I am looking forward to your news.

    Best regards,
    Nick

    #1076484

    Hey Basilis,

    Thanks for the link, I used the first suggestion as my problem has nothing to do with Woo prices. Unofrtunately, the blog category results look exactly the same.

    Please let me know if I screwed something up.

    search.php file (Enfold, site runs a child theme)

    <?php
    if ( !defined(‘ABSPATH’) ){ die(); }

    global $avia_config;

    /*
    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    */
    get_header();

    // allows to customize the layout
    do_action( ‘ava_search_after_get_header’ );

    $results = avia_which_archive();
    echo avia_title(array(‘title’ => $results ));

    do_action( ‘ava_after_main_title’ );
    ?>

    <div class=’container_wrap container_wrap_first main_color <?php avia_layout_class( ‘main’ ); ?>’>

    <div class=’container’>

    <main class=’content template-search <?php avia_layout_class( ‘content’ ); ?> units’ <?php avia_markup_helper(array(‘context’ => ‘content’));?>>

    <div class=’page-heading-container clearfix’>
    <section class=”search_form_field”>
    <?php
    echo “<h4>”.__(‘New Search’,’avia_framework’).”</h4>”;
    echo “<p>”.__(‘If you are not happy with the results below please do another search’,’avia_framework’).”</p>”;

    get_search_form();
    echo “<span class=’author-extra-border’></span>”;
    ?>
    </section>
    </div>

    <?php
    if(!empty($_GET[‘s’]) || have_posts())
    {
    echo “<h4 class=’extra-mini-title widgettitle’>{$results}</h4>”;

    /* Run the loop to output the posts.
    * If you want to overload this in a child theme then include a file
    * called loop-search.php and that will be used instead.
    */
    $more = 0;
    global $posts;
    $post_ids = array();
    foreach($posts as $post) $post_ids[] = $post->ID;

    if(!empty($post_ids))
    {
    $atts = array(
    ‘type’ => ‘grid’,
    ‘items’ => get_option(‘posts_per_page’),
    ‘columns’ => 3,
    ‘class’ => ‘avia-builder-el-no-sibling’,
    ‘paginate’ => ‘yes’,
    ‘use_main_query_pagination’ => ‘yes’,
    ‘custom_query’ => array( ‘post__in’=>$post_ids, ‘post_type’=>get_post_types() )
    );

    $blog = new avia_product_slider($atts);
    $blog->query_entries();
    echo “<div class=’entry-content-wrapper’>”.$blog->html().”</div>”;
    }

    ?>

    <!–end content–>
    </main>

    <?php

    //get the sidebar
    $avia_config[‘currently_viewing’] = ‘page’;

    get_sidebar();

    ?>

    </div><!–end container–>

    </div><!– close default .container_wrap element –>

    <?php get_footer(); ?>

    Then Quick CSS:

    .template-search .post-entry.slide-entry {
    position: relative;
    clear: none;
    }

    #top .av-main-nav > li > a {
    font-weight: normal !important;
    }

    .avia-menu-fx {
    display: none;
    }

    .avia-layerslider.avia-shadow {
    box-shadow: none !important;
    }

    .av-iconlist-small li {
    margin-bottom: 3px;
    font-family: “adelle-sans”,sans-serif !important;
    font-style: normal;
    font-weight: 300;
    }

    .avia-button {
    font-size: 18px!important;
    }

    .avia-arrow {
    display: none;
    }

    #top .av-caption-style-overlay a.av-masonry-item-with-image .av-inner-masonry-content {
    background:rgba(236,0,140,0.9) !important;
    }

    .av-masonry-sort * {
    font-size: 17px;
    }

    .avia-testimonial-content {
    background-color: #ffffff!important;
    border-color: rgba(255,255,255,0.7)!important;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    }

    .avia-testimonial-name {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #000000!important;
    font-weight: 300;

    }

    .avia-testimonial-subtitle {
    font-size: 17px !important;
    #595959!important;
    }

    .home #layer_slider_1 .ls-wrapper.ls-in-out {
    text-shadow: 0px 0px 15px #000000;
    }

    @media only screen and (max-width: 767px) {
    figcaption.av-inner-masonry-content {
    display: none!important;
    }}

    span.logo {
    margin-top: 5px;
    }

    #footer .widget {
    text-align: center;
    }

    #footer {
    padding: 0;
    }

    #footer p {
    font-size: 13px!important;
    }

    #footer .widget{
    margin-bottom:0px!important;
    }

    #socket .copyright {
    text-align: center;
    width: 100%;
    }

    #socket .social_bookmarks {
    text-align: center;
    width: 60%;
    }

    #footer {
    padding-bottom: 0;
    }

    .widgettitle {
    text-transform: none;
    }

    #1008731

    In reply to: traslate spanish

    Hi,

    Thank you for using Enfold.

    You can edit the search.php to translate the text manually or install/use the following plugin.

    // https://wordpress.org/plugins/loco-translate/

    If you chose to modify the theme file, look for these line of codes:

    search.php line 31:

    echo "<h4>".__('New Search','avia_framework')."</h4>";
    

    search.php line 32:

    echo "".__('If you are not happy with the results below please do another search','avia_framework')."";
    

    Best regards,
    Ismael

    #1008435

    Hello, if something else needs to be translated:

    New Search = Nueva búsqueda
    If you are not happy with the results below please do another search =Si no está satisfecho con los resultados a continuación, haga otra búsqueda
    3 search results for: martin. = 3 resultados de búsqueda para: martin

    http://oi67.tinypic.com/2exo6j4.jpg
    Thanks for you help

    #1007916

    In reply to: traslate spanish

    Hello, if something else needs to be translated:

    New Search = Nueva búsqueda
    If you are not happy with the results below please do another search =Si no está satisfecho con los resultados a continuación, haga otra búsqueda
    3 search results for: martin. = 3 resultados de búsqueda para: martin

    http://oi67.tinypic.com/2exo6j4.jpg
    Thanks for you help

    #935754
    friefodspor
    Participant

    Hi Kriesi
    I would like to change three things at the search results page (see link below):
    1. I would like to completely remove the upper part – the one shows the search field again with this text above it:
    “Ny søgning
    If you are not happy with the results below please do another search”
    How do I remove that?

    2. There is a spelling mistake in this danish sentence: 8 SØGE RESULTATER FOR PORTUGUES
    I should be ‘SØGERESULTATER’ in spelled in one word. How do I change that?
    3. How do I remove the date and the number of comments showed below each search result?

    Thank you Marie

    #847745

    Hi,

    Please go to enfold/search.php file and remove following lines

                        <div class='page-heading-container clearfix'>
                            <section class="search_form_field">
                                <?php
                                echo "<h4>".__('New Search','avia_framework')."</h4>";
                                echo "<p>".__('If you are not happy with the results below please do another search','avia_framework')."</p>";
    
                                get_search_form();
                                echo "<span class='author-extra-border'></span>";
                                ?>
                            </section>
                        </div>

    We would recommend you to use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and apply the changes there.

    Best regards,
    Yigit

    #846958

    I added this code to my functions.php file, but am not sure what to do next:

    add_filter('avf_ajax_search_messages', 'my_search_text', 10,2);
    		
    function my_search_text ($search_messages, $search_query)
    {
    //   possible values to change:
    //   
    //	$search_messages = array(
    //	            'no_criteria_matched' => __("Sorry, no posts matched your criteria", 'avia_framework'),
    //	            'another_search_term' => __("Please try another search term", 'avia_framework'),
    //	            'time_format'         => get_option('date_format'),
    //	            'all_results_query'   => http_build_query($_REQUEST),
    //	            'all_results_link'    => home_url('?' . http_build_query($_REQUEST)),
    //	            'view_all_results'    => __('View all results','avia_framework')
    //            );
    	
    	$search_messages ['no_criteria_matched'] = 'your message text to replace';
    	
    	return $search_messages;
    	
    }

    Can you tell me where I need to go to actually edit the text? I am not very familiar with php, so I would appreciate the help! I would also like to completely remove the text “If you are not happy with the results below please do another search” under “New Search” completely. Thank you!

    #845839
    MJM
    Participant

    Hello,

    I am having problems changing the text on the search page. I went into loop-search.php and tried to change this text:

                   <?php _e('Sorry, no posts matched your criteria. Please try another search', 'avia_framework'); ?>
                </p>

    To this:

                   <?php _e('Sorry, we couldn't find what you were looking for. Please try searching again.', 'avia_framework'); ?>
                </p>

    But when I changed it, I just got the loading screen every time I tried to search. I switched the code back and now the search is working, but I would like to change the text.

    I’m also trying to figure out how to remove the text “If you are not happy with the results below please do another search” completely, but can’t find it in the loop-search.php doc.

    Here is an example search page: http://mjm.flywheelsites.com/?s=fdsf

    I’d appreciate your help, thanks!

    vlkwatchman
    Participant

    where can i go to customize this text when a user searches?

    it’s the basic wordpress theme text, i believe…

    thanks,

    chris

    #803740
    artisforever
    Participant

    Hello,

    I’d like to change the default text: “If you are not happy with the results below please do another search” please.

    I’d also like to change the default breadcrumbs text: “You are here” and also the color please.

    I looked at a few other support posts about changing the PHP, but that crashed my website when I edited that particular breadcrumbs php file. Thanks for providing me with the correct solutions.

    i dont know where this comes from – but the fast an quick and dirty way was:

    .search_not_found > p {
        display: none;
    }

    so in total the rule was:

    .search_not_found h3, .search_not_found > p,
    .search_not_found .widget.avia_combo_widget {
        display: none;
    }

    how do you obtain the multilingual site? A plugin?
    Because this “If you are not happy with the results below please do another search” should be turkish too! if you use a good language switcher !

    #690207
    Uri_Berry
    Participant

    Hi Kriesi,

    I have several problems with the search page, aka view all results page after clicking for a search,
    on the english site (/eng/) it does not appear… takes me back to the homepage…

    On the Hebrew site there is a lot of strings I need to change,
    (‘If you are not happy with the results below please do another search’) etc. where do I find these strings?

    Thanks,
    Uri

    #685718

    Hey,

    I found something and change the enfold.pot into some german, but I can’t fully translate only write in the context field. It translated me now the tab in the browser but not the search results.

    “New Search

    If you are not happy with the results below please do another search
    Search results for: klasse

    Nothing Found
    Sorry, no posts matched your criteria. Please try another search

    You might want to consider some of our suggestions to get better results:

    Check your spelling.
    Try a similar keyword, for example: tablet instead of laptop.
    Try using more than one keyword.”

    I would like to translate that all

    Regards,

    Julien

    #678114
    Dave
    Participant

    Hi Team,

    There is a strings show after button “If you are not happy with the results below please do another search”

    I would like to translate it to everything, so I did install the “String Locator” and run the scan.

    Now It comes up bunch of the lang files, in which files should I edit with, please? or correct me if i were wrong.

    Regards

    #657843

    In reply to: Dutch translation

    Hi,

    Please replace the code with:

    # @ avia_framework
    #: search.php:32
    msgid "If you are not happy with the results below please do another search"
    msgstr "Niet tevreden met de zoekresultaten hieronder? Probeer het dan nogmaals:"

    Go back to the Loco Translate panel, select the language then SYNC the files to regenerate the .mo file.

    Best regards,
    Ismael

    #656441

    In reply to: Dutch translation

    Hi Ismael,

    Thanks for your reply.
    The translation text is available in nl_NL.po, I think the file is not addressed.
    Could that be possible?

    # @ avia_framework
    #: search.php:24
    msgid “If you are not happy with the results below please do another search”
    msgstr “Niet tevreden met de zoekresultaten hieronder? Probeer het dan nogmaals:”

    Kind regards,
    Robert

    #654665

    In reply to: Dutch translation

    Good morning Ishmael,

    Thanks for your reply, the language set to “Nederlands” is perfect.
    Sorry for the misunderstanding but the search results page and 404 are in English
    (New Search If you are not happy with the results below please do another search)
    You want to have another look for me?

    Kind regards,
    Robert

    #629925
    dondela
    Participant

    Dear support team,
    some words don´t show up translated to german. But when i look in the de_DE.po file the word are translated in german?
    For example the phrase “If you are not happy with the results below please do another search” when i do search.
    Do i have to copy the language files in the child them folder maybe?
    Thanks for helping

    #528597
    reggiescott
    Participant

    I need to remove the search box and all the elements above the horizontal rule on the search results page. All this copy as well:

    New Search
    If you are not happy with the results below please do another search

    http://blog.bodybio.com/?s=sugar

    #506501
    Bass
    Participant

    Hi Guys,

    I have a couple of queries:

    1. Creating a grid style results page from a search
    2. Add a sidebar to the page but needs to override the Enfold ->Options Pages have no sidebar ? im assuming Search.php is a post type “Page”

    The following code I have put together from bits and pieces I have found in the forum however the get_post_types() function seems to return alot of unwanted results as I have over 40 plugins running so it is picking up for example Paypal IPN post types ? could we perhaps pass an array to ‘post_types’=> array(‘product’, ‘post’) ? and just have it search posts and products ?

    <?php
    global $avia_config;
    
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	 get_header();
    	 //$avia_config['layout']['current'] = $avia_config['layout']['sidebar_left'];
    	 
    	 //	allows to customize the layout
    	 do_action( 'ava_search_after_get_header' );
    
    	 $results = avia_which_archive();
    	 echo avia_title(array('title' => $results ));
    	 
    	 do_action( 'ava_after_main_title' );
    	 ?>
    
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    
    			<div class='container'>
    
    				<main class='content template-search <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content'));?>>
    
                        <div class='page-heading-container clearfix'>
                            <section class="search_form_field">
                                <?php
                                echo "<h4>".__('New Search','avia_framework')."</h4>";
                                echo "<p>".__('If you are not happy with the results below please do another search','avia_framework')."</p>";
    
                                get_search_form();
                                echo "<span class='author-extra-border'></span>";
                                ?>
                            </section>
                        </div>
    
                        <?php
                       if(!empty($_GET['s']))
    						{
    						echo "<h4 class='extra-mini-title widgettitle'>{$results}</h4>";
    						
    						global $posts;
    						$post_ids = array();
    						foreach($posts as $post) $post_ids[] = $post->ID;
    						
    						$atts   = array(
    						'type' => 'grid',
    						'items' => 60/*get_option('posts_per_page')*/,
    						'columns' => 4,
    						'class' => 'avia-builder-el-no-sibling',
    						'paginate' => 'yes',
    						'use_main_query_pagination' => 'yes',
    						'custom_query' => array( 'post__in'=>$post_ids,'post_types'=>array('product', 'post'))
    						
    							);
    						
    						//print_r(get_post_types());
    						
    						$blog = new avia_post_slider($atts);
    						$blog->query_entries();
    						echo "<div class='entry-content'>".$blog->html()."</div>";
    						}
    
                        ?>
    
    				<!--end content-->
    				</main>
    
    				<?php
    
    				//get the sidebar
    				$avia_config['currently_viewing'] = 'shop';
    
    				get_sidebar();
    				
    							//$avia_config['currently_viewing'] = 'shop';
    //echo '<aside class="sidebar sidebar_left alpha units"><div class="inner_sidebar extralight-border">';
    //dynamic_sidebar( 'Shop Overview Page' );
     // $default_sidebar = false;
    //echo '</div></aside>';
    
    				?>
    
    			</div><!--end container-->
    
    		</div><!-- close default .container_wrap element -->
    
    <?php get_footer(); ?>
    
    #439815

    Hey!

    1-Please add following code to Quick CSS

    .ajax_search_response {
      background-color: white;
    }

    2- Please open Search.php file and remove following

    <div class='page-heading-container clearfix'>
                            <section class="search_form_field">
                                <?php
                                echo "<h4>".__('New Search','avia_framework')."</h4>";
                                echo "<p>".__('If you are not happy with the results below please do another search','avia_framework')."</p>";
    
                                get_search_form();
                                echo "<span class='author-extra-border'></span>";
                                ?>
                            </section>
                        </div>

    Cheers!
    Yigit

    #433495

    In reply to: Search results page

    Hi,

    I found the text:

    New Search
    If you are not happy with the results below please do another search

    on the search.php file and changed it – It works great.

    There’s also the title: “… search results for: ” – where can I find it to change it (it’s not on search,php file)?

    Thanks

Viewing 30 results - 1 through 30 (of 54 total)