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

  • 11 years, 5 months ago Ruco
    Keymaster
    in reply to: Staff picture size and link

    Hello,

    You can change the staff images thumbnails size at the file functions.php.

    Find these lines:

     add_image_size( 'staff', 400, 270, true );
        add_image_size( 'staff_full', 500, 340, true );
    

    and change the size. After that you should recreate the images thumbnails or reupload the images.

    You want to link the staff to their full post?
    It will have this look: https://codeless.co/specular/default/?staff=brad-doe

    Let me know and I will give you instructions to do so.

    Best regards

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Child theme

    Hello,

    I changed the line:

     Template: Specular 

    to

     Template: specular 

    We will fix it on the next theme update.

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Service circle size

    Hello,

    You can use this code t change the titles color:

    .services_medium h4 a {
    color: #ddd;
    }

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: PAGINATION PORTFOLIO

    Hello,

    You can do that by editing the file specular\includes\core\codeless_routing.php

    Find the lines:

    if(!function_exists('codeless_set_portfolio_query')){
        function codeless_set_portfolio_query()
    	{
    		global $cl_redata;
    		
    		$terms = $cl_redata['portfolio_categories'];
    
    		$p_per_page = 6;
    		switch($cl_redata['portfolio_columns']){
    			case '1':
    				$p_per_page = 3;
    			    break;
    			case '2':
    				$p_per_page = 2;
    				break;
    			case '3':
    				$p_per_page = 9;
    				break;
    			case '4':
    				$p_per_page = 12;
    				break;
    			case '5':
    				$p_per_page = 10;
    				break;
    		}
    

    and replace with:

    if(!function_exists('codeless_set_portfolio_query')){
        function codeless_set_portfolio_query()
    	{
    		global $cl_redata;
    		
    		$terms = $cl_redata['portfolio_categories'];
    
    		$p_per_page = 6;
    		switch($cl_redata['portfolio_columns']){
    			case '1':
    				$p_per_page = 999;
    			    break;
    			case '2':
    				$p_per_page = 999;
    				break;
    			case '3':
    				$p_per_page = 999;
    				break;
    			case '4':
    				$p_per_page = 999;
    				break;
    			case '5':
    				$p_per_page = 999;
    				break;
    		}
    

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: How to hide Slug

    Hello,

    You can use this css code to hide the portfolio category slug:

    .portfolio-item h6.a2 {
    display: none;
    }

    Best regards!

    • This reply was modified 11 years, 5 months ago by Ruco.
    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Issue with Mega Menu and Child Menus

    Hello,

    Please can you show us your site url?

    What theme version do you have?

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Problem with importing demo data

    Hello,

    Sometimes the import progress bar stops at 65% however the data import is completed.
    Please check if the content is installed (pages, menus, portfolios, etc).
    If you still have issues on installing dummy content please give us your site credentials ( in a private reply) and we will assist you install them.

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Open Sans Condensed not working

    Hello,

    I can’t see your website, please can you give me your wp credentials?

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: show tag "title" instead of tag slug in recent portfolio

    Hello,

    You can do this with some customizations.
    Accoding to your portfolio style, edit one of the files at folder: “specular/includes/views/portfolio/”
    Find the lines:

    if(is_object($item_categories) || is_array($item_categories))
        	{
        		foreach ($item_categories as $cat)
        		{
        			$sort_classes .= $cat->slug.' ';
        		}
        	}

    and replace with:

    if(is_object($item_categories) || is_array($item_categories))
        	{
        		foreach ($item_categories as $cat)
        		{
        			$sort_classes .= $cat->slug.' ';
                    $sort_classes_names .= $cat->name.' ';
        		}
        	}

    Find the line:

    <h6 data-animate="fadeInUp" class="a2"><?php echo $sort_classes ?></h6>
    

    and replace with:

    <h6 data-animate="fadeInUp" class="a2"><?php echo $sort_classes_names ?></h6>
    

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Clients Carousel

    Hello,

    Please add this css code at Custom Css Code at general options:

    .clients_el .pagination a {
    opacity: 1;
    }

    You can change the number Of the clients to show in the same time but there can be displayed max 5 clients in a row (depending on screen width).
    Please find this code at the file specular/js/main.js:

    function clientsCarousel(){
    	"use strict";
    
    	var $self = $('.clients_caro');
    	if($self.length){
    		$self.css('display', 'none');
    		$self.imagesLoaded(function(){
    			$self.css('display', 'block');
    			$self.carouFredSel( 
    			{
    						items:4,

    Change the ‘items’ number here.

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Disable header in one page

    Hello,

    Her you can disable footer: https://www.clipular.com/c/6609132968738816.png?k=uJxXoMWfENvYD8btt0upPwjugyI

    The header can’t be disabled, you ca use this css code to hide it:

    .header_wrapper {
    display: none;
    }
    

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Page margin

    Hello,

    Select full width option at slider options at Pages.

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Problem importing Demo Data

    Hello ,


    @agreedtechnologies1

    I checked your site, the dummy data are already importer 3 or 4 times.
    However the dummy data import stays 65%, they are imported successfully.
    You have repeated items on the menu as you have clicked the import button multiple times. I deleted them Please take a look now.


    @vanbokhovenconsultancy

    Please check the pages, the dummy data must have been installed.
    If you still have problems, please can you give us your wp credentials so I can check?

    Best regards!

    • This reply was modified 11 years, 5 months ago by Ruco.
    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Import Dummy Data fails everytime

    Hello,

    Please be sure you have the latest theme version, install it if you don’t have the latest update.
    It it still doesn’t succeed please give us your wp credentials in a private rely, so we can check it and install the dummy data for you.

    Best regards!

    11 years, 5 months ago Ruco
    Keymaster
    in reply to: Shop Template Menu

    Hello,

    Sorry for the inconvenience.

    Please add this css code at Custom Css Code in general options:

    @media (max-width: 979px){
    nav .menu {
    display: none;}
    }

    Best regards!

Viewing 15 posts - 2,731 through 2,745 (of 3,073 total)
← 1 2 3 … 182 183 184 … 203 204 205 →

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