Forum Replies Created
-
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!
in reply to: business2 rev slider demo importHello,
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!
in reply to: rev slider demo dataHello,
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.
in reply to: Contact Form 7Hello,
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!
in reply to: Portfolio Slug Change — 404 Page ErrorHello,
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!
in reply to: Portfolio PaginationHello,
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!
in reply to: Gap between slider and headerHello,
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!
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
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!
in reply to: Add Instagram to social widgetHello,
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!
in reply to: problem setting footer four column layoutHello,
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!
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!
in reply to: FULLSCREEN (4 STYLES INCLUDED) demo have problemHello,
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!
in reply to: Split: Suggest us FeaturesHello,
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_sliderI 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!
in reply to: Unable to select any iconHello,
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!
-
This reply was modified 11 years, 6 months ago by