Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • in reply to: DIsplaying last modified date #327665

    Thanks Joshue, that did the trick!

    Awesome support!

    in reply to: DIsplaying last modified date #327609

    Hi there,

    Thanks Joshue, we are getting there. Modified date is finally showing. Anyway to get it (floating)outside the main content? Floating to the left of browser window.

    I’m trying to get it to work with CSS but it won’t budge :).

    • This reply was modified 10 years, 2 months ago by m00n.
    in reply to: DIsplaying last modified date #327540
    This reply has been marked as private.
    in reply to: DIsplaying last modified date #327501

    Hi Joshue, Thanks for your response.

    Added the line, but nothing shows up.

    Site consists of pages build with the page builder. I need the last modified date showing on every page. I’m not using a blog or portfolio feature. If possible showing the modified date on the bottom. (no footer/socket active).

    in reply to: DIsplaying last modified date #327112

    Hi there,

    I understand, but is there anyway to get it to work? I tried placing it in the loop, but i can’t get it to show up anywhere.

    in reply to: DIsplaying last modified date #326391

    Hi there,

    Thanks for the responses. I can’t get it to work. Any further suggestions?

    Greatly appreciated!

    in reply to: DIsplaying last modified date #325502
    This reply has been marked as private.
    in reply to: DIsplaying last modified date #325492

    Hi there,

    Thanks for the response. I tried the following code:

    <?php
    echo "<div><p>Last modified: <?php the_modified_date('F j, Y'); ?> at <?php the_modified_date('g:i a'); ?></p></div>";
    ?>

    I added it in loop-index.php but it shows up nowhere.

    When i add it to footer.php. It only shows “Last Modified at .

    in reply to: Website max width 1210 – How to make it bigger? #319924

    @jjdenmark version 3.0 which will release “soon” has this option in the backend as far as i know. (Correct me if i’m wrong support team).

    in reply to: Questions about Search function and IE8 #313885

    Thanks! Solved!

    in reply to: Questions about Search function and IE8 #313025

    Hi Peter,

    Thanks for your followup.

    Problem 2) is solved indeed with an redirect plugin. Not really a nice way but it works. Maybe something for Kriesi to look at in one of the following updates?

    Thanks for the solution for my 3) problem. It worked like a charm.

    Last question i swear :) Is it possible to use the Search field without the live search? I’ve allready display: none the live results, but when typing a search string, it still tries to do a live search and sometimes interrups the input.

    • This reply was modified 10 years, 3 months ago by m00n.
    in reply to: Questions about Search function and IE8 #312443

    Hi Peter,

    Thanks for your response.

    Problem 1) is solved, changed the code a bit so that “Search” isn’t hardcoded in the searchbox (if that makes sence).

    Problem 2) thats almost what i want. Can i make that script to redirect to ?s= to ?s=noresult (Noresult is a madeup string with no search results).

    And as last: I edited the search.php to exist out of 1/4 1/2 1/4 elements. In the first 1/4 element i want to load a custom created widgeteara named searchleft. Is this possible and if yes? What php code should i use.

    • This reply was modified 10 years, 3 months ago by m00n.
    in reply to: Questions about Search function and IE8 #311944

    Anyone any suggestions?

    domein.com/?s= should return:

    <article class="entry entry-content-wrapper clearfix" id="search-fail">
                <p class="entry-content" itemprop="text">De zoekopdracht heeft geen resultaten opgeleverd.</p>
    </article>

    I have edited the search.php do exist out of 1/4(empty) a 1/2 (element with search results) and a 1/2 (with static image).

    What code should i use to insert a created widget area name searchsidebar in the 1/4 element?

    • This reply was modified 10 years, 3 months ago by m00n.
    in reply to: Questions about Search function and IE8 #310329

    Hi Devin, thanks for the response.

    1) But how do i achieve that when people search for something and the results are shown, on that moment/page the search field in the menu is reset to: Search (Zoek).

    2) How do i achieve when people search for nothing and just hit the Search Icon that the result page shows a search-fail message like it does when people search for something and it hasn’t been found on the site.

    In that instance it shows:

    <article class="entry entry-content-wrapper clearfix" id="search-fail">
                <p class="entry-content" itemprop="text">De zoekopdracht heeft geen resultaten opgeleverd.</p>
    </article>

    How do i get that to show op?

    And for the IE8 problems, I solved 1) and 4) both just using images. 1) an image as background as fallback for IE8 and 4) just inserting a Image in front of toggle title and removing the :before class. 2) I’ve uploaded a new favicon and going to upload 1 to the base of the wp installation and recommend the client to clear IE8 browser history cause that would solve it in most cases. But i presume that problem 3) is fixable.

    • This reply was modified 10 years, 3 months ago by m00n.
    in reply to: Changing layout Search Results #305493

    Layout problem solved:

    <?php
    global $avia_config;
    
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	 get_header();
    
    	 $results = avia_which_archive();
    	 echo avia_title(array('title' => $results ));
    	 ?>
    
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    
    			<div class='container'>
                
                <div class="flex_column av_one_fourth first  avia-builder-el-0  el_before_av_one_half  avia-builder-el-first  ">
                </div>
                
                <div class="flex_column av_one_half   avia-builder-el-2  el_after_av_one_fourth  el_before_av_one_fourth  ">
    
    				<main class='content template-search <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content'));?>>
    
                        
       			<?php
                                echo "<h2>".__('Zoekresultaten')."</h2>";
    				?>
    
                        <?php
                        if(!empty($_GET['s']) || have_posts())
                        {
                           
    
                            /* 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;
                            get_template_part( 'includes/loop', 'search' );
     			
    
    			echo "<h4 class='extra-mini-title widgettitle'>{$results}</h4>";
    
                        }
    
                        ?>
    
    				<!--end content-->
    				</main>
    				</div>
    			
                
                <div class="flex_column av_one_fourth   avia-builder-el-4  el_after_av_one_half  avia-builder-el-last  ">
    <div class="avia-image-container  av-styling-  avia-builder-el-5  avia-builder-el-no-sibling  avia-align-center " itemscope="itemscope" itemtype="https://schema.org/ImageObject"><div class="avia-image-container-inner"><img class="avia_image " src="http://yourwebsite/image.jpg" alt="" title="isbn-search" itemprop="contentURL"></div></div>
    </div>
    
    		</div><!-- close default .container_wrap element -->
            
    </div><!--end container-->
    
    <?php get_footer(); ?>
    • This reply was modified 10 years, 4 months ago by m00n.
Viewing 15 posts - 1 through 15 (of 15 total)