Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Cart 168,868 sales
Recently Updated
Well Documented

ThemeNectar supports this item

Supported

38361 comments found.

how would i removed the found us info on the right side of the pages of my porthttp://vaveili.com/2018/01/31/sxvxn/

Hey Vaveili, when editing your portfolio items, the first (regular WP) editor is the one that populates the sidebar in a non full width layout. If that’s not what’s adding that content in on your project, 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

Hello,

Under the page header settings, when you select the option for Fullscreen Height, it places a moving icon that you click and it moves you down to the next section of the page. Is it possible to swap the oblong icon with the dot in the centre with our own image…preferably a gif?

You’re welcome Micatuca, unfortunately not as of now without some custom modding – however you could instead use a regular row in the page builder and set the row to fullscreen height to get a similar setup that would be more flexible in regards to the content

Cheers ThemeNectar

Hello I wanted to install the corporate creative demo. I have a 6% error message with the automatic installation (there was an error installing demo). We tried a manual installation but it does not work too. We have checked the requirements. Can you help us ?

Hey zaliyanna,

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

Hi, when I active the plugin GINGER (for GDPR) that lock all cookies if I don’t accept cookies (with the page reloading) I have a big logo on the top of the site… Can u check?

Hey Chris8886,

Try adding this into the custom css box in the Salient options panel > general settings > css/script related tab


.logo-spacing {
    visibility: hidden;
    pointer-events: none;
}

Cheers

Hi, this solve the biglogo but I have a big white border ad some trouble with the sticky header (with blocked cookies by GIGNGER plugin). THX

Hey Chris8886,

I just tested with Ginger on a local Salient setup and couldn’t see that occurring – I can see there’s a script error Ginger may be causing in another third party plugin you have active which may be responsible https://imgur.com/a/mHv9VuD try temporarily disabling that plugin to see if it corrects the problem

Cheers

Hello,

I’d like to buy salient, but before I’d like to choose a demo template.

You say there are more than 200 demo template , but in your presentation I only see 40…! where can y see the other please…?

Or if you can tell me the name of instalable demo using for create this website :

http://www.javaclub.ch/

best regards

Hey nedana, 1. Here you go: http://themenectar.com/docs/salient/salient-studio/ 2. That website is indeed using Salient

Cheers

hi,

I now the website is indeed using Salient…!!

But ma question was ” do you now the name of demo used for create that website…?? “

regards

Hey nedana, they are not using a predefined demo – they created that site design from using Salient elements to create something custom

Hi ThemeNectar,

Thank you for providing the code the allows the caption to remain visible all the time.

One quick follow-up question, is it possible to keep the navigation arrows, the image counter, and the view full-screen, close button visible all the time as well

Link: http://www.designreborne.com/projects/berenson/portfolio/marco-russo/

I tried adding the CSS below to certain rules but I am not having any luck. Please help.

visibility: visible!important;

Best, Alan

Hey Alan,

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


body .fancybox-toolbar > button svg {
    opacity: 1;
    transform: translateY(0px);
}

body .fancybox-navigation {
  display: block;
}

body .fancybox-infobar, body .fancybox-toolbar, body .fancybox-caption-wrap {
    opacity: 1;
    visibility: visible;
}

Cheers

Many thanks. That did the trick!!!!!

You’re welcome Alan :)

Is there any plan to update the shop styling? We’d love to be able to easily provide a shop like our clients blog using Salient https://www.cycled.cc/

Hey guys, any further update on progress for the latest release? I’m sure you busy getting the next update ready, just a rough timescale would be super-helpful! Cheers

Sorry, didn’t mean to write twice. Thought it hadn’t uploaded!

Hey Eastworks! We’re still beta testing right now – there’s a lot of changes coming so we want to make sure they’re tested thoroughly If you’d like a copy of the beta, please reach out in regards via the contact form on my author page https://themeforest.net/user/themenectar

Hi guys,

We love the salient theme but we cant figure out how to disable full screen rows ONLY on mobile. We want full screen rows to work on dekstop and tablet. Is that possible? Thanks in advance.

When leaving Ipad out, the footer disappears on Ipad. You guys have any idea? Thanks alot.

nvm fixed it by: position: absolute on the footer-outer

Hey wazzupsoftware, glad to hear

Cheers

Random Question, but would you know of a way or plugin that would allow us to A/B test the Call to Action section? Thanks in advance.

Hey Andrew_McNelis,

Are you referring to the global call to action section assigned from the theme options panel? If so, i’m afraid that would likely take some custom development

Cheers

Hey guys,

We’re having an issue trying to hide a specific row on a specific device. As you can see on this dummy page (http://faithchurch.com/15700-2/), there is two videos playing. The top video on desktop is correct, but the bottom video, according to the row, should be hidden on all devices.

Here’s an image showing that row should be hidden on all devices, but it’s still showing on all devices, including mobile – https://imgur.com/a/yPlYr9I The second image in the list is the mobile version. The top row should be hidden on mobile, but it’s showing just a gray box.

Are we missing a setting somewhere?

Hey faithchurchfilm,

The page builder only allows you to define when columns should be visible on various devices, not the parent row itself – for this you would need custom css. Give the row a class name such as “mobile-hidden” and then add this into the custom css box in your Salient options panel:


.mobile-hidden { display: none; }

@media only screen and (min-width: 1000px) {
  .mobile-hidden { display: block; }
}

Cheers

Will the next release include the latest Visual Composer changes? Specifically Shape Dividers? I would love to get that feature soon :)

Hey AMcDermott, Salient already includes the current WPBakery plugin as well as its own Shape Divider http://themenectar.com/demo/salient-promo/shape-divider/ – are you referring to something else?

Hey, I updated to the latest version just in case, but I can’t find the shape divider. Sorry it’s such a basic question, but can you tell me how to find it? Searching divider or shape doesn’t show it in VC element search for me.

Hey AMcDermott, it’s actually a tab inside of the row element within the page builder: https://imgur.com/a/He12j7b

Cheers

Hi guys, I am trying to prevent the background of this page https://vocalviews.com/vocalsurvey/colourful-technology/481/ from being black, which is really weird. I have tried adding this to custom css but them it messes some of the portfolio pages up and also the lowest footer on my website turns white too #footer-outer #copyright, body { background-color: #ffffff !important; } Any help is much appreciated

Hey anthonysinclair,

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


html body.blog.ipt_uif_common { background-color: #fff!important; }

Cheers

worked! Thanks

You’re welcome anthonysinclair :)

Hi,

When I use the search on the mobile the text is black on a black background while typing it in. only when you click off does it go white. Also I dont want the word search there as youre typing it in – please advise.

thank you https://vapesandtobacco.com/

Hey tricks28,

Could you kindly allow me to bypass the coming soon page so I can take a look?

Thanks

Hi, Sorry – its off now.

No worries tricks28,

If you change your theme skin to “Material” in the Salient options panel > general settings the mobile search will function in the header directly and you could remove the search widget

Cheers

Hi there, what will happen if I use the latest updated theme for Salient (for the licence I have) on another website project and a previous client doesn’t remove the older version from their site as they said they would. (They’re creating a new website but might just be trying to slip a website past without paying). Will the new website be taken down? I will be adding the purchase code etc. to the new website project.

Hey EanBarnard,

You can clarify this by contacting Envato for an exact answer, but if you’ve already told them to switch I would expect you to be in the clear as you’re abiding by the terms: https://themeforest.net/licenses/terms/regular

Cheers

Thank you Support, appreciate the prompt answer ;-)

You’re welcome EanBarnard :)

Hi there,

After a update, the social icons are not visible anymore in the header, now i see 3 square icons. See : http://www.colorscan.nl/. What can i do about this issue ?

Please let me know :D

Thanks in advance.

Hey geerart1973,

Could you temporarily disable the CSS minification so I can take a deeper look at what’s causing that for you?

Thanks

Thanks for your respons, i deactivate the plugin

Thanks geerart1973, go into your download manager plugin settings and disable the “Font Awesome” from loading – Salient already includes a version. That will fix the issue :)

I’ve installed Yoast SEO Premium. I’m getting a notification that the language I’m using isn’t supported. I am not using any language/translation plugins. Just normal Salient install. Here’s the message: “You’re using WordPress in a language we don’t support yet. We’d love for Yoast SEO to be translated in that language too, but unfortunately, it isn’t right now. ” Any ideas?

are you just giving it as html?

Hey hokkaweb, Salient is only available as a WordPress theme

Cheers

I’m trying to get the page sub menu to display the mobile version all the time. Is that possible?

Here’s what I was trying:

@media only screen and (max-width: 3000px) and (min-width: 1px){ .page-submenu .mobile-menu-link { display: inline-block; }}

@media only screen and (max-width: 3000px) and (min-width: 1px) { .page-submenu ul { display: none!important; }}

But when I added this the mobile-menu-link stopped working. Please advise. Thanks!

Hey tmanschap,

Can you share your URL so I can take a look at the full setup to assist?

Thanks

Is it possible to make the header logo right aligned? Like the default layout flipped horizontally.

Hey canook,

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


body:not(.mobile) #header-outer .row .col.span_3 { float: right; margin-right: 0; }
body:not(.mobile)  #header-outer .row .col.span_9 { float: left; }

SEO check is showing me that my H1 is empty on my homepage. H1 seems to be part of my header image. How can I give the H1 title for this image?

Hey dzineee,

Do you not have anything input in the page header settings > page header title box? If so, add something in for SEO purposes and if you still don’t want it to be visible, add this into the page builder custom css box (top right gear icon)


body #page-header-bg h1 { display: none; }

Cheers

Thank you! Much appreciated. This only hides the text on the homepage banner?

Hey dzinee, that’s correct – if you want to globally hide all page header titles, add the css into the custom css box in the Salient options panel > general settings > css/script related tab

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