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

  • 10 years, 11 months ago Mirela
    Participant
    in reply to: Footer Icons

    Hello,

    Yes, they are a widget. Specific, the ‘Specular Widget Shortcode’ widget. Add these shortcodes to it:
    [contact_information tel="+114 554 888" addr="20 St Street, New York" email="[email protected]"]

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Testimonial Speed and comma – I´ve already followed instructions of forum

    Hello,

    You only need to change the value of the duration. I already changed it to 20000 and now it’s very slow. Change it back to the value you want.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: VC Full Blog pagination

    Hello,

    You had set as blog page, the ‘Blog’ page, while you had the full blog in page ‘Newsroom’. I changed the blog page to ‘Newsroom’ in General Options and in Settings > Reading. Now it all ok.
    Please check and let us know.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Staff URL

    Hello,

    Please reset permalinks and try again.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Staff Bios

    Hello,


    @tasmantheory
    ,
    The above code adds a profile link to the chain of social links in staff element. To add it we edited these two files:
    -includes\core\codeless_metaboxes.php
    -vc_templates\staff.php

    Please follow the steps below:

    1-Go to file includes\core\codeless_metaboxes.php , find these lines:

    
            $staff_options[] = array(
                //'title'         => __('General Settings', 'codeless-admin'),
                'icon_class'    => 'icon-large',
                'icon'          => 'el-icon-home',
                'fields'        => array(
                    array(
                        'id' => 'staff_position',
                        'title' => __( 'Staff Position', 'codeless' ),
                        'desc' => 'Write here the position for this staff member into your business',
                        'type' => 'text'
                    ),
                    array(
                        'id' => 'facebook_link',
                        'title' => __( 'Facebook Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => '#'
                    ),
                    array(
                        'id' => 'twitter_link',
                        'title' => __( 'Twitter Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => '#'
                    ),
                    array(
                        'id' => 'google_link',
                        'title' => __( 'Google Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => '#'
                    ),
                    array(
                        'id' => 'pinterest_link',
                        'title' => __( 'Pinterest Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                    array(
                        'id' => 'linkedin_link',
                        'title' => __( 'Linkedin Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                    array(
                        'id' => 'instagram_link',
                        'title' => __( 'Instagram Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                    array(
                        'id' => 'mail_link',
                        'title' => __( 'Mail Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                ),
            );
    

    Add the ‘profile’ option here. The code will become like this:

    
            $staff_options[] = array(
                //'title'         => __('General Settings', 'codeless-admin'),
                'icon_class'    => 'icon-large',
                'icon'          => 'el-icon-home',
                'fields'        => array(
                    array(
                        'id' => 'staff_position',
                        'title' => __( 'Staff Position', 'codeless' ),
                        'desc' => 'Write here the position for this staff member into your business',
                        'type' => 'text'
                    ),
                    array(
                        'id' => 'facebook_link',
                        'title' => __( 'Facebook Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => '#'
                    ),
                    array(
                        'id' => 'twitter_link',
                        'title' => __( 'Twitter Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => '#'
                    ),
                    array(
                        'id' => 'google_link',
                        'title' => __( 'Google Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => '#'
                    ),
                    array(
                        'id' => 'pinterest_link',
                        'title' => __( 'Pinterest Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                    array(
                        'id' => 'linkedin_link',
                        'title' => __( 'Linkedin Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                    array(
                        'id' => 'instagram_link',
                        'title' => __( 'Instagram Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                    array(
                        'id' => 'mail_link',
                        'title' => __( 'Mail Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                    array(
                        'id' => 'profile_link',
                        'title' => __( 'Profile Link', 'codeless' ),
                        'desc' => '',
                        'type' => 'text',
                        'default' => ''
                    ),
                ),
            );
    

    2- Go to file vc_templates/staff.php and find these lines:

    $output .= '<div class="center-bar">';
    
                                                        if($cl_redata['facebook_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['facebook_link']).'" class="a1" data-animate="fadeInUp" title="Facebook"><i class="moon-facebook"></i></a>';
                                                        if($cl_redata['twitter_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['twitter_link']).'" class="a1" data-animate="fadeInUp" title="Twitter"><i class="moon-twitter"></i></a>';
                                                        if($cl_redata['google_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['google_link']).'" class="a1" data-animate="fadeInUp" title="Google Plus"><i class="moon-google_plus"></i></a>';
                                                        if($cl_redata['pinterest_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['pinterest_link']).'" class="a1" data-animate="fadeInUp" title="pinterest"><i class="moon-pinterest"></i></a>';
                                                        if($cl_redata['linkedin_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['linkedin_link']).'" class="a1" data-animate="fadeInUp" title="linkedin"><i class="moon-linkedin"></i></a>';
                                                        if($cl_redata['instagram_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['instagram_link']).'" class="a1" data-animate="fadeInUp" title="instagram"><i class="moon-instagram"></i></a>';
                                                        if($cl_redata['mail_link']!= '')
                                                            $output .= '<a href="'.esc_url($cl_redata['mail_link']).'" class="a1" data-animate="fadeInUp" title="mail"><i class="moon-mail"></i></a>';
                                                        

    at the end, add the new ‘profile’ option. It will become like this:

    if($cl_redata['facebook_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['facebook_link']).'" class="a1" data-animate="fadeInUp" title="Facebook"><i class="moon-facebook"></i></a>';
                                                        if($cl_redata['twitter_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['twitter_link']).'" class="a1" data-animate="fadeInUp" title="Twitter"><i class="moon-twitter"></i></a>';
                                                        if($cl_redata['google_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['google_link']).'" class="a1" data-animate="fadeInUp" title="Google Plus"><i class="moon-google_plus"></i></a>';
                                                        if($cl_redata['pinterest_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['pinterest_link']).'" class="a1" data-animate="fadeInUp" title="pinterest"><i class="moon-pinterest"></i></a>';
                                                        if($cl_redata['linkedin_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['linkedin_link']).'" class="a1" data-animate="fadeInUp" title="linkedin"><i class="moon-linkedin"></i></a>';
                                                        if($cl_redata['instagram_link'] != '')
                                                            $output .= '<a href="'.esc_url($cl_redata['instagram_link']).'" class="a1" data-animate="fadeInUp" title="instagram"><i class="moon-instagram"></i></a>';
                                                        if($cl_redata['mail_link']!= '')
                                                            $output .= '<a href="'.esc_url($cl_redata['mail_link']).'" class="a1" data-animate="fadeInUp" title="mail"><i class="moon-mail"></i></a>';
                                                        if($cl_redata['profile_link']!= '')
                                                            $output .= '<a href="'.esc_url($cl_redata['profile_link']).'" class="a1" data-animate="fadeInUp" title="profile"><i class="moon-link"></i></a>';
                                                   

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Staff Bios

    Hello,

    Please go to file vc_templates\staff.php and find this line:

    if($cl_redata['profile_link']!= '')
       $output .= '<a target="_blank" href="'.esc_url($cl_redata['profile_link']).'" class="a1" data-animate="fadeInUp" title="profile"><i class="moon-link"></i></a>'; 

    remove the target="_blank"
    from it. Save.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Demo set up (HOME page) not working

    Hello,

    Please make the needed installations from the main theme first. Not from the child one. This caused the incorrect url errors. After installing required plugins, importing demo data, set up Front page and other important configurations, you can continue the use from your child theme.
    Let us know if you need further help.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Revolution Slider not working in Firefox

    Hello,

    Please add this code:
    .tp-simpleresponsive > ul, .tp-simpleresponsive > ul > li, .tp-simpleresponsive > ul > li::before { float: left !important;}
    into your custom css box.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Error Message

    Hello,

    Visual composer is included in theme package and you can easily install it from your wp dashboard.
    Please send us your wp credentials (site url, username, password) in a private reply. So we can give it a closer look.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Remove link from Service Icon

    Hello,

    Sorry but that is not possible.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Remove Comments Section on Blog Post

    hello,

    The custom css box is located in your theme’s General options > Custom CSS Code.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: BUTTON TRIGGER

    Hello,

    Sorry but that is not possible.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Menu overlay in iPhone 5

    hello,

    This is how i see the menu in iphone, screenshot. Did you fixed your issue? Let us know if you still need help.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: child theme

    Hello,

    Yes. You already have a child theme included in the main folder downloaded from Themeforest.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Faster

    Hello,

    You can remove any plugin you do not use. But not visual Composer. It is required for the theme to work properly. To help boost your site you can also remove all pages/post/portfolio items you do not need. Install a cache plugin; Optimize images, oversized images take longer to load, so it’s important that you keep your images as small as possible.

    Best regards!

Viewing 15 posts - 11,746 through 11,760 (of 12,542 total)
← 1 2 3 … 783 784 785 … 835 836 837 →

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