Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Discussion on Salient | Creative Multipurpose & WooCommerce Theme

Cart 170,244 sales
Recently Updated
Well Documented

ThemeNectar supports this item

Supported

38441 comments found.

Hey! Wondering if you can serve ads through this theme and how you would go about doing that. Looking to serve standard size ads and takeovers.

Hey – you can by inserting the ad code into a text widget that would go into one of the theme widgets areas or you could look into using a plugin to server them in various other sections

Cheers

Hello—is it possible (via custom CSS code) to disable “Header Permanent Transparent” for Mobile devices only? I would like to keep the permanent transparent effect on non-mobile devices.

Hey,

As of now this would actually take a javascript mod in the init.js file located in the js folder

Cheers

Hi,

I tried to upload my mp4 video into the template. However, the mp4 failed to play when i browse through my site. Can you advise me how to rectify this?

Hey,

Please share the URL so I can see what’s wrong

Cheers

?Hi, I love your theme but before buying, can you consult me if these functions are available to make through your theme, which i didnt find in your demo: - can I show picture in box and write text on top? That box should be clickable and link to other page. Txt should come as hover effect. - Can i make custom gallery layout on home page? I want to look it like masonry style, but with my own settings – specific dimensions for each picture.

Thanks

Lukas

Hey,

This would be best suited to use a portfolio element – if you just wanted a single image outside of a portfolio to do this you could accomplish all but the hover text effect by default

2. Yes, there’s an option for “custom thumbnail image” which won’t clip to any specific dimension

Cheers

How do you white label this theme?

Thank you.

And can you change the colors of the dividers?

Hey,

1. you’d need to edit the nectar/options/options-init.php file at this section

// Set a custom title for the options page.
    // Default: Options
    $args['menu_title'] = __('Salient', NECTAR_THEME_NAME);

    // Set a custom page title for the options page.
    // Default: Options
    $args['page_title'] = __('Salient', NECTAR_THEME_NAME);

2. With css, kindly share the page using one so I can see your settings

Cheers

Q1. check this screenshot http://abguitar.com/1.jpg

my mobile menu is not shown like screenshot! how can i make my menu appear? like this http://abguitar.com/3.jpg

this is my website URL http://abguitar.com Q2. check this screenshot http://abguitar.com/2.jpg

when i see my website with my iphone. right side of nectar slider is shown 1px Vertical line white how can i remove this white line?

please help me~

Hey, add this into the custom css box in the Salient option panel:

@media only screen and (max-width: 1000px) and (min-width: 1px) {
#slide-out-widget-area .mobile-only {
    display: block!important;
}
}

Can I somehow use a custom Google Map color scheme? I tried using the Snazzy plugin but it doesn’t seem compabitle with Salient.

Hey – you’d need to modify the map.js file located in the js folder

Hi! I’ve noticed the images on my nectar slides are kinda blurry. I’m using full width slides, with images at least 1800 px wide. Is there something i can do to avoid this? What is the minimal image dimensions i should use?

thanx!

Hey,

Please share your URL in regards and let me know which browser you’re viewing them in

Cheers

Hi! Well, this is an example:: http://lacuna.com.br/site/portfolio/silencio-e-sombras/

i’m using chrome and safari, through IOS 10.10.5, with a 1920×1080 px screen resolution – i think that can be the problem, right?

Hey – if you’re viewing on a screen size wider/smaller than the size you’re providing the browser has to up or downscale the image in order to fit the size which will result in some distortion. Unfortunately there’s not much that can be done about this

Hi,

I am trying to remove the title of the project on the portfolio-fullwidth-masonry portfolio. I have removed the date using the theme option but cannot find any code to remove the title. Can you help?

Thanks in Advance

Hey,

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

.portfolio-items .col .work-info .vert-center {
  display: none!important;
}

Cheers

Tried to update parent + childtheme from version 6.0.2 in combination with WP 4.3 to WP 4.3.1 + salient 6.1.5 but all the fonts sizes appear incorrect although they are correct within salient theme options -> typography. Also the logo header and others VC parts are pretty messed up.. Is there anything I forgot to migrate or edit or is this ‘minor’ update supposed to work without any troubles?

Kind regards

Hey,

please resave your theme options and let me know if that sorts it for you, if not please open a ticket in regards with your admin credentials so I can take a look at what’s going on :) themenectar.ticksy.com/

Tried to update parent + childtheme from version 6.0.2 in combination with WP 4.3 to WP 4.3.1 + salient 6.1.5 but all the fonts sizes appear incorrect although they are correct within salient theme options -> typography. Also the logo header and others VC parts are pretty messed up.. Is there anything I forgot to migrate or edit or is this ‘minor’ update supposed to work without any troubles?

Kind regards

Please let me know the ticket ID and i’ll gladly take a look

Ticket #537923. Please take a look asap. It’s really causing me headaches

Hey there! :)

1 – there seems to be a conflict between my WP User Frontend Plugin and the Map Display on the Contact page, it simply disappears whenever I activate the plugin, any idea on this? :(

2 – The Off Canvas menu still displays the thumbnails of recent posts and woocommerce products not correctly (which would be centered) together with their caption which gives it weird look (check on www.we-are-utopia.com)

Keep up the AWESOME support! <3

Hey,

1. Could you kindly share your URL in regards? The plugin might be loading a copy of the google map script as well

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

.slide-out-widget-area .post-widget-image {
    display: inline-block;
}
.slide-out-widget-area  .recent_posts_extra_widget .post-widget-image {
  float: none!important;
}

3. Unfortunately this would require some custom development as of now

Cjeers

thx for the quick reply! :)))

1- same URL -> www.we-are-utopia.com

2- didn’t have any effect at all on the issue? :(

Hey again,

1. Try opening the map.js file located in the js folder and changing this:

if(typeof google == 'undefined') {
         $.getScript('https://maps.google.com/maps/api/js?sensor=false&callback=mapAPI_Loaded');
     } else {

         $(window).on("pronto.render", function(){
             mapAPI_Loaded();
         });

         //$(window).trigger('resize');
         //mapAPI_Loaded();
         //setTimeout(function(){  $(window).trigger('resize'); },200);

     }

to this:

if(typeof google == 'undefined') {
         $.getScript('https://maps.google.com/maps/api/js?sensor=false&callback=mapAPI_Loaded');
     } else {
              $.getScript('https://maps.google.com/maps/api/js?sensor=false&callback=mapAPI_Loaded');
         $(window).on("pronto.render", function(){
             mapAPI_Loaded();
         });

         //$(window).trigger('resize');
         //mapAPI_Loaded();
         //setTimeout(function(){  $(window).trigger('resize'); },200);

     }

2. I can’t see the snippet applying as of now, could you kindly open a ticket in regards with your admin credentials https://themenectar.ticksy.com and let me know the ticket ID here?

Cheers

Hello, how can I remove the page header on a specific page?

It’s not possible to change the font size of the mobile navigation (right folding out canvas menu).

Please fix that

thanks

Hey,

1. Are you referring to the nav bar? If so, you’d need to add this into the css box located inside of visual composer on the desired page:

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

2. There’s a section in your typography options tab for “Off Canvas Navigation” this should alter it in both desktop/mobile displays, if it’s not kindly share your URL so I can take a peek

Cheers

Hi Guys,

I’ve had my site optimised but the developer said that he’s come across a problem that he can’t get round without breaking the site but is very important to Google PageSpeed – Eliminate render-blocking JavaScript and CSS in above-the-fold content

Why is this? And what can be done about it? timberandcanvas.com

Cheers,

Hey,

The init.js file would need to be separated into multiple files and have the order of some items changed around – it’s possible it would just be labor intensive

HI,

Can I just check if the words on the intro video under the agency can be removed? I need to insert a video. However, the video itself contains words. Hence, i need the words on the intro video that is set in the template to be removed. Is this possible???

Please revert back asap.

Thanks

Hey,

Yes you can remove the page heading if desired, that content is located in the page header settings metabox located at the bottom of your edit page screen

Cheers

Hello, i have some questions : - Is it possible to put a vimeo in full width in the work page ? (Viméo is responsive but I can’t find a way to put it full with like : http://brikk.se/eng/blog/vaxiluskerna-informationsfilm/) - Is it possible to delete the work title in each work details page ? - How can I delete the title and the date in the porfolio page ? Thanks for the answers.

Hey,

1. Yes, just place it into a row set to full width content

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

.portfolio-items .col .work-info .vert-center {
  display: none!important;
}

3. You can remove that in your Salient options panel > portfolio tab

Hey Salient ! I got a problem with Linea icon. I want to put it in the center of my text bloc, i chose center, i wrote it in the CSS way and i even chose a neutral color to see if problems were coming from this. It doesn’t work. Can you help me ?

Hey – could you kindly share your URL in regards so I can take a peek at the issue for you?

Cheers

Hi, Nectar!

The theme is very easy to use! I really like it! But I meet a problem regarding styling the “text” of the project categories when they are shown on sortable portfolio container. I mean for example the “All”, “UX”, “Strategy” on my portfolio page (http://zhang-yifan.com/worktest/)

What I want is to style them to be the same as the rounded Nectar-button, just like the example I set above them .Could u tell me how to customize it?

Thanks

Hey!

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

.portfolio-filters-inline:not([data-color-scheme="default"]) ul li a {
    border: 2px solid rgba(255,255,255,0.2);
}

Cheers

I’m getting this error when running speed tests on Pingdom or GTMetrix. Any ideas?

https://gyazo.com/370860a63cff763bd2ccd6c57c3aebdc

Our website: pokerhuds.com

Thanks

It seems to be depending on weather or not www is used in the URL.

pokerhuds.com – gives error www.pokerhuds.com – works like a charm

we have other domains linked to the site as well (propokerhuds.com .info etc) and those all give the error.

Thanks!

Solved it by redirecting all domains to www.pokerhuds.com and that solved the problem.

Not sure if that was the wisest thing to do but it works.

Thanks for your help!

Hey – glad you sorted it, please let me know if it becomes a problem again

@jjalfaro Hi! Had the same problem, the code @ThemeNectar posted works, but it is missing a ‘{‘

This is how the code should be:

@media only screen and (max-width: 1000px) and (min-width: 1px) {
#slide-out-widget-area .mobile-only {
    display: block !important;
}

this is where the ‘{’ is missing from the original solution @ThemeNectar posted:

@media only screen and (max-width: 1000px) and (min-width: 1px) (THIS ONE) > { < (THIS ONE)
#slide-out-widget-area .mobile-only {
    display: block!important;
}

Hope this will fix it!

Whoops, good catch!

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