Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 6 years, 10 months ago Ludjon
    Keymaster
    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

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: woocommerce translation

    Ok 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.

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Codeless slider image sixe issue

    Please can you send me a link to this page?

    Thanks

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Folie content

    You’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.
    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Hide Navigation Menu

    Hello,

    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

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Overwrite the Default Post Layout No Longer Working with Update

    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

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Portfolio Basic View

    Hello,

    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

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Safari gestures not working

    Hello,

    Can you please give me a link so I can test directly in your website?

    Thanks

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Folie content

    Hello,

    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

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Some bugs

    It can’t be resolved now, you need to remove that part and re-create, also be sure to use Visual Composer or Codeless Builder, it’s not good to mix various builders

    Let me know, thanks

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: google analytics not working

    We have added in update list, for now, please, add the code directly on header.php .

    Thank You

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Tower Frontend and Customizer

    If 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

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Tower Frontend and Customizer

    Update Released

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Portfolio Overlay Titles

    Hello,

    In which theme did you want this Portfolio style?

    Thanks

    6 years, 10 months ago Ludjon
    Keymaster
    in reply to: Tower Frontend and Customizer

    Just added a new update 2.8.4

    it should be released in 1-2 hour, it will fix the bug

    Thanks

Viewing 15 posts - 1,126 through 1,140 (of 1,583 total)
← 1 2 3 … 75 76 77 … 104 105 106 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password