Forum Replies Created

Viewing 30 posts - 1 through 30 (of 45 total)
  • Author
    Posts
  • Please update this thread if solution is found, we have a similar problem here! Thx!

    in reply to: Exclude Sections with @media print in style.css #1130352

    Awesome Victoria, you saved my day!

    Thank you and kind regards!

    in reply to: Exclude Sections with @media print in style.css #1130136

    Hmm, really? But we just need the element’s name to exclude the slider section. That’s a bit disappointing in contrast to the experiences we made with the kriesi-support in many projects in the last couple of years..

    regards
    Tobias

    in reply to: Change position of post-nav buttons below post #1129965

    You are the greatest- :) Even if i can’t believe a my editior didn’t see that. Thanks!!

    in reply to: Change position of post-nav buttons below post #1112003

    Hi Ismael,

    sorry for my late response, was travelling. Yes, of course i add your CSS, but no success. I created a copy of the project where I’m able to provide admin login credentials for you. I hope this helps to solve the problem easier.

    Kind regards, thanks again
    Tobi

    • This reply was modified 5 years, 5 months ago by check-t.
    in reply to: Change position of post-nav buttons below post #1109803

    Hi,

    i would love to give you access, unfortunately i cannot because of company restrictions.

    This is our single.php based on your post:

    <?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();
    
    	$title  = __('Blog - Latest News', 'avia_framework'); //default blog title
    	$t_link = home_url('/');
    	$t_sub = "";
    
    	if(avia_get_option('frontpage') && $new = avia_get_option('blogpage'))
    	{
    		$title 	= get_the_title($new); //if the blog is attached to a page use this title
    		$t_link = get_permalink($new);
    		$t_sub =  avia_post_meta($new, 'subtitle');
    	}
    
    	if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
    	
    	do_action( 'ava_after_main_title' );
    
    ?>
    
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    
    			<div class='container template-blog template-single-blog '>
    
    				<main class='content units <?php avia_layout_class( 'content' ); ?> <?php echo avia_blog_class_string(); ?>' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
    
                        <?php
                        /* Run the loop to output the posts.
                        * If you want to overload this in a child theme then include a file
                        * called loop-index.php and that will be used instead.
                        *
                        */
                            get_template_part( 'includes/loop', 'index' );
    						
    						$blog_disabled = ( avia_get_option('disable_blog') == 'disable_blog' ) ? true : false;
    						echo "<div class='custom-post-nav'>";
    echo avia_post_nav();
    echo "</div>";
    						if(!$blog_disabled)
    						{
    	                        //show related posts based on tags if there are any
    	                        get_template_part( 'includes/related-posts');
    	
    	                        //wordpress function that loads the comments template "comments.php"
    	                        comments_template();
    						}
                        ?>
    
    				<!--end content-->
    
    				</main>
    
    						
    				<?php
    				$avia_config['currently_viewing'] = "blog";
    				//get the sidebar
    				get_sidebar();
    
    				?>
    
    			</div><!--end container-->
    
    		</div><!-- close default .container_wrap element -->
    
    <?php 
    		get_footer();

    This still leads to the problems i described in my former post. We need a css just like in the mockup in the private content:

    – The two Buttons for prev and next post are positioned below each other directly under the post, relative to the post-content. i would like to show the buttons them beside of each other at this position with 50% / 50% width

    – in the current state only on a display with of below 768px i have the buttons below the post, as the customer wishes – on wider screens the buttons are still floating ta the edge of the screen. How can we manage to have it always below the post?

    Kind regards!

    in reply to: Change position of post-nav buttons below post #1109518

    Yes, of course i tested your CSS but the customer REALLY wants the buttons below the text, positioned RELATIVE to it. Unfortunately my or your taste in Layout and Design doesn’t count here. Sorry for my misunderstand-able writing.

    Regards
    Tobi

    • This reply was modified 5 years, 5 months ago by check-t.
    in reply to: Change position of post-nav buttons below post #1109487

    Allright,

    i sorted it out and it seems to work. Problem was, that a custom Post-template was used by a colleague with no documentation. Thats why all changes didn’t showed up. Big Sorry!!

    Just two more CSS things

    – The two Buttons for prev and next post are positioned below each other under the post, relative to the post-content. i would like to show them beside of each other at this position with 50% / 50% width – how can i do this?
    – only on a display with of below 768px i have the buttons below the post, as the customer wishes – on wider screens the buttons are still floating ta the edge of the screen. How can we manage to have it always below the post?

    The actual CSS for Styling is this:

    
    #top .custom-post-nav {
        clear: both;
    }
    
    #top .avia-post-nav {
        position: relative;
        height: 110px;
    margin: 10px 50px 10px 50px;
    background-color:rgba(0, 0, 0, 0.5);
    }
    
    #top .avia-post-nav .entry-info-wrap {
        width: auto;
    }

    Thanks again!

    • This reply was modified 5 years, 5 months ago by check-t.
    in reply to: Change position of post-nav buttons below post #1109456

    Hi Günni,

    and did you see my comment on that post and portfolio had to be created by default editor – not alb !

    – I misunderstood that, yes, all posts are created with the dafault editor.

    I downloaded your files and use them in the child theme. But still no success at all, as you can see in the current state.

    I’ve got the feeling, that avia-post-nav is not called by the footer.php for blog posts but only for portfolio posts. Because commenting out “echo $avia_post_nav;” only makes it disappear in portfolio posts like the timeline but not the jobs.

    I just don’t know what’s wrong here…

    in reply to: Change position of post-nav buttons below post #1109237

    Hi Günni, hi all

    i already tried that, but no success. The only change i see, is that the NAV disappears on a timeline-post-types we use on that website. See link for that in private content. But the new NAV Position by

    echo “<div class=’custom-post-nav’>”;
    echo avia_post_nav();
    echo “</div>”;
    is ignored.

    Is it possible, that the post_nav class first have to be introduced before echo?
    kind regards, have a nice evening

    in reply to: Change position of post-nav buttons below post #1109110

    Hi Günni,

    we, have to be built with the standard editor, reasons are workflow and permissions of the company website.
    It’s all a bit hard to explain because i cannot show you the private data / links. But thanks again for your efforts!
    @Moderators – any ideas?

    • This reply was modified 5 years, 5 months ago by check-t.
    in reply to: Change position of post-nav buttons below post #1109107

    Select to disable or enable the post navigation that links to the next/previous post on single entries. Setting is also used for portfolio. Use filter avf_post_nav_settings to customize.

    No, we really don’t just want to remove it. Setting this would disable the Nav globally. We just want to move that navigation below the posts.

    • This reply was modified 5 years, 5 months ago by check-t.
    in reply to: Change position of post-nav buttons below post #1109075

    Update: Even if I

    edit the footer.php file and remove this code around line 239 to disable the default navigation:

    echo $avia_post_nav;

    the old nav doesn’t disappear. The linked blog template doesn’t seem to use footer.php to display the nav…? I’m feeling a bit stupid now.
    Ideas?

    • This reply was modified 5 years, 5 months ago by check-t.
    in reply to: Change position of post-nav buttons below post #1109069

    Thanks a lot Ismael,

    i just added your code except removing the default nav in the footer because until now the new nav doesn’t work. Just nothing seems to change. We saved the changes, deactivated the cache. Is there another file i would have to edit? We are using a child theme, can this be a problem?

    best regards
    Tobi

    in reply to: Change position of post-nav buttons below post #1108950

    Hi,
    thanks for your thoughts which i share, but what counts is what our customer wants. So we just look for a solution to move those buttons.
    I can‘t share the project with a public link for contractors reasons. Regards!

    in reply to: Change position of post-nav buttons below post #1108818

    Hi Victoria,

    we are urgently asked to solve this issue – can you help, please?

    Kind regards
    Tobi

    Hi Jordan, thanks – it perfectly worked. Sorry, had another project to complete so the feedback took ‘some’ time.

    Kind regards!

    in reply to: Change position of post-nav buttons below post #1107527

    Hi Victoria,

    of course, you find the link in the private content.

    Thanks again,
    Tobi

    • This reply was modified 5 years, 5 months ago by check-t.

    Hi Ismael,

    i just did’nt understand your first reply, “register card module” is german-english :) We meant the tab sections. Manually creating Div-IDs on the page as you suggested worked for us, thank you!

    Kind regards
    Tobi

    in reply to: Not all Tabs are visible on Mobile view #1087478

    Great!! Thank you, Jordan.

    Hi Rikard,

    the register card module at the anchor #standorte contains individual links for each location, see in the private content. These links are generated by your register card module. But how to link externally to directly to these entries? The customer has to send the location links to his clients as a common usecase.

    Kind regards
    Tobi

    in reply to: Not all Tabs are visible on Mobile view #1081946

    Hi,

    thanks a lot Jordan, that seems to be a good solution! The only problem is now, that the viewport still slides right if i choose an item on the right side. How can we disable this?

    Kind regards!!

    in reply to: Masonry Gallery Pagination #1080297

    Hi,

    yes, but unfortunately it didn’t help, The whole site crashed, just showed lots of numbers in the browser. Couldn’t investigate further as the whole project is life.

    Kind regards
    Tobi

    in reply to: Masonry Gallery Pagination #1079590

    Hi,

    did you find a solution yet? We have the same Problem (see private Content)

    Thanks!

    Hi Jordan,

    i’ll have to move the test of this a bit to the future, project is already life, big company, testing is organised in several steps.

    Thank you
    Tobias

    Ah, sorry, read it a second time. You mean moving it out of the ‘@media only screen’ to make it valid for all resolutions. Ok, we’ll give it a try. Thx!

    Hm, but this is exactly the CSS that is part of the former code. What should it change and how?

    Thank you!

    Hi Ismael,

    thank you for your reply and the great work of the whole team. This already helps to make the sticky header logo not overlap over the sticky header bar.

    But this CSS limits the hight of both, the large transparent logo and the sticky bar logo to 62px.
    What is the actual class of the sticky logo, we only want this should be smaller, transparent logo should remain as big as it is.

    Kind regards
    Tobias

    in reply to: Icon Grid Flip Box animate initally #1058917

    Ok, thanks.

    in reply to: Reduce Icon Grid height (vertical spacing) #1058325

    Hi Victoria,

    Perfect support, thanks a lot!!
    That solved the problem.

    Have a nice day!

Viewing 30 posts - 1 through 30 (of 45 total)