Forum Replies Created
-
in reply to: Staff picture size and link
Hello,
You can change the staff images thumbnails size at the file functions.php.
Find these lines:
add_image_size( 'staff', 400, 270, true ); add_image_size( 'staff_full', 500, 340, true );and change the size. After that you should recreate the images thumbnails or reupload the images.
You want to link the staff to their full post?
It will have this look: https://codeless.co/specular/default/?staff=brad-doeLet me know and I will give you instructions to do so.
Best regards
in reply to: Child themeHello,
I changed the line:
Template: Specular
to
Template: specular
We will fix it on the next theme update.
Best regards!
in reply to: Service circle sizeHello,
You can use this code t change the titles color:
.services_medium h4 a { color: #ddd; }Best regards!
in reply to: PAGINATION PORTFOLIOHello,
You can do that by editing the file specular\includes\core\codeless_routing.php
Find the lines:
if(!function_exists('codeless_set_portfolio_query')){ 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 = 2; break; case '3': $p_per_page = 9; break; case '4': $p_per_page = 12; break; case '5': $p_per_page = 10; break; }and replace with:
if(!function_exists('codeless_set_portfolio_query')){ 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: How to hide SlugHello,
You can use this css code to hide the portfolio category slug:
.portfolio-item h6.a2 { display: none; }Best regards!
-
This reply was modified 11 years, 5 months ago by
Ruco.
in reply to: Issue with Mega Menu and Child MenusHello,
Please can you show us your site url?
What theme version do you have?
Best regards!
in reply to: Problem with importing demo dataHello,
Sometimes the import progress bar stops at 65% however the data import is completed.
Please check if the content is installed (pages, menus, portfolios, etc).
If you still have issues on installing dummy content please give us your site credentials ( in a private reply) and we will assist you install them.Best regards!
in reply to: Open Sans Condensed not workingHello,
I can’t see your website, please can you give me your wp credentials?
Best regards!
Hello,
You can do this with some customizations.
Accoding to your portfolio style, edit one of the files at folder: “specular/includes/views/portfolio/”
Find the lines:if(is_object($item_categories) || is_array($item_categories)) { foreach ($item_categories as $cat) { $sort_classes .= $cat->slug.' '; } }and replace with:
if(is_object($item_categories) || is_array($item_categories)) { foreach ($item_categories as $cat) { $sort_classes .= $cat->slug.' '; $sort_classes_names .= $cat->name.' '; } }Find the line:
<h6 data-animate="fadeInUp" class="a2"><?php echo $sort_classes ?></h6>
and replace with:
<h6 data-animate="fadeInUp" class="a2"><?php echo $sort_classes_names ?></h6>
Best regards!
in reply to: Clients CarouselHello,
Please add this css code at Custom Css Code at general options:
.clients_el .pagination a { opacity: 1; }You can change the number Of the clients to show in the same time but there can be displayed max 5 clients in a row (depending on screen width).
Please find this code at the file specular/js/main.js: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,Change the ‘items’ number here.
Best regards!
in reply to: Disable header in one pageHello,
Her you can disable footer: https://www.clipular.com/c/6609132968738816.png?k=uJxXoMWfENvYD8btt0upPwjugyI
The header can’t be disabled, you ca use this css code to hide it:
.header_wrapper { display: none; }Best regards!
in reply to: Page marginHello,
Select full width option at slider options at Pages.
Best regards!
in reply to: Problem importing Demo DataHello ,
I checked your site, the dummy data are already importer 3 or 4 times.
However the dummy data import stays 65%, they are imported successfully.
You have repeated items on the menu as you have clicked the import button multiple times. I deleted them Please take a look now.
@vanbokhovenconsultancy
Please check the pages, the dummy data must have been installed.
If you still have problems, please can you give us your wp credentials so I can check?Best regards!
-
This reply was modified 11 years, 5 months ago by
Ruco.
in reply to: Import Dummy Data fails everytimeHello,
Please be sure you have the latest theme version, install it if you don’t have the latest update.
It it still doesn’t succeed please give us your wp credentials in a private rely, so we can check it and install the dummy data for you.Best regards!
in reply to: Shop Template MenuHello,
Sorry for the inconvenience.
Please add this css code at Custom Css Code in general options:
@media (max-width: 979px){ nav .menu { display: none;} }Best regards!
-
This reply was modified 11 years, 5 months ago by