38327 comments found.
hello.How can i change names mause pointer ? for example it is Wiew i wanna change this to more information.Help please thanks beforhand
Hey elxanabas6,
You could translate that string using your desired translation plugin: https://themenectar.com/docs/salient/translations/
The text domain that the string “View” is contained in is “salient-core”.
Kind regards
I am trying to remove the date from my portfolio item. I have tried so many things.
I used the inspect element tool in Chrome to learn that the date is inside of a div with a class called “project-meta”. I went to my custom css and entered:
.project-meta {display: none;}
This didn’t work.
I went into the theme’s files > includes > partials > single-portfolio.php and found the section of code that calls for this project-meta and deleted it.
That didn't work.
I searched the internet and found this article (https://themenectar.ticksy.com/article/2322/) and put this code into the custom css section. Still nothing.
I feel like there should be an option in the theme options or on the portfolio item itself to remove the date. It shouldn’t be this hard.
Am I missing something here?
Hey onetonaden,
There is a theme option to toggle the display of the date on your projects—it’s called “Display Dates on Projects” in the Salient options > Portfolio tab: https://ibb.co/kKr9cgL
If you’re trying to remove the date that appears on the single project page with CSS, the project-meta div should be an ID and not a class name. Therefore the rule would look like:
#project-meta {
display: none;
}
Kind regards
Hi there,
Is there a way to disable the “submit/ enter” button on header search? Thanks!
Hey Romanesco!
The header search should only include a close button instead of a submit button by default. Can you kindly share your URL so that I can take a look at your setup?
Thanks in advance
Hi ThemeNectar, I hope you’re doing well. Currently, when I type in a search term and hit the Enter key on my keyboard, it takes me to the Search page which I can’t customize. I was wondering if there’s a way to remove the “Enter” step so that I can stay on the same page. Is this possible?
Thank you for your help.
Hey Romanesco,
Salient offers an AJAX search function, which will display results within the header navigation bar directly. You can enable that in the Salient options > Header navigation > Header Search
Kind regards
Hi ThemeNectar, That’s the search I’m using. However, I’d like to disable the “Enter” button from triggering a routing to a search results page. Is that possible?
Thank so much.
Hey Romanesco, there’s no way to disable the enter button from working in the context of that form without some custom development. i.e. a custom JS event to prevent that functionality
Got it. Thank you for the clarification.
You’re welcome, Romanesco 
Hi there,
Any way to micro-adjust the search icon position in the header so it matches inline with the social media icons? It’s currently slightly higher than the social media icons. Thanks!
Or maybe adjust the header social media icons row instead? Seem to be misaligned with the custom fonts Menu bar too.
Hey Romanesco, can you kindly share your URL so that I can take a look at your settings to help out with that?
Cheers
Hi ThemeNectar,
This is currently a local environment. Here’s a screenshot of the issue: https://share.cleanshot.com/42TVKVn1 Clearly, the social media row is misaligned with the Menu and Search icon.
Hey Romanesco,
If you want to move the social icons, you could use a snippet like:
#header-outer #social-in-menu {
top: -3px;
}
Sadly, that didn’t work. Will share an URL when I have it live. Thank you!
I’m also waiting for new demo pages ;) I hope it will release soon, so i will buy this great theme ;)
Hey johannes1000, we appreciate your interest in Salient 
Hehe 
Hello, I would like to know if there is a way to add the product link to the title of each one of them in the woocommerce-loop-product__title
Hey VictorCobian,
Most of the product styles already wrap the title in a link to the product page. Have you tried to change your product style in the Salient options > WooCommerce tab?
Kind regards
my site is not loading, I bought the theme but my developer somehow used the html and edited it. Autoptimize js script is somehow not loading
Hey tranced,
I would need to see your URL in order to assist. Can you please open a ticket on the support forum in regards?
Thanks in advance
Hi, it’s possible to make the filters collapsible in desktop, like they are in mobile?
Hey cievirtualp,
Currently there’s no built-in option to bring that functionality to the desktop display, however I’ve noted your +1 for the idea on the wishlist 
Kind regards
Hello, is Salient having the next scroll option: when scrolling each row is shown in full view. See: hoechstmass.net > When scrolling u go directly to the next row. At the right side there is a dotted menu with all rows to choose.
Hey imediastars,
Yes, here’s a demo of that option enabled: https://themenectar.com/salient/service/
Kind regards
thank you 
You’re welcome, imediastars 
Hi again,
Is there a way to determine the Recent Posts (slider multiple visible) height or aspect ratio?
Cheers
Hey Micatuca,
You can modify that by adding the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
#ajax-content-wrap .nectar-recent-posts-slider_multiple_visible .nectar-recent-post-slide {
min-height: 320px;
padding-top: 30%;
}
Kind regards
I haven’t found in documentation about horizontal list item responsive settings. WP Bakery also didn’t mention that thing. I am talking about the problem that happens on mobiles. When I have more than one column horizontal list item second column overrides the first column and in your demo the second column content moves perfectly to the second line. Changing responsive settings didn’t make a change.
Hey alabanco,
Please share your page URL in regards where you’re seeing that responsive issue so that I can take a look to assist.
Thanks in advance
Is it possible to remove a link from dropdown section menu item without adding # to it? UPDATED: resolved. you just delete the think after you add any link to it.
Hey alabanco,
I’m glad you were able to sort it out 
how can i change name’s “SCROLL DOWN” on home page?
Hey elxanabas6,
If you’re using the architecture landing studio template, that text is created from an image added through the “Single image” page builder element and set to spin in a circle. You would need to edit and replace that image with one of your own choosing with different wording: https://ibb.co/ySh0wWB
Kind regards
Thank you very much.I have one question more.Why can not change some settings 2-3 times just changes 1 time.for example i wanna change off canvas bg color from black to white and next time i wanna change from white to yellow.Second time it cant change
Hey elxanabas6,
Since there’s no known issue with the theme options not being able to save, can you please open a ticket on the support forum so that we can take a look at your setup?
Kind regards
hi, i’m trying to get a different font per blog post for all headers, is there any option to easily do this in a blog menu or with css?
Hey Ragmannl,
That would require css—You could use the CSS box available in the page builder in each post (top right gear icon) https://ibb.co/z5x1bLK
.single #ajax-content-wrap .entry-title {
font-family: 'Open Sans';
}
Kind regards
ty for the swift feedback, works great for the title, could you tell how to add the header1-5 so i can set different fonts for each?
Hey Ragmannl,
The selectors would look like:
.single #ajax-content-wrap h1 {
font-family: 'Open Sans';
}
.single #ajax-content-wrap h2 {
font-family: 'Open Sans';
}
.single #ajax-content-wrap h3 {
font-family: 'Open Sans';
}
Etc.
oh i see, ty for that i’ve been fiddling but did not get it to work. have a great weekend
Hope you have a great weekend as well, Ragmannl 
message for @be-gin
This is a salient website : https://wp-cafe.ca based on SAAS template
GTMetrix A 97%
test by yourself : https://gtmetrix.com/reports/wp-cafe.ca/iqK9MVjT/
Maybe you have a poor hosting provider. Reach us, we will help you to have the same score or above
We know well salient.
Thanks barreoblique, really appreciate your willingness to help out the community! 
Pre-Sale question – When is Salient 16 scheduled for release? Thanks
Hey suprcb, late this month—there is no exact day yet.
Kind regards
Halo please help and check, there is a warning from woocommerce: we already update salient 15.1.0
Your theme (Salient Child Theme) contains outdated copies of some WooCommerce template files. These files may need updating to ensure they are compatible with the current version of WooCommerce. Suggestions to fix this:
Update your theme to the latest version. If no update is available contact your theme author asking about compatibility with the current WooCommerce version. If you copied over a template file to change something, then you will need to copy the new version of the template and apply your changes again.
Hey shaky512, that warning will only show when updating to the recently released v7.8 of WooCommerce. We’ll be releasing an update shortly to remove it, and there is no actual compatibility errors that you’ll encounter because of it in the meantime when using v7.8.
Kind regards
Good Day
How do we link the cart on the header to a different page on the website, without being taken to the default woo commerce shop page
regards
Hey F5Creative,
You can filter “woocommerce_get_cart_url” from your child theme to global change the cart URL to a custom location: https://pastebin.com/zz7HCCU5
Kind regards
Hello! There is one thing I’m struggling with right now and it’s the WooCommerce pages, specifically the checkout page and the basket page. I’ve manually set them up using the shortcodes on the Woocommerce website but when I go to the checkout page and the basket page, I’m not happy with how they look, and I have no idea how to customize them. I can’t use the WBBakery Page builder on them either. What can I do?
Hey midojouay!
Unfortunately, there is no built-in editor for those two template files from WooCommerce. Currently editing them would require customizations from your child theme, or through custom CSS if you’re only looking to alter the design.
Kind regards
Okaay! Thank you.
You’re welcome, midojouay 
Hi, Why when i import demo contents images are not imported ?
Hey prodevglobal,
Can you specify which demo you’re importing and provide the link to the live site?
Kind regards