Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Cart 170,269 sales
Recently Updated
Well Documented

ThemeNectar supports this item

Supported

38442 comments found.

Love the theme. Great job! :) Where can I find a new transition option for Nectar Slider?

Hey griddesign!

It’s located inside of the nectar slider options inside of the actual element in Visual Composer :)

Hi TN,

The solution described here (http://themenectar.ticksy.com/ticket/178318/search/) does not work for me. Is there a way I can get Salient working?

Hey hookieoalo,

did this happen just after an update or has it been like that since day one of using the theme?

It’s on a fresh install

Then it would best to reach out to your hosting company in regards and let them know the slashes are getting stripped from the assets loading – it’s most likely a security setting your server has on.

Hi, is there any chance I can create a multilayer parallax that is fullscreen?

Hey TheWhiteHoward, you can use % values for the top and bottom padding in the row, thus making it scale very nicely with the users screen :)

My feed doesn’t work. Sometimes it open, like in firefox, sometimes i got a strange error (Chrome). I’ve wrote you an Email Weeks Ago. Pls Help…

check it out for yourself. http://christiansimmerl.de/2013/feed

Strange… i get an error “This XML file does not appear to have any style information associated with it.”

Ahhh. Found that on google. “This is normal, as Chrome was not built to interpret feeds. Instead, subscribe to the feed in a real feed reader, or install the RSS Subscription Extension.” Didn’t know that Chrome can’t read it without plugins. THANK YOU!

Hey again – yeah unfortunately Chrome doesn’t come with a built in rss reader like other browsers.

Cheers :)

Hi there Is there any easy way to add a phone number to the header? Even with an icon but not critical

thanks Mary-Anne

Hey Mary-Anne,

You could add it as a custom menu item in the secondary header or main header – but depending on where you wanted it positioned or how you wanted it to look it might require modding the header.php file itself.

Cheers

Could you suggest some code and placement for editing header.php? As I would rather not use secondary header as I have that login box at the top and it starts to become very deep.

Right inside of the header-outer div you could add something like:

<span id="phone-number">xxx-xxx-xxxx</span>
and then in the custom css box in your Salient options panel
#phone-number {
  position: absolute;
  right: 25px;
  top: 25px;
}

Hi,

Just a few quick questions.

I am using the yoast Seo plugin and it seems that it cannot detect any of the images on the page. On all of my pages where I use the ‘single image’ of visual composer, yoast SEO states that there are no images on the page. Is this a salient issue? Have you heard of this before?

Also, how can I SEO optimize the nectar sliders? This has all my H1 text. Or is it indexed as part of the entire page?

Thankyou

Hey again!

1. Wrap your columns in a row like this:
<div class="row">
   <div class="span_4 col" />
   <div class="span_4 col" />
   <div class="span_4 col col_last" />
</div>

2. Add this into the css box on the page:

.nectar-sharing span, .nectar-sharing-alt span {
    display: none !important;
}

Hi,

1. That is what I have now (what you told me to put earlier).

Here is how my form is structured:

<div class="col span_4">
<p>Your Name <span>*</span><br />
    [text* your-name] </p>
</div>
<div class="col span_4">
<p>Your Email <span>*</span><br />
    [email* your-email] </p>
</div>
<div class="col span_4 col_last">
<p>Subject<br />
    [text your-subject] </p>
</div>
<p>Your Message<br />
    [textarea your-message] </p>

<p>[submit "Send"]</p>

Please review my form once again and you will the that the subject heading and input box is far too close to the above boxes (the ascend demo has a good space between them).

Thank you.

Hey – here’s the updated structure with the wrapping row:

<div class="row">
  <div class="col span_4">
   <p>Your Name <span>*</span><br />
       [text* your-name] </p>
   </div>
   <div class="col span_4">
   <p>Your Email <span>*</span><br />
       [email* your-email] </p>
   </div>
   <div class="col span_4 col_last">
   <p>Subject<br />
       [text your-subject] </p>
   </div>
</div>

<p>Your Message<br />
    [textarea your-message] </p>

<p>[submit "Send"]</p>

I would like to display several see-through buttons one on top of the other in a column layout. Currently, this results in buttons of varying widths depending on the contained text. is it possible to set the buttons to a specific width or to take up 100% of the column width?

Hey jkmutisya,

this would be possible with css – if you can share your page URL I could assist with the css :)

Cheers

Wonderful,

Here is the link http://www.jamesmutisya.com/contact/

The buttons I am trying to work on are the ones in column 3 of the footer. I would like for each button to take up 100% of the width.

Thank you.

Hey again!

Add this into the custom css box located in your Salient Options panel:

#footer-outer .nectar-button.see-through {
    width: 100%!important;
}

(because you’re using the buttons with icon on hover it might not look completely right though due to the excess space)

Hello, like the theme, but having a horrible time getting my nectar slider to display correctly on Internet Explorer. Any way you could take a look and give me advice on how to fix it?

sv.keyusa.com/keydemo3

Thanks in advance!

Hey mrfekone! You just need to update your version of Salient as this issue was fixed a few releases ago :)

Cheers

I’m trying to edit the style of the “Update Cart” and “Proceed to Checkout” button on my cart page, but nothing is working. I tried the following code in both my style.css and custom css section. What am I missing?

/* Proceed to Checkout Button */
.ascend .woocommerce .actions .button.wc-forward {
  border-radius: 2px 2px 2px 2px;
  height: 40px!important;
  font-size: 24px!important;
}

website: modulemaster.com/rebuilds

Thanks so much! Will

Hey again! This selector should work :)

.woocommerce .cart .button.checkout-button {
  background-color: red!important;
}

Thanks! That worked.

You’re welcome :)

Great theme. A couple questions I’m hoping you can help with:

1. Is there a way to make it so the “Full Width Content” rows don’t expand beyond a certain width? These rows look fine on my 1920px wide monitor but I’m worried that they will look very stretched out on ultra-wide monitors like 2560px or 3840px.

2. I would like to put two different portfolio elements (showing different categories) in two different tabs. When I do this, however, the portfolio element in the unselected tab does not display. I’m assuming this is because it doesn’t get a chance to render since it is hidden. Do you have a solution for this?

3. I would like to be able to repeat the social sharing icons at the bottom of blog posts. Is there a simple way to do this by editing the template? I’m comfortable with editing the files and am using a child theme.

Thanks for any help you can offer.

-Damon

Hey Damon,

1. This would take some custom modding in the init.js to set a cap on the max width you’d allow – unfortunately it wouldn’t work quite right if you used css alone.

2. Try to add this line:

$(window).trigger('resize');
into this function in the init.js file located in the js folder:
$('body').on('click','.tabbed > ul li a',function(){

(add the line right before the line return false; )

3. If you activate the fullscreen header the social icons will move to the bottom of the post by default: http://themenectar.com/demo/salient-ascend/the-field/ however if you wanted to keep your current header, it would require modding the single.php file.

Cheers

Hola!

Small problem with the image gallery.

When I click an image to enlarge the lightbox pops up, but I often have to scroll down to see the image. Is there a way to make sure it shows without having to scroll down?

http://www.cameronleahy.com/renders/

Thanks!

I have not, but I also only have the suggested plugins for the theme installed

I updated everything and it seems to have fixed itself. Thanks!

That’s good to hear :)

Cheers

EDIT: Just submitted a ticket, plz feel free to ignore the comment and answer there if that’s what you prefer.

Hi there, still loving the theme. I’m really happy you’ve kept it relevant with frequent updates, and I appreciate your level of support. Hoping you can help me out…

I’ve been utilizing the Essential Grid plugin, but there is a styling conflict with the theme somewhere that I can’t find. When a grid is loaded (for example on the homepage: http://www.shopcreo.com/) the right side of the grid is cut off. It becomes much worse when viewing it on mobile.

I’ve been going through it at length with the developer of Essential Grid, but I need your help since the conflict seems to be with Salient. I have already tried deactivating all plugins and toggled every theme option in the panel. The only time the grid will display correctly is when I switch back to the 2014 theme. Can you please take a look and help me out? If you need a temp. admin login let me know I can email it over. Thanks!

http://www.shopcreo.com/

Hey adamgentry,

Try adding this into the custom css box located in your Salient Options panel :)

.mainul {
    margin-left: 0!important;
}

Cheers

I was hoping to find the string of code within the php that posts the title at the top of the page, and delete the code that posts the text “Project Attributes”, but leave the text “APPLY & INTERACT”. Is this possible?

Hey PerryDS,

can you share your page URL just so i’m clear on what you’re referring to?

Cheers

Hey Themenectar!

Your theme is awesome, it’s been helping so many people and your support is outstanding, I just have one very important pre-purchase question.

I’ve looked through every demo and hundreds of comments here and it seems that you can’t do two layers of filtering for portfolios. I’ve also looked for plugins to make this work with your horizontal layout and I can’t find anything. What custom javascript would be necessary for this to work? I’m posting this here because it looks like it could help a lot of people.

I’m looking to make the menu work like this

-Filter A —Filter B -- Filter C -- Filter D (as it does now) --\Filter 1 --- Filter 2 -- Filter 3 (all under Filter A) --—\Filter 4 --—Filter 5 -—- Filter 6 (all under Filter B and filter 1,2,3 hide when filter B is clicked)

I hope that makes sense, two layer filtering seems to be impossible for some reason.

Cheers :)

Thanks drewdyer!

The horizontal filters will only show the top level of categories by default (however the dropdown style will show everything). For now, css could be used to show the child categories in the horizontal display too, but it would look perfect without some custom modding

Cheers

How do i remove the search icon and separator in the menu?

Hey brandonselfors,

Please see this in regards: http://themenectar.ticksy.com/ticket/52594/search/

Cheers :)

Hey guys! Just wanted to ask a quick question: wanted to know if it’s possible to have the same transparent header effect with a top level Nectar slider with Portfolio pages, like regular pages?

I understand that it could get tricky because in the Portfolio pages you have the added title, go back link, and navigation carrots, but at least if we’d be able to put a background video for the header in a portfolio page, that would be awesome.

Thanks!

Hey djoliverm!

You can have a transparent effect active for your projects, but only if you supply a header BG color or images currently such as http://themenectar.com/demo/salient-frostwave/portfolio/flippin-the-bird/ – the option to had a video trigger it up top or slider is already on the wish list :)

Cheers

Is it possible to create a blank page with only the content from the Visual Composer?

For example , am I able to create a capture page using this theme? A capture page being a simple blank page with a few lines of text and an email / phone input box to take in information? I would want the page to be free of any header or footers…

Hey EntrepreneurT,

you can create a blank page by entering this into the css box located in the visual composer view on any page you desire

#header-outer, #header-space, #footer-outer {
  display: none!important;
}

Cheers

HI there! A quick question: How can I display my blog posts the same way that the photo portfolio is setup on the demo page: http://themenectar.com/demo/salient-frostwave/

Hey welovedoka,

since that’s not a blog style it would require some custom development as of now but additional blog styles are already planned on the wishlist :)

Cheers

Thank you for your reply! I would really love to see more styles for displaying recent blog posts on my website. I love what you did for portfolio items, but I’m not a web-developer or artist and really have nothing to display except for my blog posts. I think many of your customers would appreciate that. I really love what you did in your latest demo for displaying single blog posts (it kinda has Medium vibe to it which is great!) You guys are incredibly talented, keep up the good work!

Hey again, thanks for your kind words!

Indeed, additional ways to showcase blog posts will be coming :)

Hi. I have updated and now my header text doesnt show in portfolio, my guess is cos i have quite a few options in the portfolio. I see you only add height in header if you use an image. I just want text to show, any idea? Thanks

http://visual360media.com/portfolio/

Oops, no, still no good… weird background colour..wont go away!

Sorted it…

Hey webworld360! Glad to hear you’ve sorted it :)

Great theme!! We’re using the Ajax search. When you start typing a product (ie. “TV MOUNT”) it dynamically shows a list of results. Is there any way to display at the bottom of the list “View more results” which goes to a search results page? http://dlc.bizcravedev.com/

Hey kylesalonga!

You’d need to modify the nectar/asstes/functions/ajax-search/wpss-search-sugest.js file :)

Cheers

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