38278 comments found.
Hello can you please send me a beta copy too. I am having PHP critical errors trying to edit any page while Salient WP Bakery is enabled. When I disable the plugin, I am able to get in.
Specifically PHP memory is exhausted when running this file… /www/[redacted]/public/wp-includes/class-wpdb.php on line 2431
Running wordpress 6.2.2 and the latest Salient theme and salient plugins.
Sorry, there is no issue with Salient WP Bakery… the issue was elsewhere.. Thank you 
Hey ebrek1, I’m glad that you got it sorted 
Kind regards
Please do feel free to send me the beta theme though if you have a moment 
Hi can you help tell me how to reduce the nav header padding on this website https://www.kyutskin.com/.
I have tried from Salient > header Navigation https://prnt.sc/_62LfJFW20ED
If seen by the user https://prnt.sc/Ib10tSMYiZOE, it can be seen that there is a very large distance
But if seen by us as admin it looks ok https://prnt.sc/pRV3VQbcH4dv
Hey shaky512,
I am seeing the smaller amount of padding on your header navigation from my end as well. You probably just need to clear the cache from your performance plugin (litespeed).
Kind regards
I’ve been waiting patiently for the new update.
However, it feels like there might be some time still before its official release.
Could you send over the beta so I can’t start playing around with it?
Thanks in advance.
Hey reganmcgregor,
The final release is actually around the corner at this point—we’ve already issued the final pre-release version to the beta group. However, I’ve still followed up with your request via email 
Cheers
Hello Salient Team, I’m trying to create an ordered list and having issues in the formatting after publishing a page. I’m trying to format a typical ordered list this way:
1. TEXT a. text b. text i. text ii. text c. text 2. TEXT ...and so on.
But I’m not sure if it’s a Wordpress issue or the Salient theme, but here’s what I get when I publish page.
1. TEXT 1. text 2. text 1. text 2. text 3. text 2. TEXT
There’s no hierarchy at all, it’s just all numbers which causes confusion. Does it require CSS styling or is there another fix for this? Thanks for your help.
EDIT: Looks like the comment section won’t allow me format an indented ordered list but hopefully you get the idea.
Hey Marvin0892,
That will be corrected in the next release. For now, you can fix that by adding the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
ol ul li {
list-style: disc;
}
Kind regards
Thanks in advance
Hey MAJMonaco,
The space at the top/bottom of that is currently being set through the row padding inside of the element: https://ibb.co/nfG4cPj
Kind regards
I may have expressed my question badly, but I was talking about these two spaces: https://ibb.co/rfxg84b
Thanks in advance!
Hey MAJMonaco,
You can alter the height of the actual featured media by using the option “Media Height” field when editing your Sticky Media Sections element: https://ibb.co/Kx1C5Yb
Kind regards
Hello,
Yes, but I’d like to keep this image size but with less space above and below the image if that’s possible.
Thank you in advance
If you do not wish to increase the height of the image to reduce the top/bottom open spacing, I’m not sure I understand the final outcome you’re trying to achieve. Could you kindly provide a quick mockup which depicts the result you’re after?
Thanks in advance
I think we’re going to forget what I wanted to do. When I was doing my layout I realised that to do what I wanted to do the image would have to not move and the text would have to “disappear” when you scroll and I don’t think that’s possible?
Hello,
How can I make sure that the text in the first and last sections of the Sticky Media is in the middle, whatever the size of the image (currently I have to add padding but it’s not 100% the case on screens.
Thanks in advance
Hey MAJMonaco,
The would be no way without custom modifications to exactly center align the content of the top/bottom section to the middle of the featured media. However, you could get it close to center by using a vh based padding. Current the first row has a padding top of 20% and the last a padding bottom of 20%. I would suggest changing both of those to be 12vh instead.
Kind regards
Hello,
Thanks, it seems to do the job, but as soon as the screen is less than 1300px wide it doesn’t work anymore. How can I fix this?
Thanks in advance
Hey MAJMonaco, you would need to use CSS to adjust the padding for small desktops only. An example of that would look like:
@media only screen and (max-width: 13000px) {
.top-row-padding-adjust {
padding-top: 6vh!important;
}
.top-row-padding-adjust {
Padding-bottom: 6vh!important;
}
}
This assumes you’ve added the class names “top-row-padding-adjust” and “top-row-padding-adjust” to your first and last rows within that element.
Hello! That’s perfect, thanks!
You’re welcome, MAJMonaco 
What is the floating side “menu”/navigation in the one page “app demo” that sits on the right side center of each page floating with tool tips signifying each section and how do you modify it?
This floating navigation is in the https://themenectar.com/salient/service/ and https://themenectar.com/salient/app/.
Hey zingbot,
Those get added from enabling “Page Full Screen Rows” option: https://ibb.co/5cqwzsX
Here is a video tutorial on that feature: https://themenectar.com/docs/salient/page-metaboxes/#fullscreenrowsKind regards
Hi i am trying to add support to your quickview for plugin: Woocommerce all products subscriptions, i just need to know what “EventListener” is used when Quick View button is clicked for “Open”
Thanks
Hey BWebDesign2015,
You can bind an event listener to the window event that gets triggered on open:
nectar_quickview_init
See salient/nectar/woo/js/quick_view_actions.js in regards
Cheers
Hi, thanks can this be added to be done via chidl theme would i just add nectar/woo/js/quick_view_actions.js to child theme same folder structure
Hey BWebDesign2015,
You could dequeue/register that file from your child theme, however, there already is the ability to bind custom JS using the “nectar_quickview_init” event from another source without the need to edit the file directly. e.g.
https://pastebin.com/zZ8dxMDuKind regards
Hey guys, I am having a weird margin/padding issue. After installing the theme with only very basic styling, it seems to add margin or padding somewhere, creating an unnecessary scroll bar. Any idea what is causing this?
https://on-callimaging.com/about/Hey mrittman,
Could you kindly allow me to bypass your coming soon plugin so that I can take a look?
Thanks in advance
Oops, yes sorry about that! You should be able to see it now 
No problem, mrittman 
It looks like that may be related to the combination of your header settings. You can remove it for now by adding the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
.container-wrap {
min-height: 0!important;
}
Kind regards
Wow, thank you so much! 
You’re welcome, mrittman 
Hello, is there a way to add an ACF custom field inside a Nectar Post Grid? Thanks.
Hey nacaodesign,
Yes, you could use the filter “nectar_post_grid_excerpt” to add any additional content to each post item. Here’s a code snippet example that queries for a custom post meta field and appends it to the display:
https://pastebin.com/xJiNR2H8Kind regards
We are seeing a low score with INP, currently longer than 200ms. Is this something which will be addressed with an upcoming theme update or is it something we will need to action ourselves?
Hey MarcGarner, that metric won’t be actively used in rankings until March of 2024. But, yes, we’ll be taking it into consideration With future updates. However, it’s also possible that third party JS from plugins you may have active are causing that to be higher than normal as I’m seeing a range of 200-350ms in the base theme.
Kind regards
Hi Team,
Is there any CSS code to add in “General Settings” > “CSS/Script Related” > Custom CSS Code – to deactivate the WP (uploaded) logo being clickable? This does not work:
#site-logo a {
pointer-events: none;
cursor: default;
}
Thanks.
Hey timtimtim,
You can use the CSS snippet
#header-outer #logo {
pointer-events: none;
}
Kind regards
Thank you!!
You’re welcome, timtimtim 
Hey guys just out of curiosity, will Salient ever get more advanced header customization options? Like a header builder similar to Avada?
Hey mrittman,
While we have preferred to provide a set of options to enable header simple yet powerful header customization, adding a traditional header builder is indeed an item on the wishlist—I’ve added your +1 for the idea 
Kind regards
Yeah I think this has been requested for several years now. I can only assume it probably won’t happen at this point. That being said, I can certainly understand it being quite an undertaking, as the header content is built into the core of the salient theme.
Hey mrittman,
while it would be a large undertaking, it’s definitely not off of the table 
Hi, ThemeNectar. I have a row set to Sticky On, with alignment to Bottom of Window. When this row reaches its position stickiness is disabled, which is good, however I would like the row to also no longer be visible in this state. That is, when it reaches its position on the page not only will it not be sticky, it will also disappear. Thanks
Hey webspacedesignuk,
Unfortunately, there’s no way to handle that without creating a custom JavaScript event to track the scroll position and then modify the display of your row once the bottom has been reached. Salient does not offer any built-in functionality to assist with that.
Kind regards
It is very weird but I can not edit some text blocks, if I change text there they just loading forever when others can be edited normally https://coffeewithdamian.com/?p=11727&preview=1&_ppp=783f1f1b1f
Hey Fixedman, it seems you’ve accidentally posted the same comment twice.
Yes, sorry
It is very weird but I can not edit some text blocks, if I change text there they just loading forever when others can be edited normally https://coffeewithdamian.com/?p=11727&preview=1&_ppp=783f1f1b1f
Hey Fixedman, if you’ve already ruled out a possible third party plugin conflict by temporarily deactivating any you may have active, please open a ticket on the support forum in regards.
Thanks in advance
I will do.
Thank you, Fixedman 
Hi very simple question but I cannot seem to get the dimensions correct!
How do I create a Row with a single image on the top with text below without having the image be huge and disproportionate like the example here:
https://chrisgrenier.com/wp-content/uploads/2023/07/Screenshot-2023-07-11-at-1.55.32-PM.png(Image used in that screenshot is 100×100px).
Thanks!
Hey svtmuscle!
When editing your image in the page builder, you can specify a custom max width to constrain the size: https://ibb.co/C6WysKT
Kind regards
Hi, I received a notification from Google that it will be replacing FID with Interaction to Next Paint (INP) as a Core Web Vital in March of 2024. Is this something that is fixed with the theme development, or is this something users will need to address? (sorry I’m not super knowledgeable with this stuff haha)
Hey mrittman!
We always keep page speed and specifically the core web vitals in mind with theme development. The Interaction to Next Paint (INP) metric is already available to see when testing in lighthouse, but it won’t officially replace the current FID until 2024 as you pointed out.
Kind regards
Thank you! 
You’re welcome, mrittman 
Hello, we are planning to buy this theme for a skincare project. Although it has many beautiful demo, we want to create a new design based on these two websites via figma and then change the design with wp-bakery provided with your theme. Do you think it’s achievable?
https://meetalleyoop.com/ https://snif.co/Hey sak1b,
You could achieve something very similar using the page builder, however, you would need to do that manually as there are no pre-made templates like that currently.
Kind regards
To make some customization like that, will it make the theme slow?
Hey sak1b, no – customizing the design to suit your own needs will not affect the performance.
Kind regards
Since the theme update that included the wp bakery update i have not been able to add images to image gallery in wp bakery image will just not upload although its in media library
Hey giveitwebstudios, since I can’t replicate that locally and have not seen other reports of a similar issue, kindly open a ticket on the support forum in regards.
Thanks in advance
Please, have a look at this situation: go to this page https://tsundoku.ie/art-boook-fair-2023/programme/ and scroll down almost all the way to the bottom. Then refresh the page (I’m in Chrome on a mac), and when the page reloads scroll up. The navigation has been folded under the header. How to prevent this?
Hey quomo,
Since you have custom multi-line content in your header, you’ll need to supply a hint for the height of that to prevent this from occurring. Here’s a snippet which should fix it:
@media only screen and (min-width: 999px) {
body #header-space {
height: 270px;
}
}
Kind regards