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, 6 months ago Ruco
    Keymaster
    in reply to: extra side navigation

    Hello,

    The extra side navigation bg color can’t be changed in general options, we will add the option on the next theme update.
    here is the css code to change the color:

    .extra_navigation{
    
      background:rgba(34, 34, 34, 0.93);

    To hide the blog post info please add this css code:

    .blog-article.standard-style .info {
    display: none;}
    

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: business2 rev slider demo import

    Hello,

    Download here business2 demo revslider data: https://www.filedropper.com/home8

    We will include the slider demo data on the net theme update.

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: rev slider demo data

    Hello,

    Download here business demo revslider data: https://www.filedropper.com/home7

    Download here business2 demo revslider data: https://www.filedropper.com/home8

    We will include the slider demo data on the net theme update.

    Best regards!

    • This reply was modified 11 years, 6 months ago by Ruco.
    11 years, 6 months ago Ruco
    Keymaster
    in reply to: Contact Form 7

    Hello,

    You can set the border color at general settings -> Elements Options -> Elements Styling -> https://www.clipular.com/c/6406200226742272.png?k=2m9fdnobqRfJw7WAIWKxoq6tvQ4

    Add the tags at the text tab of text block element like this https://www.clipular.com/c/6294706700943360.png?k=eA5Bvd-hWPqOGpJ7b0XKNqUL_iw

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: Portfolio Slug Change — 404 Page Error

    Hello,

    When changing portfolio slug you must reset the permalinks. Set them to default and save, then set them again as you want them and save again.

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: Portfolio Pagination

    Hello,

    You can do this with some customization.
    Please edit the file \specular\includes\core\codeless_routing.php and find the lines:

     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 = 8;
    				break;
    			case '3':
    				$p_per_page = 9;
    				break;
    			case '4':
    				$p_per_page = 12;
    				break;
    			case '5':
    				$p_per_page = 10;
    				break;
    		}

    Replace it with:

     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, 6 months ago Ruco
    Keymaster
    in reply to: Gap between slider and header

    Hello,

    I removed the space between the slider and the menu.
    Fixed the shadow below the slider.

    It’s not possible to add shadow at page header.

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: A row with a "+" appeard in the frontend and the backend

    Hello,

    What plugin have you installed?
    Can you give us your site credentials in a private reply, so I can give it a closer look?

    Best regards

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: how to localhost to production?

    Hello,

    I suggest you to use WP migrate DB plugin to replace all the links in DB.
    We use this plugin when we move the site to other host, domain.

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: Add Instagram to social widget

    Hello,

    It can be achieved with some customization.

    Edit the file \specular\includes\widgets\codeless_socialwidget.php
    Find this code:

    echo '<ul class="footer_social_icons '.esc_attr($style).'">';
                
                if( !empty($cl_redata['facebook']) )
                   echo '<li class="facebook"><a href="'.esc_url($cl_redata['facebook']).'"><i class="icon-facebook"></i></a></li>';
                if( !empty($cl_redata['twitter']) )
                    echo '<li class="twitter"><a href="'.esc_url($cl_redata['twitter']).'"><i class="icon-twitter"></i></a></li>';
                if( !empty($cl_redata['flickr']) )
                    echo '<li class="flickr"><a href="'.esc_url($cl_redata['flickr']).'"><i class="icon-flickr"></i></a></li>';
                if( !empty($cl_redata['google']) )
                    echo '<li class="google"><a href="'.esc_url($cl_redata['google']).'"><i class="icon-google"></i></a></li>';
                if( !empty($cl_redata['dribbble']) )
                    echo '<li class="dribbble"><a href="'.esc_url($cl_redata['dribbble']).'"><i class="icon-dribbble"></i></a></li>';
                if( !empty($cl_redata['foursquare']) )
                    echo '<li class="foursquare"><a href="'.esc_url($cl_redata['foursquare']).'"><i class="icon-foursquare"></i></a></li>';
                if( !empty($cl_redata['linkedin']) )
                    echo '<li class="foursquare"><a href="'.esc_url($cl_redata['linkedin']).'"><i class="icon-linkedin"></i></a></li>';
                if( !empty($cl_redata['youtube']) )
                    echo '<li class="youtube"><a href="'.esc_url($cl_redata['youtube']).'"><i class="icon-youtube"></i></a></li>';
                if( !empty($cl_redata['email']) )
                    echo '<li class="email"><a href="'.esc_url($cl_redata['vk']).'"><i class="icon-envelope"></i></a></li>';
             

    and add this one below the above code:

       if( !empty($cl_redata['instagram']) )
                    echo '<li class="instagram"><a href="'.esc_url($cl_redata['instagram']).'"><i class="icon-instagram"></i></a></li>';

    Then edit the file specular\includes\core\codeles_options.php, find the lines:

    
    $this->sections[] = array(
                    'icon' => 'el-icon-twitter',
                    'title' => __('Social Media', 'codeless-admin'),
                    'fields' => array(
                        array(
                            'id'       => 'facebook',
                            'type'     => 'text',
                            'title'    => __('Facebook Link', 'codeless-admin')
                        ),
                        array(
                            'id'       => 'twitter',
                            'type'     => 'text',
                            'title'    => __('Twitter Link', 'codeless-admin')
                        ),
                        array(
                            'id'       => 'flickr',
                            'type'     => 'text',
                            'title'    => __('Flickr Link', 'codeless-admin')
                        ),
                        array(
                            'id'       => 'foursquare',
                            'type'     => 'text',
                            'title'    => __('Foursquare Link', 'codeless-admin')
                        ),
                        array(
                            'id'       => 'google',
                            'type'     => 'text',
                            'title'    => __('Google Plus Link', 'codeless-admin')
                        ),
                        array(
                            'id'       => 'dribbble',
                            'type'     => 'text',
                            'title'    => __('Dribbble Link', 'codeless-admin')
                        ),
                        array(
                            'id'       => 'linkedin',
                            'type'     => 'text',
                            'title'    => __('Linkedin Link', 'codeless-admin')
                        ),
    
                        array(
                            'id'       => 'youtube',
                            'type'     => 'text',
                            'title'    => __('Youtube Link', 'codeless-admin')
                        ),
    
                        array(
                            'id'       => 'email',
                            'type'     => 'text',
                            'title'    => __('Email Link', 'codeless-admin')
                        ),
    

    and add this one below it:

    array(
                            'id'       => 'instagram',
                            'type'     => 'text',
                            'title'    => __('Instagram Link', 'codeless-admin')
                        )
    

    Now you can refresh the general options and you can see there at Social Media section a new field for the Instagram link.

    Let us know if you need further help.

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: problem setting footer four column layout

    Hello,

    I fixed it. Some widget areas aren’t saved when changing footer layout, I added them and it’s ok now. We will fix the issue on the next theme update.

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: Problem with the order of the items from my portfolio

    Hello,

    I suggest you to use any order plugin (custom post type order plugin), you can choose yourself the order of portfolio items.

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: FULLSCREEN (4 STYLES INCLUDED) demo have problem

    Hello,

    You can choose the color you want for the description bg on codeless slider panel, see screenshot https://www.clipular.com/c/5444567627202560.png?k=rtLvR1cpc1sKuWvWd5X7qhEo5XI. It is on all the sliders and slides.
    Please check again and let us know.

    Best regard!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: Split: Suggest us Features

    Hello,

    Here is the slider section on pages https://www.clipular.com/c/5116862788534272.png?k=6Z45C6wogl47XfZUFOUInqevSLU

    Please read the theme documentation
    https://codeless.co/documentation/main.html#codeless_slider

    I noticed you have many repeated menu items, maybe you have clicked ‘Import dummy data’ more than one time. You can delete the items you don’t want in the menu.
    Let us know if you need further support.

    Best regards!

    11 years, 6 months ago Ruco
    Keymaster
    in reply to: Unable to select any icon

    Hello,

    This is strange. Please can you give us your site credentials in a private reply, so i ca check?
    Do you have installed the latest theme version?

    Best regards!

Viewing 15 posts - 2,866 through 2,880 (of 3,073 total)
← 1 2 3 … 191 192 193 … 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