Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Cart 168,814 sales
Recently Updated
Well Documented

ThemeNectar supports this item

Supported

38356 comments found.

In single portolio item the button “back to all items” is refreshing the page instead of going to all items.

Is there any way to fix it?

Hey ex3qtor, you can assign your main portfolio URL in the Salient options panel > portfolio tab

Looking for a new theme and can’t across this one. Obviously it’s the highest selling theme here by far, but still not completely sold because a lot of the demo samples look mediocre. I think if you guys got better sample demos up you’d sell twice as many.

Hey Digitalsoju, not sure if you’re directing this comment in the right place since this isn’t the highest selling theme here by far :p but regardless, more demos are in the works :)

Hi!

We have a quick question about the Nectar Slider on our homepage: http://picavi-wp.aix-cloud.de/

We used the following CSS to increase the size of the subheading: .laeuft .content p.transparent-bg span { font-size:35px !important; }

That works (laeuft is a class we gave the slider) and returns the following result: http://pasteboard.co/7nFOWUjaz.png

However, this also influences our mobile sizing which leads to a total screwup: http://pasteboard.co/7nGaVtJ8e.png

We would like to fix it so the “Kommissionieren mit Datenbrille” doesn’t get so small and the “Läuft. Echt. Jetzt.” is smaller than now and doesn’t interfere with the line above. We tried using two nectar slider (one disabled on desktop, one on mobile) but that doesn’t work, so it would be great if you could let us know how to target that!

Thank you very much in advance!

-Jan

Hey Jan :)

You can keep your snippet in a media query to have it not effect mobile

@media only screen and (min-width:1000px) {
.laeuft .content p.transparent-bg span { font-size:35px !important; } 
}

We have an issue unresolved for more than a month now, and we have been waiting over 2 weeks for a new Salient version to correct this problem which we were told by an agent would arrive ‘in a day’. We’ve posted 3 responses urgently since then trying to get in touch but have unfortunately heard nothing; it’s been 10 days now. Please take a look at our private ticket number #787425. This is the second time we’ve had to resort to using the public comments to get the attention of your staff for the support we pay you for — please, please help us! Thank you in advance,

Hey, just took another look :)

Thanks for getting back to us and solving the issue!!

Of course :)

I’m having a hard time understanding how to get 100% of a 1900px wide image go edge to edge, and to be able to put type over it. I’ve tried every single thing I think but clearly I’m missing something. Every one I put in there is scaling the image up enormously. I just want width to be 100% of the image at all times (e.g. to scale with browser down, etc).

this is using VC, and putting background images in behind the sections, rows, full width rows, checking every box off and on (full width content etc). Thanks!

Hey,

Could you please share your URL so I can assist further?

Cheers

I sent you a note a few days ago on Ticksy, but have not heard any response. This is now a pretty urgent issue, can you respond? Thank you!

Hey – just responded again in regards :)

How do you update Google Fonts? There are fonts I can find at fonts.google.com that I can’t pull from the options panel.

Thanks!!! Awesome theme!

Hey Ryan! The next update (which is due out in about a week) is updating the list to current :)

Fantastic. Thanks!

Issue with woocommerce products visual composer layout…see here: http://cl.ly/3R2m1t0T0m39 – I’m totally updated with salient latest theme…this is your demo but mine site is doing the same.

thanks but no dice… see here as well https://abigailmentzerdesigns.com/

Sorry, the snippet has a typo – I meant to put:

@media only screen and (max-width: 1500px) and (min-width: 1000px) {
html body .full-width-content ul.products li:nth-child(4n+1), .woocommerce-page .full-width-content ul.products li:nth-child(4n+1) {
    margin-left: 0;
}
}

Thanks…this code will not work because it will cause issue with full screen SHOP page…products shift far left…let me know a fix thanks

Hi,

I would like to change button color to #222, is it possible?

[button color=”extra-color-2” hover_text_color_override=”#fff” image=”default-arrow” size=”medium” url=”#” text=”ADD TO CART”]

Hey Vitaio,

Yes – add the attribute onto the button for “color_override”

e.g. [button color=”extra-color-2” hover_text_color_override=”#fff” image=”default-arrow” size=”medium” url=”#” text=”ADD TO CART” color_override=”#b2b2b2”]

Cheers

Hello,

I wanted to create the cart effect like this, www.chumbak.com. Please can you guide me a little as to what plugin or what changes can make that happen.

Currently, my checkout page is nothing but a redirection to paywithamazon.

So what I wanted to do is, I wanted to remove the cart page as well, and load on the right side like the cart one using ajax, to avoid redirects and increase conversion rate. I would be very very glad if that is possible?

Hey aneeshjajodia,

Unfortunately I don’t have a plugin to recommend in regards for this – i’ve noted your +1 for the idea for a slide out cart, but as of now custom development or a plugin would be needed

Cheers

I have a pagination question. Say I use a one-page layout (with anchors to portfolio section) and I have 24 pieces in my portfolio. If I choose to only display 12 images per page at a time for pagination, how do I get back to page 1 after I click the arrow button?

Also, once I click the arrow to go to the next page, it reloads the entire page and does not take me back to the portfolio section. The only solution I’ve seen is to use the Infinite Scroll option, which makes my page too long.

Please advise. Thank you.

Hey arteest, could you please share your URL in regards so I can take a closer look at the setup?

Thank you for the reply. I’ve since modified my setup with a wirkaround so no worries. However, thank you for the responsiveness.

No worries :)

Cheers

Hi ThemeNectar,

Just a quick issue to report after updating the WordPress, WooCommerce and using the latest theme version.

Changing the quantity of a product on the cart page and clicking Update Basket, the + and – buttons disappear beside each quantity input box.

Could you look into the jquery.iosslider.min.js file and see if you can fix this please? Guessing it’s to do with an ajax success not being fired to display the buttons…

Please post a reply as a quick fix so I can implement it and then later add it to an update.

Thanks.

Hey pr0jectile,

You’ll need to add this into the file

jQuery( document.body ).on( 'updated_cart_totals', function() { 
            if($('.plus').length == 0) 
            $( 'div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)' ).addClass( 'buttons_added' ).append( '<input type="button" value="+" class="plus" />' ).prepend( '<input type="button" value="-" class="minus" />' );
        });        

right after:

jQuery(document).ready(function($){

Cheers

Thanks for the code! Just a quick correction.

jQuery( document.body ).on( 'updated_cart_totals', function() { 

should be

$( document.body ).on( 'updated_cart_totals', function() { 

Otherwise you get $ is not defined error after clicking Update Basket.

Thanks again!

Hi,

Can you tell me how to change the background color of the mobile slide out widget?

I thought I had done it as when I shrink my browser and test it, it works. But when I try ii on an acual mobile device it doesnt.

www.51ways.co.uk/pc

Thanks

Hey 0754ben84,

You can change the color in your Salient options panel > header navigation tab by changing your Header Color Scheme to “custom”

Cheers

Hi,

Yeah I have done this but on mobile devices the background colour is blue, I need it to be white but it won’t change.

It’s fine when I shrink my browser and view it but on an actual mobile device it stay blue.

I need help :(

Thanks

Hey,

Add this into the custom css box in the Salient options panel:

body #slide-out-widget-area.slide-out-from-right { background-color: #fff!important; }

Cheers

hello nectar,

my word press is not working in safari browser it showing black screen but scroll is working.it is not visible in safari but all browser is working well.

https://www.engineerbabu.com/

Please revert me soon…!!!!

What Should I do?

Hey poonam123k,

I am currently able to view the site on Safari on my end – please let me know which version you’re experiencing this on

Cheers

Hey, do you mind giving me the css for removing navigation from one specific page without removing the logo at the top left? Thanks a ton!

Hey – add this into the custom css box in the Salient options panel:

.container-wrap {
  padding-bottom: 0!important;
}

Worked perfect! Thanks much

You’re very welcome :)

Hi there, in the nectar slider composer, it seems that the css or JS doesn’t load properly. My theme version is 7.0.9, and WordPress 4.5.3.

Can you help me please? Thanks

Hey helloawsm,

Have you verified that no third party plugins are causing this in regards? If so, please open a ticket in regards with your admin credentials so I can take a further look https://themenectar.ticksy.com

Cheers

Hello, thanks for the advice. Problem solved, it was a third party plugin.

Glad to hear you got it sorted :)

Is it possible to put an image in your megamenu? As in image on the right side and links on the left? Also does it support a two column look?

Hey ktallman, as of now these items with both take custom css unfortunately – if you can share your URL I’d be glad to provide an example though :)

Cheers

Can I send it to you in a private message?

Hey, you can – use the contact form on my author page here https://themeforest.net/user/themenectar and let me know once you’ve sent it :)

Hi can you please explain how to import the dummy data once you have imported the demo so that the demo looks like the live version. I tried importing it with the Wordpress Importer under Tools but it didn’t seem to make any difference. Thanks Tim

Hey,

As of Salient 7.0 the option to import demos has been added directly into the Salient options panel in the demo importer tab :) – this will also import the theme options settings which used to be required to be imported separately after the xml

Cheers

Hi there– My contact page (http://pushuk.com/contact) is not displaying google maps, the error below is shown instead:

“Oops! Something went wrong. This page didn’t load Google Maps correctly. See the JavaScript console for technical details.”

It was all working absolutely fine until I transfered my site from “olddomain.com” to “newdomain.com”

Any help would be much appreciated, thanks!

Hey!

The issue only applies to new domains where the maps script hasn’t been prior to June 22 of this year. This article explains it: https://www.latecnosfera.com/2016/06/google-maps-api-error-missing-keymap-error-solved.html

If you’re on a current version of Salient you can add the key into the map.js file in the js folder. The line to mod should be near line 589 of the file - $.getScript(‘https://maps.google.com/maps/api/js?sensor=false&callback=mapAPI_Loaded'); will become $.getScript(‘https://maps.google.com/maps/api/js?sensor=false&key=APIKEYHERE&callback=mapAPI_Loaded'); The next update will add an input for users to add the key in the admin panel

Cheers

yeah it works, thank you! The line to mod is 382

Glad to hear :)

Hi guys, I am playing about with the theme and have come upon a challenge. I have set my homepage up using the portfolio option – I have used a fixed quote to try and balance out the images (each are set to the same height and width), but the quote seems to be a little smaller – is there anything you can advise to help it be more symmetrical? The site is: www.leadershits.com

Hey :)

Could you try running this plugin https://wordpress.org/plugins/regenerate-thumbnails/

Cheers

awesome support as ever – thanks!

Hello,

Is there a way to increase the image size for the testimonial slider?

Thanks!

Hey,

Add this into the custom css box in the Salient options panel:

.testimonial_slider[data-style="multiple_visible"] .image-icon {
  width: 125px!important;
  height: 125px!important;
}
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