Forum Replies Created
-
I found a solution by playing with the % shown of the column
it’s not ideal but it’s working now
in reply to: PC / Firefox v 51.1 – 2 issues of displayingit’s still not working but it seems that it’s the person computer, or at least so far, did not find the solution
Hello
Just so you know when I removed the pagination I still did not have all of the portfolio on the same page.
I went to the code and displayed 999 items – it now works
Maybe that’s a fix you can include in the next release ?
Have a good day
in reply to: Testimonial – carousel / home pageOK looking forward to the next update then !
in reply to: PC / Firefox v 51.1 – 2 issues of displaying1. Ok I’ll run some more tests tomorrow.
<p style=”text-align: left;”>Hello</p>
<p style=”text-align: left;”>OK understood,</p>
<p style=”text-align: left;”>How can we expand the number of items displayed then ?</p>in reply to: Header page visual – responsiveYour fix did not work
But found a solution while adjusting the alignement of the header (cover cover, or top right) in the <span style=”font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen-Sans, Ubuntu, Cantarell, ‘Helvetica Neue’, sans-serif; font-size: 14px; font-weight: 600;”>Page header background section</span>
My bad : wrong formulation , it’s not this one I meant – see this one : https://pho.to/AbYGC
in reply to: PC / Firefox v 51.1 – 2 issues of displayingHello
On Firefox only, on PC – version 51.1 of Firefox, two issues are annoying:
1. height of the menu has changed (see here : https://prnt.sc/e2rw8l ) , it’s higher
on the contact page : https://dev.inkei-developpement.ch/contact/2. the linkedin icon + footer mail + linkedin icon AND title disappear
Those issues are not on Chrome MAC or Chrome PC ( see issue here : https://prnt.sc/e2rwyq and here : https://prnt.sc/e2rxieWhat fix could you provide ?
in reply to: Testimonial – carousel / home pagethank you very much Mihaila but it doesn’t work on responsive, all the text don’t show
-
This reply was modified 9 years, 3 months ago by
DenisInk.
in reply to: Title page don’t display on more than one lineOk the issue was on mobile / tablet resolution
It’s now fixed, found some help
in reply to: View all translateSo bizzare, I did originally the Ctrl+F but it did not work.
All solved now thank you
in reply to: Title page don’t display on more than one lineThis reply has been marked as private.in reply to: View all translateThanks for your answer.
I had a look at porfolio.php and could find the “view all” line..
See below
Can you share exact line please ?
<?php /* Template Name: Portfolio Page */ global $cl_redata; global $cl_current_view; $cl_current_view = 'portfolio'; $id = codeless_get_post_id(); $replaced = redux_post_meta('cl_redata',(int) $id); if(!empty($replaced)) foreach($replaced as $key => $value){ $cl_redata[$key] = $value; } get_header(); get_template_part('includes/view/page_header'); ?> <section id="content" class="content_portfolio <?php echo esc_attr($cl_redata['portfolio_layout']) ?> layout-<?php echo esc_attr($cl_redata['layout']) ?>"> <?php if($cl_redata['portfolio_content'] == 'top'): ?> <?php get_template_part( 'includes/view/loop', 'page' ); ?> <?php endif; ?> <?php if($cl_redata['portfolio_layout'] == 'in_container'): ?> <div class="container"> <?php endif; ?> <div class="row-fluid filter-row"> <?php if(!empty($cl_redata['portfolio_categories'])): ?> <?php if($cl_redata['portfolio_layout'] == 'fullwidth'): ?> <div class="container"> <?php endif; ?> <!-- Portfolio Filter --> <nav id="portfolio-filter" class="span12"> <ul class=""> <li class="filter active all" data-filter="all"><?php _e('View All', 'codeless') ?> <?php foreach($cl_redata['portfolio_categories'] as $cat): ?> <?php $cat = get_term($cat, 'portfolio_entries'); ?> <?php if(is_object($cat)): ?> <li class="other filter" data-filter=".<?php echo esc_attr($cat->slug) ?>">slug) ?>"><?php echo esc_html($cat->name) ?> <?php endif; ?> <?php endforeach; ?> </nav> <?php if($cl_redata['portfolio_layout'] == 'fullwidth'): ?> </div> <?php endif; ?> <?php endif; ?> </div> <?php $grid = 'three-cols'; switch($cl_redata['portfolio_columns']){ case '3': $grid = 'three-cols'; break; case '2': $grid = 'two-cols'; break; case '4': $grid = 'four-cols'; break; case '5': $grid = 'five-cols'; break; case '1': $grid = 'one-cols'; break; } ?> <div class="row-fluid"> <?php if($cl_redata['layout'] == 'sidebar_left') get_sidebar(); ?> <?php if($cl_redata['layout'] != 'fullwidth'): ?> <div class="span9"> <?php endif; ?> <section id="portfolio-preview-items" class="<?php echo esc_attr($grid) ?> <?php echo esc_attr($cl_redata['portfolio_space']) ?> " data-cols="<?php echo esc_attr($cl_redata['portfolio_columns']) ?>"> <?php if($cl_redata['portfolio_mode'] == 'grid') get_template_part('includes/view/portfolio/loop', 'grid'); else if($cl_redata['portfolio_mode'] == 'masonry') get_template_part('includes/view/portfolio/loop', 'masonry'); wp_reset_query(); ?> </section> <?php if($cl_redata['layout'] != 'fullwidth'): ?> </div> <?php endif; ?> <?php if($cl_redata['layout'] == 'sidebar_right') get_sidebar(); ?> </div> <?php if($cl_redata['portfolio_layout'] == 'in_container'): ?> </div> <?php endif; ?> <?php if($cl_redata['portfolio_content'] == 'bottom'): ?> <?php get_template_part( 'includes/view/loop', 'page' ); ?> <?php endif; ?> </section> <?php get_footer(); ?>Ok, clear !
Thank you ! -
This reply was modified 9 years, 3 months ago by