38361 comments found.
Hi, I’m trying to link tab pannels using links on the same page and I have stumbled upon this script:
<script> jQuery(function($) { $(‘a.nectar-button[href*=”#tab-”]’).click(function() { var tab = $(this).attr(‘href’).replace(”#tab-”, ””); $(’.ui-tabs-nav li:eq(’ + tab + ‘) a’).trigger(“click”); }); }); </script>
it works just as expected (I just have to change the URL link in the button option to #tab-0 etc.) and it swithces to the corresponding tab. My issue is, I would like an images to be the link instead of the button element. When following the same path, change the image’s URL link to #tab-0 it doesn’t work. I gather its because it is specified in the script a.nectar-button. I figured changing this to image would solve the problem, but i simply can’t find the same kind of pointer for images.
Can you help?
Hey PursuitMarketing1,
You could change the selector portion of that from:
$('a.nectar-button[href*="#tab-"]')
to be:
$('a[href*="#tab-"]')
Cheers
Hey ThemeNectar,
Thanks a lot for a quick response.
I have tried your solution, but unfortunately it didn’t work and made the buttons stop working as well 
Do you have any idea why?
Best regards,
All good, there was a typo on my side 
Thanks a lot!
You’re welcome PursuitMarketing1 
How does one make the posts title centred?
Hey tim_coates, in the Salient options panel > blog tab, select “Variable Height Minimal” for the “Blog Header Type” option.
Cheers
I think you’ve misunderstood. Look here: https://www.bliink.tv/barclaycard-great-british-music-showdown-wins-platinum/
The blog title “Barclaycard Great British Music Showdown wins Platinum” is not centred and it’s driving me crazy.
Hey tim_coates, the blog page header layout I mentioned above will centered the text, the on you currently have selected defaults to left alignmnet. If you do not wish to change the header layour, you can add this into the custom css box located in the Salient options panel > general settings > css/script related tab:
.single.single-post .section-title h1 {
max-width: none;
text-align: center;
}
Cheers
Hey MarcGarner,
@media only screen and (min-width: 1000px) {
.single-product .product[data-gallery-style="ios_slider"] > .single-product-main-image {
width: 35%;
}
.single-product .product[data-gallery-style="ios_slider"][data-tab-pos="fullwidth"] > .summary.entry-summary {
width: 65%;
}
}
Cheers
Hi there, I’ve just updated to v10.0.4 via ftp. The site is accessible except for all Salient menu options when logged in as admin, e.g. General Settings, Accent Colours, Boxed Layout etc. Has anyone come across this before? Cache cleared and checked in all browsers, the same result occurs; white screen upon accessing any Salient options within WP admin.
I did the usual deactivate all plugins and this cleared the issue and activated them one by one but I couldn’t identify any culprit. I’ll check error logs.
Hey jasongeorge,
What is the error you’re receiving when attempting to access the options panel? Have you also tried to reupload the new theme to verify that all files transferred correctly?
Cheers
Hi ThemeNectar, issue resolved with plugin deactivation as above. Thank you.
Glad to hear jasongeorge 
Prettyphoto doesn’t work. Now i am using fancyBox3. ¿how can i open inline content litghbox with menu link?
thank you.
Hey jagu51,
prettyPhoto has not been included with Salient for a long time – the two options are Magnific or fancyBox3, what version are you using? Also, Salient doesn’t offer a custom content modal element, for that you would need to use a plugin like https://wordpress.org/plugins/popup-maker/
Cheers
Hi Nectar, is Salient compatible with Wordpress 5.2?
Hey hingedigital,
Yes, there’s now known compatibility issues.
Cheers
HI,
How come my copyright year does not update automatically?
I do not have Disable Automatic Copyright turned on and some pages show 2018 and some 2017.
Here are my settings. https://imgur.com/a/LyBzoW2
Thanks
Hey toolbox101, are you using v10.0.1 or higher? The issue you’re describing should have been sorted as of that version. If you already are, please share your URL in regards so I can take a look.
Thanks in advance
I’m a customer of yours. Is it possible to use your WP Bakery Section Templates on another template that also uses WP Bakery? I’m specifically looking for a Google Maps block. Thanks!
Hey hypermesh,
Unfortunately not as of now, the element display logic is contained within the Salient theme so it wouldn’t process when switching to another theme.
2 video questions.
1. Using the video player, is there code that can go somewhere to remove the youtube title bar for example?
2. If using the video lightbox. Is there a way that once you click, the video will automatically play within the lightbox so that a user doesn’t have to click play twice — once to open the lightbox and again to play?
Hey A_K,
1. When you have “fancyBox3” selected as your theme lightbox in the Salient options panel > general settings > functionality tab, you can indeed use URLs like this https://www.youtube.com/watch?v=_sI_Ps7JSEk&autoplay=1&rel=0&controls=0&showinfo=0 in the video lightbox page builder element.
2. Chrome stopped allowing autoplaying of videos a little while ago – the only way it is permitted is when the video is set to be muted: https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Cheers
Ok thanks. Sorry just to clarify as doing the first option didn’t seem to change anything on my end.
The top part is my question to #1 and the bottom to #2.
Thanks again!
Hey A_K,
1. If you use a text block, in the text tab you can inert an embed code with any desired extra parameters available from youtube: https://ibb.co/b3kjXbG
2. Most current browsers will not allow autoplaying of videos that contain sound, unfortunately there’s no way to force that – there’s a list of browsers which prevent it here under the “Autoplay Restrictions” section: https://help.vimeo.com/hc/en-us/articles/115004485728-Autoplaying-and-looping-embedded-videos
Cheers
Awesome, this is super helpful. Thank you.
You’re welcome A_K 
Thank you!
Hey svtmuscle 
add this into the custom css box located in the Salient options panel > general settings > css/script related tab:
#footer-outer[data-cols="1"] #copyright .col.span_7 {
width: auto;
float: right;
}
#footer-outer[data-cols="1"] #copyright .col.span_5 {
width: auto;
float: left;
}
How to disable Theme integrated OpenSans fonts on front end? So I use all fonts from Google and want to get rid of fonts what load each time, but they are actually not used anywhere in website. /OpenSans-Regular-webfont.woff
What I discovered is that your LOGO font (although I choose to use logo instead of text) always loads its own font, maybe some other hidden element somewhere else as well, what is so stupid in performance wise.
Would love to fix it! Maybe php snippet for that, couldnt figure it out myself. But I hope in new version is fixed.
Also still waiting my BETA version 
Hey PriitCool, in the current beta that font is no longer added via the style.css file and instead enqueued via separate style which you can
dequeue via a child theme functions.php – the style to dequeue will be named “nectar_default_font_open_sans”. Also, you will get your copy very shortly now 
Hi there, I cannot find the Salient Visual composer element “client carousel” http://themenectar.com/demo/salient-promo/clients/ Where can I find this? Thank you.
Hey vidal, it should be named “Clients Display” within the Salient WPBakery page builder. Once you’ve editing that element, there’s an option to “Turn into carousel”. If you do not see that on your end, please open a ticket on our support forum in regards with temporary admin credentials so we can take a closer look into this: https://themenectar.ticksy.com
Thanks in advance
Ok great thank you, I can see it now.
You’re welcome vidal 
Guys how do i change the gutter width? eg. for a regular row with 12 columns, how do i change the spacing between the 12 rows?
Hey bachuramadhikari, altering the grid system in Salient would require custom development since the columns are separated via margin %’s – if you can share your URL in regards I could provide an example.
Thanks in advance
designbarn.ooo
Hey bachuramadhikari,
Just to clarify are you trying to adjust the vertical spacing between rows or the horizontal space between all columns?
Cheers
Hi, I’ve just taken over a client’s site which uses this theme, and I’ve purchased a new copy and installed it. On the Typography settings the Font Family drop down is missing on all options (the other dropdowns are showing), can you help me activate these please?
Hey talbot648,
If you’ve already verified that no third party plugins that you may have active are causing the issue, please open a ticket on our support forum in regards with temporary admin credentials so we can take a closer look into this: https://themenectar.ticksy.com
Thanks in advance
Doh! You got me, I renamed the plugins folder and the options appear, so I’ll work through and identify the rogue plugin. Schoolboy error, sorry!
Glad to hear talbot648, 
Hi, the (blog)category title did not appear at the top of the page. How to fix this?
Refer:
https://www.alfatehjunior.com/category/aktiviti-al-fateh/Hey safwanseth, this issue is caused by having a custom page header defined for the “posts page” – it’s been fixed in the current beta version of Salient. If you’d like a copy of the beta release, please reach out via the contact form on my author page https://themeforest.net/user/themenectar
Thanks in advance
Hi I want to make a landing page with no header in the Theme but tehre is a problem. I put in the code below but there is gtag text showing up. I think it somerthing to do with google but how do I get rid of it?
Is there an easier way to get no navigationbar?
https://cashcow-cph.com/landing-page/Cheers Jan
#header-space {
display:none!important;
}
#header-outer {
display:none!important;
}
#header-secondary-outer {
display:none!important;
}
#footer-outer {
display:none!important;
}
#footer-widgets {
display:none!important;
}
#copyright {
display:none!important;
}
#header-secondary-outer #social li a {
border: none!important;
}
Cant get the code to show? Now i found the way 
Hey JanKorgaard, Salient already offers a page template for this called “No Header & Footer”. It’s available to assign to any page in the page attributes box.
Cheers
If possible add the parameter (maybe with the possibility to set it from visual composer):
autoplayHoverPause: truein the function
owlCarouselInit()called to build a carusel from visual composser with owlCarousell script
Hey Geneticamultimedia, thanks for the request – i’ve noted it on the wishlist 
Hi there, my website https://bit.ly/2H61Vjb looks stunning on mobile except the icons won’t show up. I tried all the different icon packs and stylings but none of them appear. I always see a kind of rectangle with a cross in it instead. I saw the same issue on a OnePlus device and on a Nexus device (both Android and on Chrome). On a pc desktop and mac it looks fine though.
Hey TheWhiteHoward,
When you check out the browser console you can see the following error message:from origin 'http://www.restohartig.be' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Here’s a quick reference on fixing that.
Cheers
Hi there hope you having a wonderful day, I’m having a problem with my gallery thumbnail. it crops top of my images. please find the screenshot of my gallery thumbnail here:
http://i63.tinypic.com/2evx082.pngcan you please kindly let me know how I can fix this problem? thanks
Hey Edphoto,
Could you please share the actual page URL so I can take a look?
Thanks in advance
Thanks Edphoto,
to alter the size of the images you’ll need to change these image sizes in the nectar/helpers/media.php file:
add_image_size( 'wide_photography', 900, 600, true ); add_image_size( 'wide_photography_small', 675, 450, true ); add_image_size( 'regular_photography', 450, 600, true ); add_image_size( 'regular_photography_small', 350, 467, true );
Once you’ve done so, run this plugin to regenerate the images: https://wordpress.org/plugins/regenerate-thumbnails/
Cheers
sorry for basic question but can i ask where can i find nectar/helpers/media.php?
Hey Edphoto, that’s the location of the file relative to the salient theme directory. You can following those folders in your wp-admin > Appearance > Theme Editor tab.
Hi
Is it possible to link to specific tab? I was trying with: www.site.pl/subpage/#tabID but it’s not working.
Hey rajuldz, you can do so with the following URL structure:
www.site.pl/subpage?tab=tabid
Thx for answer, but your solution is not working 
Here is link to page: http://drpiekarski.konradraj.pl/ Last icon with subtitle “Antykoncepcja” should link to subpage to tab with similar name “Antykoncepcja”.
Great, thank you!
It was easier than i was thinking.
You’re welcome rajuldz 