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, 2 months ago Ludjon
    Keymaster
    in reply to: One Page Menu Items + Fixed Header

    I don’t know, maybe I have missed something

    Do you need it only on Responsive (small devices)? It shows exactly like the image I have sent to you but on desktop it works only on hover. Is it what you need?

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Specular – Help with 'nav' on extra pages

    Please, set the one-page links to sections like this:

    https://link.com/#section

    Can you give me credentials to check this?

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: How to show Cart Icon

    You’re welcome :)

    If you like our theme and support, leave us a rating on Themeforest, it’s very important for us :)

    https://themeforest.net/downloads

    Thank You so much

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Responsive Menu

    You’re welcome :)

    If you like our theme and support, leave us a rating on Themeforest, it’s very important for us :)

    https://themeforest.net/downloads

    Thank You so much

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Slider revolution

    You’re welcome :)

    If you like our theme and support, leave us a rating on Themeforest, it’s very important for us :)

    https://themeforest.net/downloads

    Thank You so much

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Woocommerce shop page and the product page do not display correctly

    Hi,

    Please can you do the same change as I have already written in the previous reply?

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Specular – Help with 'nav' on extra pages

    Hi,

    Try this, add onepage links like:

    https://link.com/#section

    and other pages like:

    https://link.com/otherpage

    let me know

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Woocommerce shop page and the product page do not display correctly

    Can you give me site credentials to fix it?

    Or manually go to picante/includes/codeless_woocommerce_functions.php

    replace this line (should be 891):

    add_action( 'codeless_hook_content_begin', function(){

    with:

    add_action( 'codeless_hook_content_end', function(){

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: One Page Menu Items + Fixed Header

    Yes, I understand and it is exactly like that. No need to click to show them. I think you need to clear cookies

    This is by default without a click:

    https://tinyurl.com/sk3dkaw

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Remove padding from CTA banner

    You’re welcome :)

    If you like our theme and support, leave us a rating on Themeforest, it’s very important for us :)

    https://themeforest.net/downloads

    Thank You so much

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: List (ul/li) Text Wrap / Indent

    Add this custom css code:

    ul {
      list-style-position: outside;
    }

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Portfolio Categories

    Please add this manually, i cant from dashboard:

    tower/includes/portfolio/loop-grid.php

    replace with:

    <?php
    
    global $cl_redata;
    global $used_for_element;
    
    $columns = (isset($used_for_element)) ? $used_for_element['columns'] : $cl_redata['portfolio_columns'];
    $sidebar = $cl_redata['layout'];
    $style = (isset($used_for_element)) ? $used_for_element['style'] : $cl_redata['portfolio_style'];
    
    $extra_class = '';
    if(isset($used_for_element) && $used_for_element['carousel'] == 'yes')
        $extra_class .= ' swiper-slide';
    
    if(!isset($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;
            case "6": $item_grid_class = 6; break;
        }
         
        ?>
        
        <?php if(!isset($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();
    
        	$sort_classes = "";
        	$item_categories = get_the_terms( $the_id, 'portfolio_entries' );
            $catname = '';
        	if(is_object($item_categories) || is_array($item_categories))
        	{
        		foreach ($item_categories as $cat)
        		{
                    $sort_classes .= $cat->slug.' ';
                    $catname .= $cat->name. ' ';
        		}
        	}
    
            $cats = wp_get_object_terms(get_the_ID(), 'portfolio_entries');
            $link = get_permalink();
            if($cl_redata['single_custom_link_switch'] && !empty($cl_redata['single_custom_link']))
                $link = $cl_redata['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')) ?>">
                                       
                                            <?php } ?>
                                            <?php if($item_grid_class == 3){ ?>
                                                <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>">
                                       
                                            <?php } ?>
                                            <?php if($item_grid_class == 4){ ?>
                                                <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port3', 'url')) ?>">
                                              
    						 <?php } ?>
                                            <?php if($item_grid_class == 6){ ?>
                                                <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2', 'url')) ?>">
                                             
    						<?php } ?>
                                            <?php if($item_grid_class == 12){ ?>
                                                <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port1', 'url')) ?>">
                                           	 
    						 <?php } ?>
                                           <div class="overlay he-view">
                                                <div class="bg a0" data-animate="fadeIn">
                                                    <div class="center-bar v1">
                                                        <h4 data-animate="fadeInDown" class="a1"><?php echo get_the_title() ?></h4>
                                                        <h6 data-animate="fadeInUp" class="a2"><?php echo codeless_complex_esc($catname) ?></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')) ?>">
                                               
                                                <?php } ?>
                                                <?php if($item_grid_class == 3){  ?>
                                                    <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>">
                                               
                                                <?php } ?>
                                                <?php if($item_grid_class == 4){ ?>
                                                    <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port3_grayscale', 'url')) ?>">
                                              
                                 <?php } ?>
                                                <?php if($item_grid_class == 6){ ?>
                                                    <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2_grayscale', 'url')) ?>">
                                                
                                <?php } ?>
                                                <?php if($item_grid_class == 12){ ?>
                                                    <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port1', 'url')) ?>">
                                              
                                 <?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; ?>                
                            <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port'.$columns, 'url')) ?>" >
                                         
                            <div class="overlay he-view">
                                <div class="bg a0" data-animate="fadeIn">
                                    <div class="center-bar v1">
                                        <?php if(!$cl_redata['portfolio_remove_magnifier']): ?>
                                             <a href="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), array("width"=> 1200, "height" => 1200), "url")) ?>" class="link a1 lightbox-gallery lightbox" data-animate="fadeInLeft"><i class="moon-search-3"></i></a></a>
                                         <?php endif; ?>    
                                        <a href="<?php echo esc_url($link) ?>" class="link a1" data-animate="fadeInRight"><i class="moon-link-4"></i></a></a>
                                    </div>
                                 </div> 
                            </div>                          
                        </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')) ?>">
                            <span>
                                <a href="<?php echo esc_url($link) ?>" class="btn-bt <?php echo esc_attr($cl_redata['overall_button_style'][0]) ?>"><?php esc_html_e('View', 'tower') ?></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($used_for_element)): ?>
        </div>
    <?php endif; ?>
    
    <?php } ?>
    
    <?php if(!isset($used_for_element)): ?>
    
    <?php codeless_pagination_display(); ?>
    
    <?php endif; ?>

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Responsive Menu

    1) No worries about that, we will remove that feature. The latest child theme version is the one you are using. Also, codeless page builder 1.0.0 needed (no more Codeless Builder 2.3)

    2) Please Open Customizer -> Go to Blog -> search for blog align option -> change it center align.

    Thanks

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Hover Color for Menu ITems for Dark Header

    You’re welcome :)

    If you like our theme and support, leave us a rating on Themeforest, it’s very important for us :)

    https://themeforest.net/downloads

    Thank You so much

    6 years, 2 months ago Ludjon
    Keymaster
    in reply to: Menu on mobile

    I think this is the best way. First click opens the submenu, the second click opens the page.

    Let me know if this works for you

    Thanks

Viewing 15 posts - 556 through 570 (of 1,583 total)
← 1 2 3 … 37 38 39 … 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