Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Cart 168,313 sales
Recently Updated
Well Documented

ThemeNectar supports this item

Supported

38330 comments found.

Hello,

I’ve been trying to find and apply the colour change to the different CSS classes but I can’t manage to change the colour of the “read more”: https://keesystem.maj.mc/blog/ I’d like it to change to orange when you hover

Thank you in advance for your help

Hey MAJMonaco,

You can make that change 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-post-grid-item:hover .content .link_text,
#ajax-content-wrap .nectar-post-grid-item:hover .content .link_text svg * {
  color: #ef8126;
}

Kind regards

Thanks, perfect!

You’re welcome, MAJMonaco :)

I’ve updated to v16 but cannot see the Global Sections – Display Conditions on the right? any ideas. thanks

Hey vscdigital, have you also updated your Salient Core plugin after doing the theme update?

Kind regards

Hello! I need help! I use the block as you have on your site. I have a lot of text in one block and a little in the second. How do I snap a picture to the bottom edge so that there are no white gaps?

This block I use – https://ibb.co/z8R7b65

This is how this block is displayed on my website – https://ibb.co/kBPsf2n

Hey art_andry,

To stick with an image element instead of a background image, you would need to use absolute positioning e.g. https://ibb.co/dmRgsnR

Kind regards

Thank you for your help! It worked!

You’re welcome, art_andry :)

I have a problem with WooCommerce paginagion. For example, if you go here https://www.ledisquenoir.gr/en/shop and choose to go to Page 2 or 3 etc. after the ajax loading the page doesn’t scroll to top. This confuses the user and I need to find a way to fix it. Can you help?

Thanks in advance :)

Hey Vagdesign!

Salient does not offer AJAX pagination by default. It seems that one of your active plugins (woocommerce-product-filters) is providing this functionality, and handling the scroll back to top would be the responsibility of the plugin’s own code. I recommend reaching out to the plugin developer for further clarification.

Kind regards

You’re right! Thanks, I’ve forgot I had it enabled… cheers and keep up the great work and support :)

Glad I could help, vagdesign :)

Hola Mr. Nectar!

How I can apply the same look and feel from categories to subcategories in Woocommerce?

Thanks Friend!

Hey nocomments :)

You would need to apply your desired settings to your sub categories within the category settings. However, I’ve noted the idea to add a theme option to allow sub category products to inherit the parent header settings.

Kind regards

Hola Mr. Nectar,

My point is to apply css category style (image zoom and text, inside the sub cat wrap) to subcategories.

Thanks for your your responsive support!

No problem, nocomments :)

Can you kindly share your category URL so that I can take a look at your current setup?

Thanks in advance

Hi I’m getting this warning on one of my sites I manage:

Warning: Undefined array key “nectar-carousel-script” in /home/customer/www/versauk.co.uk/public_html/wp-content/plugins/salient-core/includes/vc_templates/item.php on line 36

I take it something needs changing on that line?

Any idea how to fix this?

Hey kitkana84,

That error should only be possible if you were somehow calling a carousel item outside of the normal carousel container which it’s constrained to. i.e. if in the classic mode editor, there is a
[item]content[/item]
instead of
[carousel][item]content[/item][/carousel]

If you’d like assistance in finding that within your page, kindly open a ticket on the support forum in regards

Thanks in advance

There are Category tag links on the featured image for my blog section on my home page is not visible till you hover, how do I edit them? https://rhondacosgriffdesigns.com/

and* it’s not

Hey Rhonda8181,

You can alter the category buttons by adding the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:

.masonry.classic_enhanced .posts-container article .meta-category a {
  background-color: #6d008e;
  color: #fff;
  border: none;
}

Kind regards

Hi,

I would like to move the ‘subtitle’ on the testimonial slider so that it appears above the testimonial text at the top of the slider rather than below the reviewers name.

Is there a CSS fix for this, or if not please can you direct me to the correct HTML/PHP template to edit?

Thanks,

Rory

Hey Rory,

It could be handled with CSS,

#ajax-content-wrap .testimonial_slider blockquote {
  padding-top: 30px;
}
#ajax-content-wrap .testimonial_slider blockquote .title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

Kind regards

that’s great, thanks!

You’re welcome, Rory :)

Icon Element

When selecting an icon, it would be cool if it also changed on the back-end editor. It would certainly make it easier to see what is what.

It would also be really nice to be able to choose a hover color as well. You can make the Icons links, but I wanted to match it with the same color-change animation that’s used in the default footer.

Hey mrittman, I’ve noted the ideas on the wishlist :)

Kind regards

Hi there,

Is there a way to increase the number of products on the product category page? At the moment the page displays 12 products before then a pagination.

Thanks in advance.

Not to worry, I found the what I was looking for.

Thanks.

Hey notcholas,

I’m glad you found the option :)

For anyone else who may come across this, you can alter the number of products per page in the Salient options > WooCommerce > General tab towards the bottom.

Kind regards

Hi there. I am having an issue. When I change the background image of my hero section it no longer stays full width. Its crops on the sides. https://mmoreira.co/mentoria/

Any ideas what is causing this?

Hey kayota,

It looks as though your row is not set to “Full width background” in the row settings. Can you verify that’s the case?

Kind regards

Its some type of bug, I start with a full width preset from Salient’s items. When I change the back ground image, it crops. The image is set as a background. I use the skincare hero section.

Hey kayota,

Since there’s no known bug similar to that, I would suspect there’s some other malformed content saved in your page which is causing the breaking changes. Have you verified the same thing occurs when creating a new blank page using the same template?

Kindly open a ticket on the support forum in regards so that we can take a closer look at the backend of your page in order to assist further.

URGENT: Website won’t scroll and content on some pages won’t load.

Website: https://fatguru.com

Was working before fine. Now stopped scrolling on homepage for example and new internal pages built working fine previously but any new portfolio pages (also Elementor) published and working fine logged in but not frontend for users eg: https://fatguru.com/portfolio/collison-tree-care/ only loads header and footer

Hey FAT_G, it appears that issue is tied to some third-party CSS code which is altering the overflow on the root HTML element. The third-party style that I’m referring to is: https://fatguru.com/wp-content/uploads/theplus-addons/theplus.min.css?ver=5.2.15

You would either need to disable that code, or counter it with your own custom CSS rule, such as:

html.video.js {
    overflow-y: scroll!important;
}

Hello, do you guys have an ETA as to when you will be updating your custom page builder to WP Bakery 7.1 with the new global copy and paste features they recently integrated?

Hey wpcodeus, I would estimate that towards the end of this month. We’re giving enough time for our own internal testing + WPBakery to address some of the issues users raised with v7.1.

Kind regards

Awesome, look forward to the update. You guys did such a great job with WPBakery, I truly wish you would buy them out and take over to make sure WPBakery doesn’t die out.

Thanks wpcodeus!

Feel free to reach out via the contact form on my author page if you’d like early access to test it out :)

Cheers

Hey guys, Im getting multiple errors :Warning: Cannot modify header information – headers already sent by (output started at /home4/wildcol1/public_html/wp-content/themes/salient-child/functions.php:16)” How can I fix the theme, do I just replace the theme files? Wont it overwrite my website?

Hey richardwells, that error is originating from your child theme, not the parent (core salient) theme.

That kind of error usually occurs when extra empty space are found at the top or bottom of your PHP files before the opening/closing php tags. Ensure that your child theme functions.php has no spaces before those tags. If you’d like further assistance with that, kindly open a ticket on the support forum in regards

Thanks in advance

Hello!

1. I tried to change the logo but it still appears in some sections. Here is a video showing you what I am talking about: https://home.mycloud.com/action/share/05efdbf0-9bed-4ab9-ab02-aa10d69fcf5d . How do I fix that?

2. I like the slider Height for the Legancy Demo and I am using One-Page demo. How do I change that? I tried to go to Salient/ Home Slider/ Slider Height but it did not change anything.

3. How do I make sure that the image slider will stay (appear) the same size that I created?

4. I would also like to add logo images for the clients to One-Page Demo like you have here https://themenectar.com/salient/corporate/.

5. How do I make the logo image move continuously not stop and move like you have it?

Hey visualpaint :)

There are separate versions of the logo which are used when the header is in the transparent state. Those are located in the Salient options > Header navigation > Transparent header effect tab.

For assistance with multiple questions or in-depth support, please utilize our support forum. We have a dedicated support team ready to assist you. You can find the support forum at the following link: https://themenectar.ticksy.com/

WP Bakery page builder: templates can´t be saved!

Hi, I am using newest salient theme and tried php 8.1 & 8.2. All Plugins are newest versions. If i am trying to save an own template, it´s not gonig to be saved. It apears in list, but if reloadind/leaving the page it´s gone.

Any clues/hints what could be the problem?

Site ist here: https://nordseelauf.com/

Regards, Oliver.

Hey Oliver, Since that’s not a known issue with the Salient WPBakery Page Builder, I would need to take a closer look at the backend when the error occurs to assist in troubleshooting it. Please open a ticket on the support forum in regards

Thanks in advance

Hi there, Thanks for the best theme. Quick one – how can I make a background video just play once and not loop? https://www.wildcolour.net/home/

Hey richardwells,

There’s no option to set that via the background layer by default. However, you could use a self hosted video player element to get that functionality inside of an inner row which is absolutely positioned to act as a background for the parent row. If you’d like assistance creating that setup, Please open a ticket on the support forum in regards

Thanks

You’re welcome, richardwells :)

how to add the checkout feilds in the “style_slide_in_click” layer that is visible when we add an item to the cart. Basically we want on page checkout.

Hey AngelaLamHF,

There’s no built-in functionality to assist in adding a full checkout inside of that area. It would require custom development through your child theme—the cart template file is located at “html/wp-content/themes/salient/woocommerce/cart/mini-cart.php”

Kind regards

hello again, is there a way to import portfolios via csv? Just title, description and any possible categories+attributes I created…. Do you have a sample csv file?

yes I’m aware about how to import, I just wondered if Salient had a sample csv to map the portfolio in particular, because I don’t see any possibility to assign authors to the single portfolio items (in my case, I use the portfolio as “books” and I need to add writers/publishers to each one, so that users can click on a writer and see all its books… but I don’t think that using “tags” is the right path).
I’d appreciate your tips about this. thanks

adding up, I think there’s a bug: I enabled WpBakery for Global Sections and it didn’t show the backend editor anymore (just text). So I went to enable it for all custom types, and though the backend is working I still get some pages not showing up in frontend (for instance single portfolio).

Hey Eluvial,

1. The two taxonomies that Salient registers for the Portfolio post type are “project-attributes” and “project-type”. You could utilize either of those to associate your writers with each project.

However, if you want to automatically have a link to those from the single portfolio template, you would need to add that programmatically from a child theme by utilizing one of the available action hooks in the template, such as “salient_portfolio_hook_single_before_content” see “html/wp-content/plugins/salient-portfolio/includes/frontend/single-portfolio.php”

2. Since there’s no known issue with pages not displaying on the frontend, we would need to see your setup to assist further. Kindly open a ticket on the support forum in regards

I am using this Demo http://themenectar.com/salient/one-page and I would like to add a phone number and book now button next to header menu like you have it at this demo https://themenectar.com/salient/architect/ how do I go by doing that?

Hey visualpaint,

You can use the Salient menu options on your menu item to add a button style and an icon: https://themenectar.com/docs/salient/header-button-links/

Kind regards

Thank you

You’re welcome :)

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey