Okay
  Public Ticket #1480331
Theme options
Closed

Comments

  • ikatz started the conversation

    Hi, I need help with the following:

    1. How can I change the homepage so it does not show product items below the portfolio gallery

    2. The logo on the homepage does not seem to change from default Kalium. Everywhere else on the site it is working properly.

    3. How can I change the font for menu and footer items as well as the title in products and portoflio items, and the titles in portfolio gallery hover, etc.

    4. The sticky menu option I have enabled works fine in the homepage but does not work inside a portfolio item or a product.

    5. The menu in general seems different on the homepage than in other pages, it changes from light to dark theme and is slightly smaller. Are there two different control for menu appearance and if so where are they?

    Regards,

  •  1,560
    Laborator replied

    Hi there,

    1. You have set the shop page to your homepage which is a mistake, follow the instructions in the image and remove the home from it:

    (view large version)

    2. Read this tutorial in our documentation to fix this.

    3. In this category of our documentation you will find tutorials on how to change and add fonts to your theme, please read them carefully as they are explained in details.

    4. The sticky menu seems to work fine, tested it many times in many of your portfolio items.

    5.
    (view large version)


    P.S. I do recommend reading the theme documentation, as most of your questions have the answer there and many of our users find it really helpful.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • ikatz replied

    Hi Art,

    Thanks for the responses. I do try to read the documentation but sometimes its hard to find the right page to address your problem.

    I did everything as instructed for the fonts but Im still not seeing any changes, on menu, headers, products, etc. I have changed it as described in the instructions. Could you please take a look.

    One more thing - where can I change the location for the filter categories in the portfolio on the homepage? Right now they are aligned left, how can I change this if I want them center? (I remember once they turned center without changing anything and then turned back to the left FYI).

    Best

  • ikatz replied

    One more question - on the product page, what does the 'Revolution Slider Options' mean (ie. as seen on the attached screenshot). Does it mean I can insert a revolution slider inside the product page? Where would it be positioned? If not can you please elaborate on this. Thanks.

  •  1,560
    Laborator replied

    Hi again,

    1. I am sorry but I am not understanding what your real issue is here, can you please re-explain what the issue is as the font size which you mentioned earlier is the same on every page as you can see from the images which I attached.

    2. There is no option from the theme options, you can only add this CSS to Custom CSS to center it: 

    .portfolio-title-holder .pt-column {
      margin: 0 auto !important;
    }
    

    3. I do not see any attached image by you here.

    P.S. If you could list your questions in a list by numbering them, easier for us and you to know when there is a new question.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • ikatz replied

    Hi Art,

    Sure.

    1. Fonts - figured it out. The problem was that I had not removed the previous fonts so my changes were not taking place. It is now working correctly.

    2. Done, thanks. Will this be responsive?

    3. Forgot to attach the screenshot, now it is. What is that option for in product page?

    4. Is it possible not to show the price ranges in product page for variable products? I would like it to show only one price, say the lowest price. Or if not possible then to show no price at all unless one of the variants is selected. Please let me know if that is clear.

    5. Where is the cart, checkout and account pages? They are in the Kalium shop demo but I cant find them here on the main demo.. is there an easy way to get them? How can I proceed to finish up my shop into working order?

    Thanks Art!

  •  1,560
    Laborator replied

    2. Yes.

    3. It's an option which is automatically added by Revolution Slider to all the post types, it won't work on product pages.

    4. Add this CSS to Custom CSS:

    .woocommerce .single-product .summary .single_variation_wrap .single_variation, .woocommerce .single-product .summary>.price {
      color: #FFF !important;
    }
    .woocommerce .single-product .summary>.price>.amount:last-child {
      display: none !important;
    }
    

    5. If you haven't imported the shop demo content they won't show, or if you didn't allow them to install when installing WooCommerce as it asks you for these pages. These pages are on your site now, simply go to pages and you will see them. 

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • ikatz replied

    Hi Art,

    Thanks for the reply.

    1. Price - Thanks for the code. I guess that's technically right but its not what I was looking for. Is there a way to disable showing a price upfront altogether, so only the price below the size is shown when you select a size.

    2. I'm having problems with the ordering of the sizes. I updated the order in the product page from smallest to largest but its not showing the change (still showing 130 x 52 first). 

    3. On the 'Related Products' at the bottom, when I hover there is a overlay that appears with the name, is there a way to disable the overlay or edit the opacity and where the title appears as you can do with the portfolio overlays? I have not found where to do this.

    4. Update - I got an email that there is an update for the theme. Do I need to do the update? Its asking me to download the theme which I guess means that I have to upload it again.. will I lose all the progress I made with the site? Can you please recommend how to update and if its necessary.

    Thanks Art!

  •  1,560
    Laborator replied

    Hi ikatz,

    1. That's possible and if you could tell me before that you need to hide all the price then it would be easier for me instead of trying to find a solution of showing only the first price. Use this CSS instead of the one I previously provided:

    .woocommerce .single-product .summary>.price{
      display: none !important;
    }
    

    2. Searched for this and it seems that it's a problem of WooCommerce since a long time if you use custom variations and not global ones, see the search results.

    3. There is no way to disable it, this is a customization request, by adding this CSS to Custom CSS the overlay will hide:

    /* Hide overlay in related products */
    .woocommerce .related.products .product.catalog-layout-distanced-centered .product-internal-info {
      display: none;
    }
    

    If you're looking for further professional help in this matter, there's always someone available for such tasks on WP Kraken. Pricing and timeline are always straightforward there and that's the main reason for recommending those services.

    4. If there is a new theme then you should update it, the changes won't  be lost until you edit the PHP files of the theme (except the child theme). I have already updated it for you.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • ikatz replied

    Thanks for the replies Art.

    1. I put the code in but it is not hiding the price. See flora deslumbra piece.

    All the rest is working fine. 

    2. Regarding customization request, do you know if its possible to customize the product page so that all product pages will be affected instead of applying the change to one by one (for example photos in different locations and size, etc.)

    3. I know this is not your area, but can you please point me in the right direction to get my cart set up with a payment method, etc. I am looking for this in woocommerce but cant find where it is.

    Regards,

  •  1,560
    Laborator replied

    Hi there,

    1. Added another code, the price is hidden now.

    2. Didn't understand this question, if you have new questions please create a new ticket since you are referring the new questions with old numbers and I am going back to the other replies to look what question 2 was from the beginning, it is different in all of the replies.

    3. Please read the WooCommerce documentation here, as you also know the theme doesn't have to do with the functionality of the shop but with the look of it.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • ikatz replied

    Hi Art,

    I see price is still showing. Can you please help. Thanks.

  •  1,560
    Laborator replied

    Hi again,

    WooCommerce structure has changed again and so does the CSS, please use this CSS instead to hide the price:

    .woocommerce .single-product .summary .price{
      display: none !important;
    }
    

    I was testing the CSS in this product but there weren't any prices set for other product variables.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • ikatz replied

    Thanks Art that worked! But now im not showing a price either when I do choose an option (size), which I do want. Why is that? Is there a way to not show the price range but to do show the price when a size option is selected?

    Thanks again,

  •  1,560
    Laborator replied

    Hi again,

    Finally I've modified the price again and now it seems to be showing how you want it.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • ikatz replied

    Hi Art,

    Thanks so much for the answer, now it is working properly :)

    Can you please tell me if its possible on the product page where the tabs are at the bottom (see image) to:

    1. Change the title of the tabs

    2. Edit the tab contents (for example I dont know how/where to edit the second tab 'Additional information')

    3. Add new tabs

    Thanks!

  •  1,560
    Laborator replied

    Happy to hear it is working properly now.

    1. You can do this through Loco Translate, if you don't find the words in Kalium then make sure you search for them in WooCommerce.

    2, 3. WooCommerce offers a premium plugin for this, or you can go edit the raw files if you are a programmer or you can check this free plugin which I found.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • ikatz replied

    Hey Art, 

    Thanks for the reply.

    I did not want to change the language of the tabs ;) just the content, but your answer helped to create new tabs and edit contents.

    The only problem I am still having is with the second tab 'Additional information' which was created automatically from the beginning and which I dont see how to edit or delete. All it has is the sizes of the product which are already visible on the top. Can you help me with this.

    Second, I wanted to ask you how difficult is it to embed a video from youtube or vimeo somewhere on the product page?

    Thanks again!

  •  1,560
    Laborator replied

    Hi again,

    The Loco Translate is not only for translating, it is for changing the content (strings) of the theme which can be changed through it and they won't be lost on every theme update, the name of the plugin is confusing if you're not using it for translation but it does the job as it will change any string for example you want to change the word "Send" and re-name it to "Submit".

    For the "Additional Information" tab, the best way to hide it is to use CSS, add the following CSS to Custom CSS to hide it from the product page:

    li.additional_information_tab {
      display: none !important;
    }
    

    I have never tried embedding any video to products, but as I can see by a quick research videos are not officially supported but they can be embedded through plugins, but you can ask WooCommerce team directly about this as I can give you a wrong answer since I've never tried it.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group