Forum Replies Created
-
in reply to: delete icons on post
Hello,
Please use this css code to hide that info:
.blog-article.standard-style .info{display:none;}Best regards!
in reply to: unable to import business4 themeHello,
Can you show us your site url please?
Best regards!
in reply to: unable to import business4 themeHello,
Can you show us your site url please?
Best regards!
in reply to: How to add one more social link?Hello,
I don’t understand what’s the additional row about. Please can you give me your site credentials (in a private reply) so I can check, also the icon to change color on hover?
Best regards!
in reply to: Permalinks Not Being UsedThis reply has been marked as private.in reply to: Change color linksHello,
Thank you for the suggestion. We will fix it on the next theme update.
Sorry for the inconvenience.Best regards!
in reply to: Dummy DataHello,
I noticed you haven’t uploaded the theme in the right folder.
The right theme path is:wp-content/themes/specular,
NOT:
wp-content/themes/themeforest-9412083-specular-responsive-multipurpose-business-theme/specular/You must unzip the theme packet first.
Do theis and let us know.
Best regards!
in reply to: Mobile Responsive Hiding IssueHello,
Sorry for the inconvenience. We will fix it on the next theme update. In mean time you can use this css code to hide the column on mobile:
At column settings ad extra class name, ex. add ‘hide_column_iphone‘, then you can use this class to hide it on mobile:@media (max-width: 767px){ .hide_column_iphone{ display:none;} }Best regards!
in reply to: Button in codeless sliderHello,
Sorry for the late response.
We will check it and fix it if needed.
Let us know if you need further support.Best regards!
in reply to: Staff PagesHello,
There are two way to do that (with some customization).
one: By adding a link in team member name or image which shows the member profile in post type page like this:
https://codeless.co/specular/default/?staff=brad-doetwo: by adding a link for each team member. It can be done by adding a page link in the excerpt field of the team member. You can create pages for each team member and dd the elements you want by using Visual Composer.
let me know which one you prefer and write your site credentials in a private reply, so I can do the customization for you.
Best regards!
in reply to: CLIENTS CARROUSELHello,
You must edit the file /js/main.js. Find the function:
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, auto: false, scroll: { items : 1 },and change ‘auto’ to ‘true’.
This way the clients carousel will autoplay.
Best regards!
in reply to: Code showing on iPhoneHello,
Can you write your site credentials in a private reply, so I can give it a look?
Best regards!
in reply to: Site Menu display incorrectly in MobileHello,
I don’t know with plugin does this.
“View Mobile Site” https://www.clipular.com/c/6098048335740928.png?k=hU-3PqUQX0beMAdxt0DXMvHgre4 displayed on the bottom of your site (on responsive) isn’t part of the theme.You must have installed any plugin that does that.
Best regards!
in reply to: Two sites – two languagesHello,
We suggest you to use any translation plugin, anyway it can be done with two WP installations, for each language.
On both sites you must add a widget to select the language and put there the link to the other site.Best regards!
in reply to: How to add one more social link?Hello,
It can be achieved with some customization.
First you must make the icon 32x32px size and upload in your wp site.
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['vk']) ) echo '<li class="vk"><a href="'.esc_url($cl_redata['email']).'"><img src="" width="32" height="32"></a></li>';Add between the quotes
src=""
the image url of the icon you uploaded.
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' => 'vk', 'type' => 'text', 'title' => __('VK Link', 'codeless-admin') )Now you can refresh the general options and you can see there at Social Media section a new field for the VK social.
Let us know if you need further help.
Best regards!