Discussion on Vela - Responsive Business Multi-Purpose Theme

Discussion on Vela - Responsive Business Multi-Purpose Theme

By
Cart 2,052 sales
Well Documented

Wyde supports this item

Supported

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.

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.

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?

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=255

We’d prefer the photos to 1/4-1/3 of the size the currently are.

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

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.

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