8333 comments found.
having trouble with portfolio items showing up after updating to WP 4.5 and Kalium 1.8.9. This used to show all 37 portfolio items upon scroll, now only shows 10 (and not all within the categories) http://shirleytse.com
Thoughts on how to fix?
actually I fixed it. In the Valium portfolio settings I changed portfolio items per page to -1. It was set to WP default and I think that may have changed in the move to v4.5
Hi team!
Everything was fine and with no reason all my images stop showing up when my child theme is active? Any reason for this? If I the child theme isn’t active then I can see the images but I didn’t touch my child theme for anything to happen.
PLEASE HELP!
Claudia
I tried even installing a brand new child theme but still have the same problem. Images don’t load only for the portfolio page and portfolio items. The slide show works fine. Very frustrating that each time we do an upgrade something like this will happen.
hi Yill, due to copyright issues I can’t. Do you have an email I can send it to?
Hi Claudia,
Thanks for reaching out! Would you please provide your login credentials with the following information to support@laborator.co:
1) your WordPress user/password/URL
2) reference the URL of this ticket in the email
3) briefly report the issues you have
Best,
Imran
Hi guys, we noticed on the portfolio items pages, that it is possible to tick ‘allow comments’. Is this something that would be featured on the portfolio page? And if not, could we potentially add the Disqus Comments plugin? thanks a lot!
Hi guys, I have tried making a column with the rows 1/4 + 3/8 + 3/8 but it doesn’t work
What I want is to have two larger rows and one smaller. How do we do that? thanks
Hi there,
Currently we don’t have the comments in the Portfolio Items because we don’t think is a necessary thing for the Portfolio Items, anyway we will look up and see what we can do about it.
If you want to make a row with two larger columns and a smaller one then it would be better if you do this 2/12 + 5/12 + 5/12
Kind Regards,
Art
Hi Art, thanks for all the help. Is it possible to create same-page navigation links, i.e. links that automatically scrolls the user down to the relevant section on the page? thanks
Hi Art, we are using visual composer to make a portfolio item. We’d like to insert sharing options and the like button, but they are not available when setting up the item in this mode. How do we enable these features? thanks
Hi there,
That’s possible if you set an ID to a section of the page and then in the menu refer it as #section so it will scroll down to it.
P.S: You have created some other tickets, in the future if you have any question, please don’t create a new ticket but just find a ticket that you have wrote to us earlier and just reply there with your new question, because in this way it’s easier for us to understand what you have done and what is left, also is would be easy for you to post in one thread 
Kind Regards,
Art
Hi Art, thanks a lot. Sorry, I will stick to this thread from now on then
How do we set an ID to a section? And do you have any advise to us on the sharing/like issue above? Thanks again
Hi Art, figured out the part about the ID! Thanks for the advise before 
Hi Art, what about this one: we are using visual composer to make a portfolio item. We’d like to insert sharing options and the like button, but they are not available when setting up the item in this mode. How do we enable these features? thanks
Hi
Can you please temporarily add social buttons in the end of file, so while we are planing to insert Visual Composer Sharing Buttons for portfolio items.
Download this file: http://drops.laborator.co/Zay2+ and replace it in this directory (of the theme): kalium/tpls/
It will display share buttons in the end of portfolio item.
Trying to create a portfolio in the same format as the example you provide on your website http://demo.kaliumtheme.com/agency/ but do not seem to have a ‘portfolio’ area on my WP dashboard (usually there is one, just as there is one for ‘posts’ and ‘pages’ etc.) Can you walk me through how to make this work?
Hi Belinvk,
Thanks for writing in! Would you please post with the account you bought the theme, this way we can verify that you’re a real customer as we do not offer support to users who doesn’t have “Purchased” badge.
Best,
Imran
Hello, when I go to activate visual composer, it is taking me to a different page that says I do not have a copy of the plugin and cannot activate it. I followed the steps in the video, and my screen does not look like that. Can you help me unlock the visual composer so that I can use it on my site?
Hi Lula,
Thanks for reaching out! Please don’t forget to go to Appearance > Install Plugins to update all your premium plugins to the latest version that we support.
Premium plugins don’t allow us to give customers our license number, so on each premium plugin such as Visual Composer, Revolution Slider and Layer Slider update we release a new update to our theme with the latest version of that plugin included, and customers don’t need to worry about that,
You never need to buy any premium plugins that comes with our theme.
Best,
Imran
Thank you very much, I didn’t even know that existed. It’s working great now.
I was trying to implement this pen (http://codepen.io/quasimondo/pen/lDdrF) into Kalium as a background color. I’ve placed the Script into the footer, placed the css into custom css, and then tried editing portfolio-listing.php with a class on the main container. Any advice? This is on a local site
Hi psdower0406
This is a very custom request, and is out of our scope, but i will try to help you only this time for this kind of questions.
Please add this code in functions.php (preferably in child theme of Kalium):
add_action( 'kalium_wrapper_start', 'gradient_bg_color_custom' );
function gradient_bg_color_custom() {
?>
<div id="gradient" />
<style>
#gradient {
width: 100%;
height: 100%;
padding: 0px;
margin: 0px;
position: absolute;
left: 0;
top: 0;
z-index: 0;
}
</style>
<script>
var colors = new Array(
[62,35,255],
[60,255,60],
[255,35,98],
[45,175,230],
[255,0,255],
[255,128,0]);
var step = 0;
//color table indices for:
// current color left
// next color left
// current color right
// next color right
var colorIndices = [0,1,2,3];
//transition speed
var gradientSpeed = 0.002;
function updateGradient()
{
if ( jQuery===undefined ) return;
var c0_0 = colors[colorIndices[0]];
var c0_1 = colors[colorIndices[1]];
var c1_0 = colors[colorIndices[2]];
var c1_1 = colors[colorIndices[3]];
var istep = 1 - step;
var r1 = Math.round(istep * c0_0[0] + step * c0_1[0]);
var g1 = Math.round(istep * c0_0[1] + step * c0_1[1]);
var b1 = Math.round(istep * c0_0[2] + step * c0_1[2]);
var color1 = "rgb("+r1+","+g1+","+b1+")";
var r2 = Math.round(istep * c1_0[0] + step * c1_1[0]);
var g2 = Math.round(istep * c1_0[1] + step * c1_1[1]);
var b2 = Math.round(istep * c1_0[2] + step * c1_1[2]);
var color2 = "rgb("+r2+","+g2+","+b2+")";
jQuery('#gradient').css({
background: "-webkit-gradient(linear, left top, right top, from("+color1+"), to("+color2+"))"}).css({
background: "-moz-linear-gradient(left, "+color1+" 0%, "+color2+" 100%)"});
step += gradientSpeed;
if ( step >= 1 )
{
step %= 1;
colorIndices[0] = colorIndices[1];
colorIndices[2] = colorIndices[3];
//pick two new target color indices
//do not pick the same as the current one
colorIndices[1] = ( colorIndices[1] + Math.floor( 1 + Math.random() * (colors.length - 1))) % colors.length;
colorIndices[3] = ( colorIndices[3] + Math.floor( 1 + Math.random() * (colors.length - 1))) % colors.length;
}
}
setInterval(updateGradient,10);
</script>
<?php
}
It will look like:
Hey there. How come the custom portfolio item URL prefix isn’t reflected in the <title>? It always shows up as Portfolio – Blog Name. Where can I change this? Thanks in advance!
No worries. Here’s an example: http://i.imgur.com/9XkvxKm.jpg <- Basically, the <title> element in the <head> of the page source.
Hi there,
Thanks for your screenshot! That is your site identity and not breadcrumb; to change, please navigate to Appearance -> Customize -> Site Identity, as per shown in the following:
Best,
Imran
Hey Imran, thanks for the reply. I meant, more specifically, the word Portfolio, which based on the custom url should say Guests.
Would it be possible for me to fix it using a child theme?
Awesome! Thanks Arlind. 
Hello,
I just updated my Kalium Freelance theme to the latest version (1.8.9). I also updated Wordpress to the latest version as well. My Contact and About pages are not working. Both pages are completely blank aside from my logo at the top of the page. I am also not able to navigate my way around the website from these two pages.
What can I do to fix this?
Thank you
Hi there,
Thanks for reaching out! I see that you don’t have the “Support Subscription” for this theme listed next to your name; we can’t provide support for customers who don’t have the support package.
Best,
Imran
I have an incredibly dumb question that I unfortunately can’t seem to find any documentation/support for. How do I add images to a single portfolio page? I am comparing my own Side Portfolio page to one of your demo pages (which has several images) and can’t seem to find where those images are attached to it. I have no trouble adding a featured image or adding images directly to the post, but can’t for the life of me figure this out. Help very much appreciated!
Hi mrconkin,
When adding or editing a portfolio item, scroll down to the page and in the Parameters and Options and then switch to Portfolio Gallery, see screenshot below for more information:
Cheers,
Art
HI
great theme. I have recently updated the theme files and the site seems to have become buggy. For example the vimeo videos are not displaying:
http://www.paulmackay.co/portfolio/itv-idents-valentines-day/Thanks for your reply. I have all the plugins updated.
The problem is that the vimeo video is not showing only the URL to the video on the vimeo server.
Please have a look at the link and see what I mean.
many thanks.
Hi dreelondon
Can you please send us your FTP credentials on email? We need to investigate your problem and then get back to you with possible solution.
To send us email use this link and please write us your request again, because we receive a lot of emails on daily basis and we unfortunately can’t remember all customers requests.
P.S: Please note that we usually do not respond to emails that request support, because here is our primary support forum. We use contact form just for sending sensitive information. Also emails response time can be up to 7 business days.
Also your support package has expired, we kindly ask you to renew support package if you are willing to get continuous support from us.
Hello Kalium team.
I really enjoy your theme for some time now, it really helped me a lot.
I have a question about a new portfolio item i want to make. I have HD pictures and i added caption to the pictures. I want the pictures to open as light-box because i want them to open to full screen and as slideshow. The problem with light-box portfolio item is that i cannot add main description to that item, only the title of the portfolio item is shown, not the description.
I made other types of portfolio items but i want the pictures to open to full screen with caption and show the description of the Portfolio item. HOW TO DO THAT?
Please advise Thank you in advance
Hello, sorry also another quick question. My logo appears too big in cell phone and tablet, here is my site www.erebos3d.com. how can i fix that? Thank you
Hi Christosgeor
If you are using Lightbox item type (see here) then the image will contain description by default, as shown here:
http://demo.kaliumtheme.com/photography/#subway-stopIf this is not your case, can you please give me your page URL so I will check if I can help you in that case.
As for your next question about logo, add this custom CSS to reduce logo size in mobile devices:
@media screen and (max-width: 768px) {
.main-header .logo-and-menu-container .logo-image {
max-width: 50px;
}
}
You may change that 50px value to your own preferred size which will be applied in mobile/tablet screen size.
Thank you for your reply. I want to make this portfolio item http://erebos3d.com/portfolio/interior-collection/ a lightbox type but the general description of the item isn’t showing in lightbox portfolio type, only the title appears.
As for the logo I will add this code now to css thank you.
Hey guys,
I really like your theme (I want to use it as the demo Freelancer (http://demo.kaliumtheme.com/freelancer/). But when I open that demo on my iPhone the hover-effect on the homepage (with the eye) is not displayed correct.. So that is a thing I want to change to the hover-effect of the demo Agency (http://demo.kaliumtheme.com/agency/).
So I was curious if this is possible in the theme?
And is it also possible to chose another menu-type than displayed in the demo’s?
Looking out for your reply!
Cheers, Ferre
Hi Ferre,
Thanks for dropping by! Upon checking, the hover effect seems to be working fine at our end:
is it also possible to chose another menu-type than displayed in the demo’s?
Please navigate to Laborator -> Theme Options -> Header and Menu as per shown in the following:
Best,
Imran
Hi there, quick question concerning Google Maps with a Snazzymaps- Modification: Is it possible to adjust the Colors (especially the background) of legal disclaimer on the bottom of each map?
I’m using a dark grey layout on my contact site, and the light area beneath the text just doesn’t look too good. It’s obviously not allowed to remove this area, but a little modification would help a lot – how do I get there?
http://i.imgur.com/c1uYMTM.png?1Also – on my Site I use a 25px Theme Border. The Google Logo on the left and the Disclaimer on the right are both beneath this border (“oogle”, which doesn’t look too good either. Maybe custom CSS might help?
Thank you, really appreciate your work here!
Nicolas
Please ignore the second Issue, I figured that out myself… 
Hi! Since it’s a Corporate Site, and we’re not ready with all of the Content yet, I can’t turn off the Coming Soon-Mode. So I’ll write you an Email…
Hey developers. What about google font support in chrome and safari browsers at IOS devices? I have issues, cause google font are applying only for latin letters but not for cyrrilic!!! (nefa-architects.ru)
Hi Mertsa
In order to add support for Cyrillic character set, please add this code in functions.php:
add_filter( 'kalium_google_font_subset', 'kalium_google_font_subset_list' );
function kalium_google_font_subset_list( $subset ) {
return "latin,cyrillic";
}
Please note that this will add support for the Cyrillic characters, but also the font must support cyrillic chars as well in order to fully work.
Hi, It s me again. The website which i spoke about: http://www.paulmarlier.fr/work/
Now my first page is replace by that: http://www.paulmarlier.fr I m relie lost, and i don’t understand why … Thanks a lot
Hi there,
Thanks for reaching out! Upon checking, everything seems to be working fine at our end:
Would you please provide us with the detailed description of your requirement and perhaps your desired mockup screenshots with the issues imprinted? So that we can come up with a tailored response once we have a better understanding of your problem.
P.S: You have created some other tickets, in the future if you have any question, please don’t create a new ticket but just find a ticket that you have written to us earlier and just reply there with your new question. Because in this way is easy for us to understand what you have done and what is left, also is would be easy for you to post in one thread 
Best,
Imran
Thanks a lot for your quick answer !!! I really appreciate !
But i have always a little problem, my portfolio’s items don’t load all the stuff.. Just the first page is ok, and when i m scrolling, the website said that is no more items. Can you help me about that ?
Thanks a lot Valium team !
Regards
Hi there. I have a few issues, which I hope you can help me figure out…
1. I can’t update my Slider Revolution plugin – I currently have version 5.2.4.1 installed
2. I can’t edit my sliders anymore… (might lead back to issue no. 1)
That’s it for now.
BTW I am working on a local installation, so I can’t give you access…
I have the new version of Wordpress installed (4.5)
Best regards
Mads
Hi again…
Tried deleting and reinstalling the plugin. Still the same. Now I have version 5.2.5 installed. Cannot edit my slides, nor can I build new slides…
www.museumragnarock.dk
Hi masester,
Hmm you may have a problem with your server configuration.
Can you please send us your site URL and WP credentials on email? We need to investigate your problem and then get back to you with possible solution.
To send us email use this link and please write us your request again, because we receive a lot of emails on daily basis and we unfortunately can’t remember all customers requests.
P.S: Please note that we usually do not respond to emails that request support, because here is our primary support forum. We use contact form just for sending sensitive information. Also emails response time can be up to 7 business days.
Kind regards,
—Ylli
Hello, First a big shout out for this excellent theme! I never had a theme so well designed and so easy to set up! I seem to have a little bug though. I’m using the carousel portfolio (type 3). The main images are full width, way too big, and with opacity 0.5. The next/previous images are not visible. Have I missed something? Thanks in advance.
Hi there,
Thank you very much for your kind words, this really motivates us 
I’m glad to say that the feature to adjust the image height on Carousel Portfolio will come on the next update, that will happen on the beginning of the next month 
But if you want a very quick help then you please go to Custom CSS tab inside that project and add this CSS code:
@media screen and (min-width: 991px) {
.slick-initialized .slick-slide {
max-height: 435px !important;
}
.single-portfolio-holder .gallery .portfolio-images-slider.is-finished img {
width: auto;
max-height: 435px !important;
left: 50%;
transform: translate(-50%, 0);
}
.single-portfolio-holder.portfolio-type-3 .gallery-slider .gallery-item {
max-height: 435px !important;
}
.image-placeholder img {
width: auto !important;
max-height: 435px !important;
left: 50%;
transform: translate(-50%, 0);
}
}
Kind regards,
—Ylli
Hi, thanks for your quick answer! I tried this custom CSS code, it sets the height of the image, but not its container, and the main image still is at opacity 0.5. I’d like it to look just like in the demo: http://demo.kaliumtheme.com/main-dark/portfolio/bergenfield/ I there something different than the demo in the package you sell?
Thanks
.slick-list { padding: 0 150px !important; }
.slick-current, .slick-active { opacity: 1 !important; }
Thanks anyway!
Hi there,
Glad to hear that your problem is solved 
As for your other question:
Hello, is there a trick to sort the portfolio items randomly? I mean, not the most recent first, but random. Thanks in advance!
You can use Post Types Order plugin.
P.S: You have created some other tickets, in the future if you have any question, please don’t create a new ticket but just find a ticket that you have wrote to us earlier and just reply there with your new question, because in this way is easy for us to understand what you have done and what is left, also is would be easy for you to post in one thread 
P.P.S: Note that the answer may already be posted so search within the forum before asking a question, there is a chance that you will find the same question answered 
Thanks for your understanding
Kind regards,
—Ylli
Hello, Thanks for your help! I’ll remember posting in the same thread and searching the forum, sorry. Post Types Order is not the right one, but i’ll look for another plugin then. Still enjoying working with Kalium! Cheers.
Hello, I’m starting to create portfolio items and i’m wondering what’d be the best image size to upload. Also what’s the best sizes to set in wordpress’ media settings so that it doesn’t create 15 versions of an image? Cheers.
I also have another question about the carousel portfolio. It is working fine with horizontal images, but I can’t seem to find a good solution to display vertical images. They scale to full width but then their height is way too big! Have you thought about something for vertical images?
Alright i found this solution on the forum, but it still isn’t ideal for every device sizes:
.slick-slide {
max-height: 435px !important;
}
.slick-slide img {
width: auto !Important;
max-height: 435px !important;
left: 50%;
transform: translate(-50%, 0);
}
Any recommendations for the media settings? Is it necessary to have 12 or 15 versions of an image in wp-content/uploads?
Hello, I’m back to work on my website and still trying to find a solution to order my portfolio items randomly. I installed several plugins. ‘WP order-by’ works, but only orders the first couple of portfolio items. When I scroll down the page, the next items revealed are still ordered by category.
Could you help me modify the theme file managing portfolio items order?
Thanks a lot for your help! Mathias
Hi Mathias,
We have moved our support system to Ticksy, which is more advanced and secure support system management.
If you need our support please just write a ticket on our external support system.
Thanks for your understanding!
Kind regards,
—Ylli
Hi I tried to find the answer in the comments but couldn’t find it so could you send me the code that enables me to add the like and share in the portfolio while using visual composer? Thank you!
Hi there, I talked with the developer and he said that the Visual Composer portfolio doesn’t have the like and share included because there is no place where to insert it, if you want to we can give you a custom code which requires theme modifications to work.
Kind Regards, Art
Hi Art
We are in the process of implementing this option but it is still not finished so when its finished you will see it within new update of Kalium.
But if you really need this option now, here is what you need to do:
1. Open this file: /wp-content/themes/kalium/tpls/portfolio-single-7.php
2. Copy this line of code:
<?php include locate_template( 'tpls/portfolio-single-like-share.php' ); ?>
3. Add it on line 21 (before code that starts on line 22).
This will work for you.
Great thank you so much!
Hi Lab!
I wanted to change the theme name to delete any reference on kalium in the source code. So I’ve renamed the folder via FTP and renamed “theme name: my name” in the style.css. Then switch to new theme in dashboard.
Sadly it looks like I’m losing the whole customization I did to the theme, like font, branding, colors, menu positions and so on.
Is there anything I can do?
Thanks!
www.wearemonalisa.com
By changing the folder name, I’m losing all customizations.
Hi Tarmicle,
Thanks for the link! Would you please provide your login credentials with the following information to support@laborator.co:
1) your WordPress user/password/URL
2) your FTP host/user/password
3) reference the URL of this thread in the email
4) briefly report the issues you have
Please note that we usually do not respond to emails that request support, because here is our primary support forum. We use contact form just for sending sensitive information. Also, emails response time can be up to 7 business days.
Best,
Imran