38356 comments found.
Hi, Version 8.5.5 is compatible with Woo Commerce 3.4.1?
Hey astutestudio, Salient v8.5.6 is compatible with 3.4.1
Cheers
You guys, I opened a ticket (#1500449) on https://themenectar.ticksy.com/ – I need your quick help with the fonts that are acting out – please get back to me when you can – it’s urgent! Thanks a lot!
Hey Karolya, I just took a look in regards 
Hi Phil,
I use Jetpack and the subscription form, but the location to insert the email address is not visible, it works if you move the mouse, there is a CSS bug. I disabled all plugins and the problem is still present. Do you have a solution ? https://image.ibb.co/iFia3J/form_email_jetpack.jpgThanks!
Hey youyou78,
Can you verify that in the Salient options panel > form styling tab the option for “Overall Form Style” is set to inherit from theme skin?
Cheers
Yes that was it! it’s OK now 
Thank you very mutch! #Best
Hey youyou78,
Glad to hear! 
Cheers
I have 2 questions: 1. Why is it that the sticky header disappears when scrolling down but appears when scrolling up: https://eds.saffiretech.com 2. I want to add one notification row on top of the menu. I know its customization work. However I am a developer and if you just give me a few steps on how I should I go about few changes in header.php of child theme it will just get me started & shall figure out the rest. Thanks in advance
Hey aki4891,
1. You have the option enabled for that in the Salient options panel > header navigation > animation effects tab: “Header Hide Until Needed”
2. This in an option available in the beta (text in the secondary header navigation bar) if you’d like access, please reach out in regards via the contact form on my author page https://themeforest.net/user/themenectar
Cheers
Hi ThemeNectar,
Please visit: http://www.dev.designreborne.com/oceans2020/home-alan#share
As you can see throughout the site I have social media share icons that appear white however when you hover over them the icons disappears and you’re left with a blue icon as if there’s not icon available.
Do you know how to fix this? Many thanks.
Best, Alan
Hey Alan,
add this into the custom css box in your Salient options panel:
html body .twitter-share:hover i, html .twitter-share.hovered i, html body .linkedin-share:hover i, html .linkedin-share.hovered i, html body .google-plus-share:hover i, html .google-plus-share.hovered i, html .pinterest-share:hover i, html .pinterest-share.hovered i,
html .facebook-share:hover i, html .facebook-share.hovered i {
font-family: FontAwesome!important;
}
Cheers
Hi,
I am using the testimonial slider, minimal layout. How can I remove or hide the ” symbols? Also, i’d like to give it less padding on the left and right and especially on mobile.
Thank you
Hey toolbox101,
1. You’d need to edit the nectar/nectar-vc-addons/vc_templates/testimonial.php file
2. add this into the custom css box in your Salient options panel:
body.mobile .testimonial_slider[data-style="minimal"] blockquote { padding: 0; }
Cheers
Thank you, would you please tell me which line of code I need to edit in the testimonal.php file? and if i delete the ” do I just put space in it? Or it will hit html error for having it empty?
Hey toolbox101, change this section:
$open_quote = ($GLOBALS['nectar-testimonial-slider-style'] == 'minimal' || $GLOBALS['nectar-testimonial-slider-style'] == 'multiple_visible_minimal') ? '“' : null; $close_quote = ($GLOBALS['nectar-testimonial-slider-style'] == 'minimal' || $GLOBALS['nectar-testimonial-slider-style'] == 'multiple_visible_minimal') ? '”' : null;
to this:
$open_quote = ''; $close_quote = '';
Thanks, i’ll try this and if any issues i’ll let you know. One request please, can the List Items in visual composer support links please? I think this would be very useful. 
Sound good toolbox101 – are you referring to the “horizontal list item” element or something different?
Cheers
I am talking about the Icon List in VC, this guy https://imgur.com/a/AWkCdMV
Hey toolbox101, not as of now but I’ve noted the idea for the wishlist 
Cheers
That did not work for me. What I did was created this same directory in the child theme. nectar/nectar-vc-addons/vc_templates/testimonial.php https://imgur.com/a/I4wkX1f
and put this code:
<?php
extract(shortcode_atts(array("name" => '',"subtitle" => '', "quote" => '', 'image' => '', 'star_rating' => 'none'), $atts));
$has_bg = null;
$bg_markup = null;
if(!empty($image)){
$image_src = wp_get_attachment_image_src($image, 'medium');
$image = $image_src[0];
$has_bg = 'has-bg';
$bg_markup = 'style="background-image: url('.$image.');"';
}
$open_quote = '';
$close_quote = '';
if($GLOBALS['nectar-testimonial-slider-style'] != 'minimal') {
$image_icon_markup = '<div class="image-icon '.$has_bg.'">“</div>';
} else {
$image_icon_markup = ($GLOBALS['nectar-testimonial-slider-style'] == 'minimal' && $has_bg == 'has-bg') ? '<div class="image-icon '.$has_bg.'">“</div>' : null;
}
$rating_markup = null;
if($star_rating != 'none') {
$rating_markup = '<span class="star-rating-wrap"> <span class="star-rating"><span style="width: '.$star_rating.';" class="filled" /></span></span>';
}
if($GLOBALS['nectar-testimonial-slider-style'] != 'multiple_visible_minimal') {
echo '<blockquote> '.$image_icon_markup.' <p>'.$open_quote.$quote.$close_quote. $rating_markup .' <span class="bottom-arrow" /></p>'. '<span>'.$name.'</span><span class="title">'.$subtitle.'</span></blockquote>';
} else {
echo '<blockquote> <div class="inner">'.$image_icon_markup.'<span class="wrap"><span>'.$name.'</span><span class="title">'.$subtitle.'</span></span> <p>'.$open_quote.$quote.$close_quote.' </p>'.$rating_markup.'</div></blockquote>';
}
?>
Did I do something wrong?
Hey toolbox101, as of now this can’t be overridden in a child theme – the parent theme file would have to be altered. We’ve noted to make this possible in upcoming releases
Yes please, it would be great because my website is not english and the ” character in the language I am writing is something else.
I think many none-english bloggers will benefit from this. Also, it would be great if you could add a translation section in the settings so we can change button text, next post, and other labels. I have tried a few plugins but none of them are worked, keep getting errors. Thank you for the great work you do.
Hey toolbox101, thanks for the further requests 
Cheers
Seeing the following error on latest available Salient with latest WordPress:
Cannot redeclare salient_shop_header() (previously declared in $path/wp-content/themes/salient/functions.php:5506
This is when visiting www.example.com/wp-admin/edit.php?post_type=product
Hey AMcDermott, there’s only one instance of the “salient_shop_header” function inside of Salient – are you possibly using a child theme with a duplicate of it? If not, could you please open a ticket in regards with your admin credentials so we can take a further look into this? https://themenectar.ticksy.com
Cheers
This is still occurring, so I’ve purchased a support renewal and posted ticket #1731122 in your system.
Hi,
Please see the screenshot- http://prntscr.com/jpqxfg
I’m using Salient for my client website. I’ve clicked on the product, it’s added to Cart. But not showing the product amount in Cart area.
Why it’s happening? Have any suggestion?
BR, Mofi
Hey ThemePackNet,
Please ensure that you’re using the material theme skin in the Salient options panel > general settings tab for that functionality on mobile
Cheers
Hi,
Thanks for your reply. But here have no that type option in Salient Theme Options, what I’ve asked for- http://prntscr.com/jq5x51
My question was:- in the desktop version here showing product amount http://prntscr.com/jq5xjq But when I’m in mobile version, nothing showing there- http://prntscr.com/jq5xs2 How to I can fix it?
Can you give deep attention, please?
BR, Mofizul
Hey Mofizul,
The theme skin option is located in the main (styling) tab of the general settings https://imgur.com/a/Ds8WTlQ
Cheers
Hey guys, amazing theme! I’ve been reading comments about modals from 2 years here and still nothing. Since you don’t offer it “yet”, could you please recommend a clean robust CSS triggered plugin that I could purchase?
Thanks, Nima
Hey nimagnejad, we’re going to be looking into such a solution in the next feature update 
That’s great! Cant’t wait 
Cheers nimagnejad 
Do you by any chance have a date for the next update?
Hey nimagnejad, hoping within the next 2 weeks 
Hey there! I’m just following up on this. any update on the the modals? I would hate to switch to a different theme that offers modals. 
Hey nimagnejad, feel free to reach out in regards via the contact form for a copy of the beta
https://themeforest.net/user/themenectar
That’s epic!!! will do
Just sent over a copy nimagnejad 
Nice update! I can’t see to find the popup modal in the list of new features or the demo. Was this added? Thanks
Thanks nimagnejad 
We added support for the plugin “Popup Maker” – the content for that modal is included with the new eCommerce creative demo, which is available via the theme options panel > demo importer
Fantastic! thank you so much for adding the modal support.
You’re welcome nimagnejad 
Hi, I know that when using mobile devices, the video background of a row will fall back to an image. But however, the loading speed on mobile devices is super slow even though it is only showing an image. Does it still download the video file when viewing on mobile?
Hey qpskcn1,
Could you kindly share your URL in regards so I can take a look at what’s going on? Also, the ability to autoplay on mobile devices is coming in the next update 
Cheers
Sure, lengistudios.com
Hey qpskcn1, the only thing it has to wait for is the javascript check to see if it’s being viewed on a mobile device – the image is not waiting for the video to load in order to display.
If you’d like to speed it up for now, add this into the custom css box in your Salient options panel:
@media only screen and (max-width: 690px) {
body .mobile-video-image { display: block; }
}
Hi, I just updated to the new Salient and Woo 3.4.1 – at checkout the Terms and Conditions Box disappears prohibiting customers from checkout. You can see the box when the Credit Card box loads, but then doesn’t load. Can you help? I’ve toggled the Fancy Box Form but didn’t seem to help. – JC
Hey jclaflin, I haven’t been able to replicate this on my end – could you please open a ticket in regards with your admin credentials so we can take a further look into this? https://themenectar.ticksy.com
Also kindly let me know the ticket ID here once you’ve done so
Cheers
Help, i am trying to achieve something without any luck. I am trying to use the transparent feature on the homepage along with the secondary header. But when transparency is enabled, the secondary header does not show.
I want to setup in a way that the homepage has the transparent feature and the secondart header shows. Also want the secondary header to show only on the homepage
What i end up with: https://prnt.sc/jpkr7d What i want: https://prnt.sc/jpku82Help
PLEASE IGNORE THE ABOVE. iT WORKED. NOW only question is how can i make the secondary header show on the homepage only
Hey TruBrotha, glad to hear you’ve sorted your initial concern – as for the secondary header, could you kindly share your home URL so I can provide the needed snippet?
Thanks
Hi, I’ve installed EventOn on my site and when I click on an event the page scroll to top. Their support says that I should ask to you because their plugin works well with other themes (and I have seen that switching to default wordpress theme). Can you help me to solve the issue?
I know that the support expired a long ago, but you are awesome, so I need your help http://www.test.thenewplace.it/palermocapitale/ Please!
Hey thenewplace,
I’m currently not seeing that when clicking on an event – can you let me know if there’s a specific browser that shows this behavior?
Cheers
Thank you, people at EventOn gave me help, finally. They gave me this css code that fixed the issue. I paste it here, maybe can help other people:
html.evo_overflow { overflow-x: visible !important; overflow-y: visible !important; } body[data-slide-out-widget-area-style=”slide-out-from-right”].evo_overflow .ocm-effect-wrap {overflow: initial !important;}
Hey thenewplace, thanks for sharing
Hi, Its a nice theme. I am looking forward to use it for my website. But have a pre-sales question: Is there any way to use the slider as this one: http://www.prabuddhadasgupta.com/#
1. The slider here scrolls with Arrrows Keys in windows and Mac as well Touch.
2. The content I want to stay fixed ( like you have in one of your demos of nectar-carousel-flickity).
3. How to get nevigation arrows (left right arrows) on screen for sliders in the same
can you help me with it.
Thanks alokupadhayay,
Unfortunately 1 & 3 would require custom development as of now
Cheers
Hi, Thanks for the reply.
I have been testing your awesome theme and its going well. Can you help me getting Prev Next Arrows in Flickity Carousal or Owl Carousal. (Arrow similar to Back to Top arrow)
OR
Similar to this. https://flickity.metafizzy.co/style.html#previous-next-buttonsbut smaller.
I don’t want dots. Want to replace them with ‘Prev Next Arrows’ in place of dots or have it similar to the link above.
I tried using the CSS below, but it didn’t work well.
/* dots / .nectar-flickity.nectar-carousel .flickity-page-dots { display: none; } / no circle / .nectar-flickity.nectar-carousel .flickity-button { background: transparent; } / big previous & next buttons / .nectar-flickity.nectar-carousel .flickity-prev-next-button { width: 100px; height: 100px; } / icon color */ .nectar-flickity.nectar-carousel .flickity-button-icon { fill: white; }
.flickity-enabled.is-draggable .flickity-viewport { cursor: move; }
The current development is in local host, so couldn’t share link.
Hey alokupadhayay,
that option would need to be enabled in the js/init.js file of the theme
Can you please be kind enough to help me here. I want Prev. next buttons in place of dots. in sliders OR the way Side arrows are here : https://flickity.metafizzy.co/style.html#previous-next-buttons
I am finding this : am I at right place.
var $flickitySliders = [];
$('.nectar-flickity:not(.masonry)').each(function(i){
$(this).addClass('instance-'+i);
var $freeScrollBool = ($(this).is('[data-free-scroll]') && $(this).attr('data-free-scroll') == 'true') ? true : false;
var $groupCellsBool = true;
var $flickContainBool = true;
var $flcikAttr = 0.025;
var $flickCellAlign = 'center';
if( $(this).is('[data-format="fixed_text_content_fullwidth"]') ) {
$flickCellAlign = 'left';
$groupCellsBool = false;
$flickContainBool = false;
$flcikAttr = 0.02;
}
if($freeScrollBool == true) {
$groupCellsBool = false;
}
if($(this).attr('data-controls').length > 0 && $(this).attr('data-controls') == 'next_prev_arrows') {
var $paginationBool = false;
var $nextPrevArrowBool = true;
} else {
var $paginationBool = true;
var $nextPrevArrowBool = false;
}
if($(this).attr('data-controls').length > 0 && $(this).attr('data-controls') == 'none') {
var $paginationBool = false;
var $nextPrevArrowBool = false;
}
var $flickity_autoplay = false;
var $selectedAttraction = 0.025;
if($(this).is('[data-autoplay]') && $(this).attr('data-autoplay') == 'true') {
$flickity_autoplay = true;
$selectedAttraction = 0.019;
if($(this).is('[data-autoplay-dur]') && $(this).attr('data-autoplay-dur').length > 0) {
if(parseInt($(this).attr('data-autoplay-dur')) > 100 && parseInt($(this).attr('data-autoplay-dur')) < 30000) {
$flickity_autoplay = parseInt($(this).attr('data-autoplay-dur'));
}
}
}
And Another one is this. $flickitySliders[i].on( ‘dragStart’, function() { clearTimeout($removeHiddenTimeout); $that.addClass(‘is-dragging’); $that.find(’.flickity-prev-next-button’).addClass(‘hidden’); }); $flickitySliders[i].on( ‘dragEnd’, function() { $that.removeClass(‘is-dragging’); $removeHiddenTimeout = setTimeout(function(){ $that.find(’.flickity-prev-next-button’).removeClass(‘hidden’); },600);
});
$('.flickity-prev-next-button').on( 'click', function() {
clearTimeout($removeHiddenTimeout);
$(this).parents('.nectar-flickity').find('.flickity-prev-next-button').addClass('hidden');
$removeHiddenTimeout = setTimeout(function(){
$that.find('.flickity-prev-next-button').removeClass('hidden');
},600);
});
Hay please help me here. If couldn’t get this fixed, I will have no option but to change the theme. The Prev Next buttons are the must requirements for the website as there are alot of images to be added in the carousal and the dots below look like a mess. OR if I can get the Prev Next buttons below the carousal in center.
Hey alokupadhayay,
Unfortunately this is beyond the scope of what I can provide in theme support – I can point you to the direction as I have but can’t explain the entire process.
Thanks for response. Understood.
Can you please help me in optimizing images for carouFredSel. For flickity i used :
.nectar-flickity:not(.masonry) .flickity-slider .cell img{ max-height: 450px!important; width: auto!important; } .flickity-viewport{ height: 560px!important; } .nectar-flickity:not(.masonry) .flickity-slider .cell{ width: auto!important; }
Can you help me with CSS for caroufredsel and if possible then to have those nevigation arrows at bottom.
Hi, please revert.
Also, can you please add the nevigation arrows in Flickity as on https://flickity.metafizzy.co in next update. That would be much appreciable.
Hey alokupadhayay,
Caroufredsel can’t have auto width columns, they need to be constrained to a certain percentage or px value
Hey sangkwonlim,
.portfolio-items[data-ps="8"] .col .work-info .vert-center p {
position: absolute;
bottom: 0px;
}
.portfolio-items .col h3 {
top: -30px;
}
Cheers
Is there a way to add fontawesome pro 5 to the theme without breaking other existing free font awesome icons that are included in the theme?
Hi! I need to add a button on my top of my main video slider. Is this a feature somewhere that I am missing or is this something I will have to get done custom? Thanks!
Hey sarahalger,
If you’re referring to the Nectar Slider – you have the option of adding a couple buttons underneath the caption content. Are you trying to position one of those at the very top of the slider? Can you please also share your URL so I can see the current setup?
Thanks
Hi, is it possible to have Full Screen row AND Box Rolling header in page menu?
Hey A-ListSuites, unfortunately not as of now – but i’ve noted the idea for the wishlist
Cheers
When using the Image Gallery, the Lightbox that pops up is vertically aligned to the center of the whole page, not the screen. So you have to scroll down significantly on a tall page to see the Lightbox. http://www.theorganicfest.com/gallery/
Hey robertexs,
Please change the lightbox script to the most current option in the Salient options panel > general settings > functionality tab to “fancyBox3” to avoid that
That worked, thanks!
You’re welcome robertexs 
Hi,
The nectar-slider is not working on Internet Explorer 11. It shows the loading screen, but it does not disappear after images are loaded.
See: http://new.hetwittekasteel.nl/
Using IE 11 V: 11.48.17134.0
Any advice?
Regards, Bjorn
Hi, we have some time pressure on the project, so we decided to go for Revolution slider. Problem still exists though.
Hey Bjorn,
I can’t seem to replicate that on the demo http://themenectar.com/demo/salient-frostwave/ – can you confirm if the same behavbior is happening for you there?
Cheers