Forum Replies Created
-
in reply to: Codeless slider image sixe issue
The images are not cropped they are loaded full size, if you need the slider to be more than 635 in height, just click the Codeless Slider button and on the left panel adjust the height of the slider. I think this can help you
Thanks
in reply to: woocommerce translationOk do this:
1. Total Payable, go to june/woocommerce/checkout/review-order.php and change at the bottom, total payable to ‘Total’ and the string ‘june’ to ‘woocommerce’
2. About the large text in the bottom, can’t tell anything because it isn’t part of June translations, but you can edit it directly in the code if you want. I can send you exactly the file
3. I will send you a new generated Pot file maybe is the issue.
in reply to: Codeless slider image sixe issuePlease can you send me a link to this page?
Thanks
in reply to: Folie contentYou’re welcome, if you like our theme and support please take 1 minute to leave us a review/rating on Themeforest, it’s important for us :)
Thank you so much
-
This reply was modified 6 years, 10 months ago by
Ludjon.
in reply to: Hide Navigation MenuHello,
If I understand well, if you need to remove only the Menu, you can simply delete it from Header Builder on Customizer.
If you want to hide all header, do this custom css:
.header_container{ display:none; }Let me know and please send me a link to view exactly what you need
Thanks
Hello,
Please replace this function under functions.php
function codeless_get_page_layout(){ // Default $codeless_page_layout = codeless_get_mod( 'page_overall_layout' ); // Check if query is a blog query if( codeless_current_view() == 'blog' ) $codeless_page_layout = codeless_get_mod( 'bloglayout' ); // Blog Post layout if( codeless_current_view() == 'single_blog' ) codeless_page_layout = codeless_get_mod( 'singlebloglayout' ); // Add single page layout check here if( codeless_get_mod( 'overwrite_layout' ) && codeless_get_mod( 'layout' ) ) $codeless_page_layout = codeless_get_mod( 'layout' ); // if no sidebar is active return 'fullwidth' if( ! codeless_is_active_sidebar() ) $codeless_page_layout = 'fullwidth'; // Apply filter and return $codeless_page_layout = apply_filters( 'codeless_page_layout', $codeless_page_layout ); return $codeless_page_layout; }Added in update list
Thanks
in reply to: Portfolio Basic ViewHello,
If you are using the Grid Portfolio, do this:
Go to includes/view/portfolio/loop-grip.php and replace content with:
<?php global $codeless_used_for_element; $columns = (isset($codeless_used_for_element)) ? $codeless_used_for_element['columns'] : codeless_get_mod('portfolio_columns'); $sidebar = codeless_get_page_layout(); $style = (isset($codeless_used_for_element)) ? $codeless_used_for_element['style'] : codeless_get_mod('portfolio_style'); $extra_class = ''; if(isset($codeless_used_for_element) && $codeless_used_for_element['carousel'] == 'yes') $extra_class .= ' swiper-slide'; if(!isset($codeless_used_for_element)) codeless_set_portfolio_query(); if(have_posts()){ $item_grid_class = ''; switch($columns){ case "1": $item_grid_class = 12; break; case "2": $item_grid_class = 6; break; case "3": $item_grid_class = 4; break; case "4": $item_grid_class = 3; break; case "5": $item_grid_class = 5; break; } ?> <?php if(!isset($codeless_used_for_element)): ?> <div class="filterable row"> <?php endif ?> <?php $the_id = 0; $loop_counter = 0; while (have_posts()) : the_post(); $loop_counter++; $the_id = get_the_ID(); $alt = get_post_meta($the_id, '_wp_attachment_image_alt', true); $sort_classes = ""; $item_categories = get_the_terms( $the_id, 'portfolio_entries' ); if(is_object($item_categories) || is_array($item_categories)) { foreach ($item_categories as $cat) { $sort_classes .= $cat->slug.' '; } } $cats = wp_get_object_terms(get_the_ID(), 'portfolio_entries'); $link = get_permalink(); if(codeless_get_mod('single_custom_link_switch') && codeless_get_mod('single_custom_link') ) $link = codeless_get_mod('single_custom_link'); ?> <!-- Portfolio Normal Mode --> <?php if($style == 'overlayed'){ ?> <!-- item --> <div class="portfolio-item mix <?php echo esc_attr($sort_classes) ?> <?php echo esc_attr($extra_class) ?> <?php echo esc_attr($style) ?>" data-id="<?php echo esc_attr(get_the_ID()) ?>"> <div class="he-wrap tpl2"> <a href="<?php echo esc_url($link) ?>"></a> <?php if($item_grid_class == 5){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <?php if($item_grid_class == 3){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" alt="'.$alt.'"> <?php } ?> <?php if($item_grid_class == 4){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port3', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <?php if($item_grid_class == 6){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <?php if($item_grid_class == 12){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port1', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <div class="overlay he-view"> <div class="bg a0" data-animate="fadeIn"> <div class="center-bar v1"> <h4 data-animate="fadeInUp" class="a1"><?php echo get_the_title() ?></h4> <h6 data-animate="fadeInUp" class="a2"><?php echo codeless_complex_esc($sort_classes) ?></h6> </div> </div> </div> </div> </div> <?php }else if($style == 'grayscale'){ ?> <div class="portfolio-item mix <?php echo esc_attr($sort_classes) ?> <?php echo esc_attr($extra_class) ?> <?php echo esc_attr($style) ?>" data-id="<?php echo get_the_ID() ?>"> <div class=""> <?php if($item_grid_class == 5){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <?php if($item_grid_class == 3){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" aalt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <?php if($item_grid_class == 4){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port3_grayscale', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <?php if($item_grid_class == 6){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2_grayscale', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <?php if($item_grid_class == 12){ ?> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port1', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <?php } ?> <div class="project"> <h5><a href="<?php echo esc_url($link) ?>"><?php echo get_the_title() ?></a></h5> <h6><?php echo esc_html($sort_classes) ?></h6> </div> </div> </div> <?php }else if($style == 'basic'){ ?> <div class="portfolio-item mix <?php echo esc_attr($sort_classes) ?> <?php echo esc_attr($extra_class) ?> <?php echo esc_attr($style) ?>" data-id="<?php echo get_the_ID() ?>"> <div class="he-wrap tpl2"> <?php if($columns == 5) $columns = 4; ?> <a href="<?php echo esc_url($link) ?>"><img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port'.$columns, 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"></a> </div> <div class="show_text"> <h5><a href="<?php echo esc_url($link) ?>"><?php echo get_the_title() ?></a></h5> <h6><?php echo esc_html($sort_classes) ?></h6> </div> </div> <?php }else if($style == 'chrome'){ ?> <div class="portfolio-item mix <?php echo esc_attr($sort_classes) ?> <?php echo esc_attr($extra_class) ?> <?php echo esc_attr($style) ?>" data-id="<?php echo get_the_ID() ?>"> <div class="overlay"> <div class="bar"></div> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'staff_full', 'url')) ?>" alt="<?php echo esc_attr__('Portfolio Image', 'specular') ?>"> <span> <a href="<?php echo esc_url($link) ?>" class="btn-bt <?php echo esc_attr(codeless_get_mod('overall_button_style', 0)) ?>"><?php esc_html_e('View', 'specular') ?></a> </span> </div> <div class="show_text"> <h5><a href="<?php echo esc_url($link) ?>"><?php echo get_the_title() ?></a></h5> </div> </div> <?php } ?> <!-- Portfolio Normal Mode End --> <?php endwhile; ?> <?php if(!isset($codeless_used_for_element)): ?> </div> <?php endif; ?> <?php } ?> <?php if(!isset($codeless_used_for_element)): ?> <?php codeless_pagination_display(); ?> <?php endif; ?>Thanks
in reply to: Safari gestures not workingHello,
Can you please give me a link so I can test directly in your website?
Thanks
in reply to: Folie contentHello,
You have set the second row, the duplicated Row, as fullheight row. This cause the Row to be screen-height size.
Let me know if this helps
Thanks
in reply to: google analytics not workingWe have added in update list, for now, please, add the code directly on header.php .
Thank You
in reply to: Tower Frontend and CustomizerIf you like our theme and support, please leave a review on Themeforest :) it’s very important for us! Thank you so much, let me know if you need further help
Thanks
in reply to: Portfolio Overlay TitlesHello,
In which theme did you want this Portfolio style?
Thanks
in reply to: Tower Frontend and CustomizerJust added a new update 2.8.4
it should be released in 1-2 hour, it will fix the bug
Thanks
-
This reply was modified 6 years, 10 months ago by