Forum Replies Created
-
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!
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!
in reply to: VC Full Blog paginationHello,
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!
in reply to: Staff BiosHello,
@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.phpPlease 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!
in reply to: Staff BiosHello,
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!
in reply to: Demo set up (HOME page) not workingHello,
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!
in reply to: Revolution Slider not working in FirefoxHello,
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!
in reply to: Error MessageHello,
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!
in reply to: Remove link from Service IconHello,
Sorry but that is not possible.
Best regards!
in reply to: Remove Comments Section on Blog Posthello,
The custom css box is located in your theme’s General options > Custom CSS Code.
Best regards!
in reply to: BUTTON TRIGGERHello,
Sorry but that is not possible.
Best regards!
in reply to: Menu overlay in iPhone 5hello,
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!
in reply to: child themeHello,
Yes. You already have a child theme included in the main folder downloaded from Themeforest.
Best regards!
in reply to: FasterHello,
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!