1508 comments found.
Hi,
Am interested in purchasing Vela Premium WP Theme. Does it come with a side menu option, or can this be added with a plug in?
Thanks, Tom
Unfortunately, there is no side menu in this theme. I do not recommend you to use the third party plugin since it doesn’t come with the theme design and it is not included in the plugin support list.
If you’d like you can try our newer theme named “Flora” that comes with Left Menu -> http://wydethemes.com/flora/ It’s currently being a Featured Item on ThemeForest as you can find on the first section of the home page -> https://themeforest.net
Hi Wyde, i’m searching to squeeze the last bits of my wordpress : https://tools.pingdom.com/#!/cDP8Uy/https://www.brockwayproduction.fr/
SO looking at this report i have 2 questions :
1- Why overlap.woff and simple-line.woff are charge, what content use them ? I did not sucess to know on my own.
2- Despite my best efforts, i did not suceed to remove query string out of fontawesome… Since it’s charge by Wyde Core, maybe you could help me on that ?
Regards.
Sorry, the theme is Overlap, my mistake in the theme page. Regards.
Hi,
1. Icons CSS are all combined in one CSS file, that means they’re all will be loaded even you didn’t select them to display. Don’t worry! These icon files are static contents, they are added in the caches of client browsers, they will be loaded from your site only once on the first time they visit.
2. We use the whole CSS from the original FontAwesome ( http://fontawesome.io/assets/font-awesome/css/font-awesome.css ). As you can see in the above CSS link from FontAwesome site. They add querystring to the FontAwesome font files to make sure you’re using the correct version, it’s because this icon set updates and adds new icons so often. If there is no querystring, when we update the icons, your site would display the old ones instead.
Actually, it’s not only this theme that adds querystring to the FontAwesome icon files, even if you’re using the FontAwesome from any other themes or plugins such as Visual Composer, you will have the querystrings in the FontAwesome icon files too.
BTW, if you’d like to remove it, you’ll need to remove the current CSS file of the FontAwesome from Wyde Core plugin but use your own instead.
Adding the below code into functions.php in your child theme to remove CSS file from Wyde Core.
function overlap_load_fontawesome(){
wp_dequeue_style('wyde-font-awesome');
wp_enqueue_style('overlap-font-awesome', get_stylesheet_directory_uri(). '/font-awesome.min.css', null, null);
}
add_action( 'wp_enqueue_scripts', 'overlap_load_fontawesome', 999 );
Then upload your CSS file and font files to your child theme folder.
Hi,
1- Like i say i’m a bit of optimisation freak now. So i dont see the point of sending or charging the files if i dont need too. Could we work around that ?
2- Your explanation confuse me a little, if dont use a cache plugin, how could i serve a version of the file that dont exist anymore. And if i use one and update the theme (and so fontawesome), after each update i purge the cache anyway, so how could i serve the wrong version file ?
Maybe there is something that i dont know ? Because lot of my file have query strings (like any wordpress), but cache plugin get ride of all of them at the exeption of FontAwesome.
1. Actually, it’s not only this theme that combines all CSS files so they have been loaded even you’re not using them.
For example: When you use the Visual Composer plugin (without this theme), the whole CSS and scripts of all elements and features are in only one file. That means all styles of all elements are all loaded even you have only one element on the page.
This is because they want to have the less files on the page and charge only on the first load, they don’t need to load more files and more times. Maybe it can take the time on the first load but it seems to be faster when you open another page then. Because the browser loads the static files from the remote site only once but next time it uses them from the caches instead.
However, if you don’t need all icons but just ones you’re using, you can remove the current icon CSS file and use your own instead.
Edit functions.php in your child theme:
- Replace:wp_enqueue_style( 'overlap-child', get_stylesheet_directory_uri() . '/style.css', array( 'overlap', 'overlap-main', 'overlap-icons' ), $version );With:
wp_enqueue_style( 'overlap-child', get_stylesheet_directory_uri() . '/style.css', array( 'overlap', 'overlap-main' ), $version );
- Add below code:
function overlap_load_fontawesome(){
wp_dequeue_style('wyde-font-awesome');
wp_enqueue_style('overlap-font-awesome', get_stylesheet_directory_uri(). '/font-awesome.min.css', null, null);
wp_dequeue_style('overlap-icons');
wp_enqueue_style('overlap-custom-icons', get_stylesheet_directory_uri(). '/custom-icons.css', null, null);
}
add_action( 'wp_enqueue_scripts', 'overlap_load_fontawesome', 999 );
So you will have your own FontAwesome icons CSS file and one of custom icons CSS file.
2. That’s possible! As you know the browser serve static content from its caches. Even you purge the cache on your server because that is the server caches. If you do not press a refresh button on your browser, it might serve the old files from the caches instead.
You can try it if you’d like. Change some value in CSS file in the theme, and purge the server cache. Then enter the URL to visit your site without pressing a refresh button.
Also, for the querystring from FontAwesome icon files, your cache plugin removes all querystrings from CSS & JS files. Of course, now there is no querystring on your CSS & JS files as you can see when you check your site with Google PageSpeed Insights. But the querystrings found in the result on pingdom.com that you sent me, it’s not a querystring from CSS file but it’s from the icon files since it comes with the FontAwesome CSS code inside the CSS file.
As I provided, you can edit the FontAwesome CSS file then add it to your child theme and use it instead of the original one from Wyde Core plugin.
Hi, i will try to replace the code, but the code you told me to replace is not exactly like you say :
Instead of havinh : wp_enqueue_style( ‘overlap-child’, get_stylesheet_directory_uri() . ’/style.css’, array( ‘overlap’, ‘overlap-main’, ‘overlap-icons’ ), $version );
i have : wp_enqueue_style( ‘overlap-child’, get_stylesheet_directory_uri() . ’/style.css’, array( ‘overlap-main’, ‘overlap-icons’ ), $version );
Regards.
No problem, it’s the same one because the key is the same as “overlap-child”. You can replace that line with the new one I provided.
Hi, i’m still trying to understand, what is the same as “overlap-child” ? If i dont have ‘overlap’ already, why add it ? whould not be : wp_enqueue_style( ‘overlap-child’, get_stylesheet_directory_uri() . ’/style.css’, array( ‘overlap-main’ ), $version );
way simplier ?
Also if by removing ‘overlap-icons’ from the enqueue request, why sould i dequeue it later ?
Regards.
I’m sorry but there is no easier way. That is the only way to remove the CSS of icons from the theme without editing the theme file directly.
The code I provided will remove the current overlap-icons and use your custom icons CSS instead.
So after you add the code, you will need to add a file “custom-icons.css” in your child theme.
Copy the whole code from icons.css in the overlap theme to this file, then remove any icons CSS code where you don’t need.
Like the custom icons above, you will need to add a new CSS file for the FontAwesome icon set to your child theme too. Then edit the CSS code to remove the querystring from the font file name.
It sounds difficult but it’s only way to remove the old icons that’s bundled with the theme to use your own CSS file instead.
i see, i already do the trick for FontAwesome 
But my question was more, in this code of line, what is actually doing :
wp_enqueue_style( ‘overlap-child’, get_stylesheet_directory_uri() . ’/style.css’, array( ‘overlap’, ‘overlap-main’, ‘overlap-icons’ ), $version );
“overlap” “overlap-main” and “overlap-icons”
What each variable call exactly ?
Regards.
This page contains all details of wp_enqueue_style function -> https://developer.wordpress.org/reference/functions/wp_enqueue_style/
Hi wyde, thanks for the page, but this is not really the line but the 3 variables that i have question with :
“overlap” “overlap-main” and “overlap-icons”
Witch is the the role of each one ?
Since remember i miss already one, and my theme is working just fine…
Those 3 variables are a $deps parameter in that page. Your file depends on $deps, that means it will load those 3 files before your file. In my previous code, I removed “overlap-icons” from $deps so your site won’t load the icons from Overlap theme anymore.
Ok, then what files are calling the others 2 variables ? I’m asking because, you tell me that i should have 3 variable before modifications, but i only have 2 and experience no issues.
You will have 2 or 3 but that’s not important because you can replace that line with the new one I provided.
Ok, thanks but what i’m trying to figure it out, is why adding a $deps parameter that i apparently dont need ?
i just try to figure it out the logic in that.
Regards.
Both “overlap” and “overlap-main” are the main CSS files from the theme.
If you didn’t set $deps, your child theme CSS file will be added before the main CSS files from the theme. So your custom CSS in child theme won’t work because the default styles from the theme will override them.
When you define $deps, your child theme CSS file will be added after the $deps.
HI! i already renewed my Vela Licence mode, how i can now update my theme in wordpress?
Best Regards
Hi,
If you’re using the Envato Market plugin to update the theme, you can install the update in the Envato Market section on your WordPress admin.
Otherwise, please download “All files & documentation” from the Downloads tab on ThemeForest, then follow the instructions on how to update the theme by using the Envato Market plugin.
Hi! My Visual Composer Plugin suddenly stop working in my VELA Theme. So, i need some help with this little problem. I already buy a licence key for visual composer, but I don’t see License tab in Visual Composer settings.
I Hope you can help me with this.
Have a nice day.
Best Regards
What’s the current version of the Visual Composer plugin installed on your site. If you’re using the Visual Composer plugin 4.12 or above, please make sure the current version of the theme is 1.8.7 or above.
The license tab has been disabled since the Visual Composer plugin is bundled with the theme and you don’t need to register the license code to get the plugin’s auto update. This plugin needs to be updated by the theme author to make sure it will be compatible with the theme.
However, we will enable this tab in the next update if you’d like.
Hello, In the theme section Page Options: I updated smooth scrolling and preload images and the theme began to pause to a white page. I would choose a page from the nav and it would show a blank white page I would have to refresh to make the page appear.
Thanks for your help. Janet
Hello,
It’s because you’ve removed the preloader from the page. If you enable Preload Images option but the page couldn’t find the preloader and it will stop working.
There are 2 ways to work around this:
1. Bring back the preloader by editing the header.php, then remove your code or upload the original header.php file to your host.
2. Disable Preload Images option in Theme Options -> Page -> Page Options.
However, we will look into this to find any solution to prevent this issue in the next update.
Thanks for reporting this issue.
Hi,
On Chrome, the logo in the fixed header is getting stretched horizontally when it transitions from full to fixed. Anything I can to do fix this?
Please PM me your site URL -> https://themeforest.net/user/wyde#contact so I see if there is something wrong and can provide the custom CSS to fix it.
Hello, i import recently the content for a one page website, But the form is missing, could we have the code for it ? Also is it possible with css to make the sticky menu same height than the normal one ?
Regards.
Also i have a small issue with fontawesome, half of the icons dont display properly (just blank, no visual errors), in front and back end ?
Hello,
1. Here is the code of the contact form on the One Page demo:
One Page Business:
<div class="col-sm-4"> <p>[text* your-name placeholder "Name *"]</p> </div> <div class="col-sm-4"> <p>[email* your-email placeholder "Email *"] </p> </div> <div class="col-sm-4"> <p>[tel your-tel placeholder "Phone"]</p> </div> <div class="col-xs-12"> <p>[textarea your-message placeholder "Message"]</p> <p><input type="submit" value="Send Your Message" class="full" /></p> </div>
One Page Agency:
<div class="row"> <div class="col-sm-6"> <p>[text* your-name placeholder "NAME *"]</p> <p>[email* your-email placeholder "E-MAIL *"] </p> <p>[tel your-tel placeholder "PHONE"]</p> <p><input type="submit" value="Send Your Message" class="full" /></p> </div> <div class="col-sm-6"> <p>[textarea your-message placeholder "MESSAGE"]</p> </div> </div>
Also, we will include the contact forms in the demo content in the next update, thanks for reporting this issue.
2. Sure, you can insert the custom CSS as below to change the height of the sticky header:
#header.fixed .header {
line-height: 85px;
}
3. Thanks for reporting this issue, we will update the FontAwesome icons in the next update.
Hi, thanks for the codes ! Also i never try the one-page function before, it is not counter-productive seo wise to have multiple page with low content ? they can be discover very easily by crawlers.
Regards.
Also, can i know what fil i should edit to grow the post summary from 2 lines to 5 ?
Regards.
1. I’m sorry but I’m not sure since I never compare the SEO results between one page and multi-page so I couldn’t answer this question.
2. If you’re using the blog posts with Large Image layout, you can insert below code to functions.php in your child theme:
function vela_excerpt_length( $length ) {
$length = 120;
return $length;
}
add_filter( 'excerpt_length', 'vela_excerpt_length', 999 );
Otherwise, please let me know what the layout you’re using or give me your blog page URL because I’ll need to inspect the code to provide the custom CSS to you.
Hi, the code dont seems to work, here the url : http://tinyurl.com/glb3cue
And for purpose SEO, did it is ok to disable or hide the page (with default wordpress backend) so it cant be found by crawlers at their url ? Or maybe there is a way with the theme to make the one page menu work only with a single page ?
Also the carroussel is king of slow, you can configure the delay on your others themes, could we have that too on Vela ?
Regards.
1. I’m sorry but that code is for the Large Image layout, if you’re using the Masonry layout, please use below code instead.
function vela_excerpt_length( $length ) {
$length = 40;
return $length;
}
add_filter( 'excerpt_length', 'vela_excerpt_length', 9999 );
2. Even you’re using One Page site but WordPress automatically generates RSS feed of your posts/pages like any other multi-page sites so all search engines will find your pages and index them as multi-page site. There are 2 ways to work around this:
1) Set the page status to private to remove it from RSS Feed but it’s still showing on the frontpage.
2) Create a custom One Page site instead of using the One Page feature from the theme. You can move the whole content from all pages to the home page, then set the ID for the row so it will be an anchor of each section.
For the Carousel speed issue, we will add the speed option to the carousel element in the next update, thank you for your suggestions.
Thnaks for the code, work like a charm 
Hey I am very new to website building and found your theme, which I really like. However, I installed it on WordPress but it is now saying I should create a Child from the theme in order to prevent loosing changes when the theme is updated. I have absolutely no idea how to do that (I am a complete beginner in the website making). Can you please help me? I thought a bit that I can take your layout and just change the pictures and the text in the one page design of your theme. Many thanks. L.
Hi,
Don’t worry, you can use the theme without child theme if you don’t need to modify any theme files.
When you update the theme, it won’t affect your current data and settings.
However, if you’d like to edit any files in the theme such as CSS files, please install the child theme that’s included in the main downloaded package, see more on Child Theme here -> https://codex.wordpress.org/Child_Themes
Thanks a lot for that quick and helpful response.
I’ll have another question – how do I exchange the Icons. I saw it in the codes but how do I find the names for new Icons? Thanks a lot again for your help.
You can add custom icons into the Icon Picker via your child theme.
1. Install and activate your vela-child-theme.zip.
2. Go to Appearance -> Editor to edit Vela Child theme.
3. Add the below code to Theme Functions (functions.php):
function vela_get_custom_icons($icons){
$your_icons = array(
array( "your-icon-1" => "Icon 1" ),
array( "your-icon-2" => "Icon 2" ),
);
return array_merge_recursive( $icons, $your_icons );
}
add_filter( 'vc_iconpicker-type-openiconic', 'vela_get_custom_icons' );
The above code will append your icons into the Open Iconic icon set.
4. Upload your icon files to child theme folder “wp-content/themes/vela-child-theme/fonts/”.
5. Add your CSS font icons to style.css in your child theme:
@font-face {
font-family: 'your-icon';
src: url('fonts/your-icon.eot');
src: url('fonts/your-icon.eot#iefix') format('embedded-opentype'),
url('fonts/your-icon.woff') format('woff'),
url('fonts/your-icon.ttf') format('truetype'),
url('fonts/your-icon.svg') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="your-icon-"]:before, [class*=" your-icon-"]:before {
font-family: 'your-icon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.your-icon-1:before { content: '\e800'; }
.your-icon-2:before { content: '\e801'; }
Is there a way to have a different header image for mobile where the slider is on the home page?
This code works thanks. But the text is now shifting to the top instead of centered up and down. Also, I am adding an image as the background and it keeps sizing it to large, which is causing the image placement to be off and the image doesn’t look right. Thank you for answering.
Sure, the Slider Revolution allows you to setup different styles for each screen size.
To set the different images in the slider for mobile, you have to enable Custom Grid Sizes on mobile screen.
1. Go to Slider Revolution on your admin page, select the slider to edit the settings.
2. Enable Custom Grid Sizes for mobile (and tablet if you’d like), then save changes.
3. Edit the slides in the slider one by one, you will have the multiple screens in the tool bar, select a mobile screen to edit the slider styles on mobile.
See more on how to enable Custom Grid Sizes to have different images and styles for mobile here -> https://www.themepunch.com/revslider-doc/slider-setup/#custom-grid-sizes
Thank you.
No problem 
Hi,
I just bought your theme and I have some troubles with the Instagram feed. I can’t have it horizontally, but only vertically.
Hi,
I’m sorry but the Instagram Feed is not included in this theme, we’ve never seen this issue before. If you’d like you can PM me your site URL -> https://themeforest.net/user/wyde#contact so I can inspect the code on your site to see how wrong on it.
Hello, How do I change the height of the header images on the pages and posts?
Thanks Janet
Hello,
There is only one size of the page title area in this theme.
If you’d like to change the height of it, you’ll need to add the custom CSS in Theme Options -> Advanced -> Head Content as below:
<style type="text/css">
.title-wrapper .container{
padding: 200px 0;
}
</style>
You can change from 200px to any values.
Wyde . .quick one . .how can I change size of footer widget bar .. somehow is quite large comparing to footer .. and I have just 4 lines of text there ..
Try to add the custom CSS to Theme Options -> Advanced -> Head Content as below:
<style type="text/css">
#footer-widget{
padding-top: 30px;
}
#footer-widget .widget {
margin-bottom: 30px;
}
</style>
Sure you can change the above padding and margin values as your needs.
Works like a charm ! As usually ! Thank you once again !
No problem 
We are working on a site with the Vela theme. Is there a control for the Team Member photos, such as those you can see on this page under “Meet the Directors?”
http://carnrite.squidzville.com/?page_id=255We’d prefer the photos to 1/4-1/3 of the size the currently are.
Sure, there are 2 ways to change the size of member photos.
1. Reduce the width of your column container so the Team Members Slider will be smaller. Edit the column, select the Design Options tab, then add the padding to both left and right.
2. Increase the number of members to display on screen. Edit the Vela:Team Members Slider element, change the Visible Items to 4 or more so you will have more items on slider and the photos will be smaller.
Ok. I’ll try that. Thanks!
Is it possible to have size items show? The options only allow for 1-5. Changing the column width sort of breaks the desired design layout.
Unfortunately, in the current version there is no size option in this element, the slider always stretches to full the container width and all images in the slider will resize automatically to fit within the slider.
We will look into this to find a better solution in the future update.
How to add newsletter box. At the moment its nothing there. Just saying subscribe to our newsletter but no box to put email
It’a MailChimp plugin. Also you can use the Contact Form 7 plugin instead. Create a form with 1 text input and 1 submit button, then add it into your page by using Visual Composer. If you’d like you can PM me your email so I can provide the code of the newsletter form.
Thanks. PM sent.
Ignore this issue please. I have added the form myself.
Glad to hear that you’ve figured it out.
Got one problem. Submenu doesnt look like it should: http://prntscr.com/cjfy0v
I suppose there was a plugin conflict because we’ve never seen this problem before. Try to deactivate other plugins to see if it works.
If it doesn’t work please PM me your site URL -> https://themeforest.net/user/wyde#contact
PM sent
I installed your template, activate all plugins and then in theme options import sample data (business), but if I open homepage I do not see content, just slider. If you want to edit the page in the administration, so visual composer is empty.
It’s a One Page website. The front page displays the content from the pages in the primary menu. You should setup the primary menu, then add your pages into it.
The home page of this demo contains only main slider but no other contents. You should edit each section separately.
For example: If you’d like to edit the About Us section, you should edit the About Us page.
Hi, I have a subdom hwww.wv.domluvimseanglicky.cz. In the “Kde nás najdete” section does not work plugin GoogleMaps. There are only blanks here. Where is the problem?
Thank you and have a nice day,
Jan
Hi,
This is a bug of the Google Maps when the AJAX Page is enabled, it has been fixed in the next update of the theme.
To work around this, please disable AJAX Page Transitions in Theme Options -> Page -> AJAX Options.
Hi! I’m interested in using this theme for a small business website, but first I have a few questions:
1. Is it possible to make the background header-image switch between pageloads (randomize)?
2. Does the template include or support a PDF reader? (The company wants to have a separate page for its weekly flyer)
3. Is it possible to add ‘negative space’ or a white border to the sections underneath the header (like this page www.lilund.com)?
4. Is it possible to add a translation button for a customized translation (that we write ourselves) OR, alternatively, have a duplication of the website in French with a link back and forth to the two versions?
Thank you so much in advance and any response is appreciated! Linda
Hi,
Thanks for interesting in our theme!
1. While page loading it always displays the loader animation, there is no option to change it to randomize background.
2. It doesn’t include PDF viewer, but you can install the 3rd party plugin such as WordPress PDF Light Viewer ( https://wordpress.org/plugins/pdf-light-viewer/ )
3. If it means the main slider at the top of the page, sure you can as you see on our demos -> http://wydethemes.com/vela5/
4. You can add a button or link to the top menu or footer to link to your custom translated site, or install WPML plugin that allows you to translate your site to multi-language site.
However, this theme allows you to customize your site not much when comparing to our new themes, please take a look at all of our themes here -> https://themeforest.net/user/wyde/portfolio
Hi Wyde,
I purchased and set up my Vela theme on my personal portfolio website but the main background image isn’t loading on mobile. How should I fix this? Check it out at http://www.johnrobisoniv.com
Also, just a note – there’s a bug in the Goliath style portfolio animation – the post title moves up out of the frame when it should be centered in the upper, un-covered part of the photo. I tried to fix the CSS but it broke the layout on the Mason Portfolio page…
I’d really like to fix this mobile load issue ASAP!
Thanks, John
I suppose your main background image is too large to display on mobile. It also takes several seconds to load on my computer.
The slider displays the full size of your images as the background image, you should resize your image before uploading to the slider.
The background image width should be 1920px or less, that’s suitable for showing as background on website.
Regarding the Goliath hover effect on portfolio, thanks for reporting this issue, it will be fixed in the next update. Also, you can fix it right now by adding the custom CSS to Theme Options -> Advanced -> Head Content as below:
<style type="text/css">
.effect-goliath figure h3,
.effect-goliath figure p {
width: 100%;
}
</style>
Hi,
I have some problem with my header from the website http://www.nizthewiz.com/Use chrome,
Try go the the register > customer
The will bring yo to a page outside from wordpress. But when i click on the broswer back button, i cant go back to the main page.
Any idea why?
It’s because you’ve set the custom JS (onclick=”location.href=’...’;”) to the link instead of using normal link that didn’t work with AJAX Page.
The easiest way is disabling AJAX Page Transitions in Theme Options -> Page -> AJAX Options.
However, if you’d like to use AJAX Page, you can exclude any links in Excluded URLs options in AJAX Options section, you should add ”/booking/” to exclude this path, then remove the custom JS from your links on Register page.