1508 comments found.
Hi, I have problem with fonts on Safari.It doesn´t show diacritics correctly. Other browser (for ex. Chrome, Explorer etc.) web: www.domluvimseanglicky.cz Thanks for any advice.
Honza
Hi,
Looks like it was an issue with Oswald font for your current language, you should select the “Latin Extended” for the font subset too.
Go to Theme Options -> Typography, then choose “Latin Extended” for all Font Subsets options.
For those with VisualComposer issues, I can verify that the most recent update will fix the issue. It created one tiny issue with my menu though. I had to switch it from “light” to “dark” for the text to show properly again. Not a big deal, but figured I’d share on the off chance that it might help someone.
Thank you for your post! Sure, it’s very helpful.
Hi nice and powerfull theme.
Can you please me advice to override the single-product.php file for specific product based by ID or SKU. I would like to add a slider for a specif product inside the loop of page-title.php (So hidden the page title of single product with a slider)
how can i do this?
I have copy the single-product.php file into mythemes/woocommerce/ but the page-title is called by a function in another file. So what the way to change this part for some products?
I have do the same things for product category: Create custom archive-categoryname.php and called inside the taxonomy-product_cat.php
Thanks in advance
Add the below code to functions.php in your Vela Child theme:
function vela_hide_title(){
global $wyde_title_area, $product_slider;
$product_slider = false;
if( class_exists('WooCommerce') && is_product() ){
$product_id = get_the_ID();
$product = wc_get_product( $product_id );
$product_sku = $product->get_sku();
//Replace with your specific product SKU
if( $product_sku == '111' || $product_sku == '222' ){
$wyde_title_area = 'hide';
$product_slider = true;
}
}
}
add_action('wp_head', 'vela_hide_title', 0);
function vela_add_product_slider(){
global $product_slider;
if( $product_slider ){
//Replace with your slider alias
$slider_alias = 'vela1';
echo do_shortcode( '[rev_slider ' . esc_attr( $slider_alias ). ']' );
}
}
add_action('woocommerce_before_main_content', 'vela_add_product_slider', 0);
Oh that’s look perfect for single or group of product but if i have to define different slider for some product?
Thanks for response
You can edit the code to set different slider for different product as below:
function vela_hide_title(){
global $wyde_title_area, $product_slider;
$product_slider = '';
if( class_exists('WooCommerce') && is_product() ){
$product_id = get_the_ID();
$product = wc_get_product( $product_id );
$product_sku = $product->get_sku();
//Replace with your specific product SKU
switch ( $product_sku ) {
case '110':
case '111':
$wyde_title_area = 'hide';
$product_slider = 'slider1';
break;
case '222':
$wyde_title_area = 'hide';
$product_slider = 'slider2';
break;
}
}
}
add_action('wp_head', 'vela_hide_title', 0);
function vela_add_product_slider(){
global $product_slider;
if( !empty($product_slider) ){
echo do_shortcode( '[rev_slider ' . esc_attr( $product_slider ). ']' );
}
}
add_action('woocommerce_before_main_content', 'vela_add_product_slider', 0);
Hi I’m interested by you nice and powerful, ilt seems, Vela theme. I’m looking for a modern one page theme that I can customize easily, not being a professional of WordPress. I hope to choose between yours and Scalia this Monday morning. May you help me to do my choice? These are two questions : - How many fonts do you propose? May I use a few more and import them to respect the graphic chart of my logo? How can I do that without professional knowledge of WordPress? - I like your pictograms. How can I add and integrate my personal pictograms?. I would like to decline my logo. Thanks for coming back to me.
Hi,
Sorry for taking so long to get back to you!
1. This theme comes Google Fonts that are included in Redux Framework, I’m not sure on the exactly number of total fonts but suppose almost of Google Fonts are included.
2. You can import demo content and easily edit them with Visual Composer page builder without coding knowledge.
Thanks for your answer
I bought your theme. But how can i add and use my own icons? Thanks
You can add your icons to the Icon Picker in the theme by using child theme as below:
1. Install and activate your Vela Child theme.
2. Go to Appearance -> Editor to edit Vela Child theme.
3. Add the below code to Theme Functions (functions.php):
add_filter( 'vc_iconpicker-type-openiconic', 'vela_iconpicker_type_openiconic' );
function vela_iconpicker_type_openiconic($icons){
$your_icons = array(
array( "your-icon-1" => "Icon 1" ),
array( "your-icon-2" => "Icon 2" ),
);
return array_merge_recursive( $icons, $your_icons );
}
The above code will add your icons to the Open Iconic set.
4. Upload your icon files to child theme folder “wp-content/themes/Vela-Child-Theme/fonts/”.
5. Add you CSS font icons to style.css in your child theme like the sample below:
@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'; }
....
Hi want to change list-style / list-style-type to “NONE” I become everytime a custom style. cant override with important.
Found the problem. if import php files into text documents with a plugin. if i add code into “text block – with editor” cant manipulate. if i add code into “wp text” its done
Sorry for my late reply!
The easiest way, you can add your custom CSS to Theme Options -> Advanced -> Head Content as below:<style type="text/css"> /*YOUR CODE HERE*/ </style>
thx will try it
I am having the same problem as other users. Visual composer no longer works, if i click to add a link for example it just scrolls to the top of the page. Can’t make any edits to pages.
Pre-emptively I’d like to say I have the most updated version of the theme and VC. It just wont work anymore. Unable to edit any page. it loads, i click edit on the element, the box pops up, but I can’t click save or anything else from there on.
Please make sure you’re using the latest update of the Vela theme (1.8.7) and the latest update of Visual Composer (4.12).
If you always update the theme via Envato Toolkit plugin, try to update it manually since this plugin no longer work after Envato has changed the APIs. Please download the new update in the Downloads tab on ThemeForest, choose “All files & documentation”. Then follow the instructions in the documentation on updating via the new Envato Market plugin.
After you update the theme, you’ll see a notification to update the Visual Composer plugin, if you couldn’t update it please delete it from your Plugins page first. Then install the new one that came with the theme.
If it still doesn’t work, please PM me your site URL and admin login credentials -> https://themeforest.net/user/wyde#contact
Hey guys not sure if you can help me with this or not. I just updated to latest version from the last version and now my pages just keep loading. Is anyone else having this issue? I restore via a back up I had and tried to troubleshoot to see if it’s a plugin issue and it doesn’t appear to be. Seems like just updating is what causes this issue.
I should note, my site is www.dealtechpc.net. I updated last with no plugins except for the core plugins. Makes me think something is off with the new update.
Hi there,
Our demo site ( http://wydethemes.com/vela1/ ) is using the latest update of Vela theme 1.8.7 that is compatible with WordPress 4.6. I suppose this is a plugin issue.
After you update to the latest update of the theme, you will see a notification message to update the Visual Composer plugin to 4.12.
If you couldn’t update this plugin, please delete it from your Plugins page first, then install a new one that came with the theme.
If it still doesn’t work, please PM me your admin login credentials -> https://themeforest.net/user/wyde#contact
Hi there!
Since WP update on 4.6 Visual Composer is not working propper anymore. Text editing is only possible in text mode, not in visual mode. Sometimes no text is displayed, also not in text mode. Will there be an update on Visual Composer in the next days? Or is there another problem with the template?
Best regards,
Manuel
Hi there,
As you can see on our demo -> http://wydethemes.com/vela1/
It’s also running on WordPress 4.6, we’ve tried to edit the Text Block element and any elements with Visual Composer plugin and they’re all working fine.
Please make sure you’re using the latest update of the theme 1.8.7 and the latest update of Visual Composer 4.12.
Also, it might because there was an issue with other plugins. Try to deactivate other plugins one by one to see if it works.
Is the imported demo content editable via Visual Composer?
Sure, all demo content can be edited by Visual Composer plugin because they’re all created by this plugin.
Hello, i think i will buy this Theme looks nice. Can i add background video from any sourcelike my server or youtube? if i could load from my server i there a option to loop, start, stop, sound ?
Hello,
I’m sorry for taking a long time to get back to you!
Yes, you can add your self-hosted MP4 video to the background video but there is no option to change the video settings, it will auto play, loop and mute by default because it was just a background.
hey my purchase code is: d43b5b2b-d54f-44bc-b3ef-130a7e93a019
i have some bugs with the gallery filter: 1.it doesn’t work. 2. when i want to display only few categories with your Custom Posts option , all the categories disappear.
thanks in advance Hanan perez
This issue has been fixed in our recent updates, please update the theme to fix it.
hey, but your last update was at 1.7.2016 i installed the theme afterwards
The latest update of this theme is 1.8.7. Try to download the new update from the Downloads tab on ThemeForest. We provide a new method to update the theme in the new update of our new documentation.
hey , i did it and the websites doesnt work can you please write me a private message to hananupnet@gmail.com i will give you my login detalis
i just need the categories to be displayed in the filter when i choose only certain categories in the Custom Posts option
You can PM me your site URL and admin login credentials on the author profile page -> https://themeforest.net/user/wyde#contact
Hi, on your next update would you mind fixing a few performance issues please as below?
- Remove query strings from static resources - Defer parsing of JavaScript - Minimize request size – data:application/font-woff;base64,d09GRgABAAAAA … U8rlpPHa5TTHaY4R42MMtVz8Z63w/h81ynvOAAFXe2/DAAA=
https://tools.pingdom.com/#!/cSWBb0/https://sixtymarketing.com/ https://gtmetrix.com/reports/sixtymarketing.com/7slIdqtLHi,
This is a WordPress standard function for adding resource files into WordPress site. As you can see in the testing results, other plugins also have the query strings in their resource files. Even we remove them from our theme but it doesn’t fix this issue. The best way to fix it, you should install a cache plugin such as W3 Total Cache ( https://wordpress.org/plugins/w3-total-cache/ ) to compress and combine all static resource files. It can also improve your site performance and reduce the download times.
Hi, i have this plugin installed and setup correctly. even without any other plugins installed the theme still generates a lot of query strings. could you address this problem and the other 2 points i made please?
If you have this plugin installed, please make sure you enable minify feature on CSS and JS, those files will be compressed and combined so all query strings will be removed.
yes those settings have always been that way. are you unable to make these changes in the next update?
We’re sorry but we couldn’t change this since we used the WordPress standard method to add resource files as any other themes and plugins that always includes the query strings.
Actually when you enable CSS and JS minify, those query strings will be removed too, this is the best way and easiest way to remove them. I see you have this cache plugin installed but please make sure you’ve checked these boxes as the below images:
If it still doesn’t work, please PM me your admin login credentials -> https://themeforest.net/user/wyde#contact
Hi Wyde! My visual composer is no longer working. Wordpress indicates that there is an update but if I try and update it tells me my license has expired. This means I actually can’t use the theme anymore…. please can you help? Thank you.
Hi,
Sounds like this is a compatibility issue. The old version of the Visual Composer is not compatible with WordPress 4.5 and above.
If you usually update the theme via Envato Toolkit plugin please use the new plugin that we’ve provided in the new version of our documentation instead.
Please download the new update from your Downloads tab on ThemeForest -> https://themeforest.net/downloads
Choose “All files & documentation”, then follow the instructions on updating the theme in the new version of our documentation.
Also, there is a bug in the old Visual Composer plugin that prevents users updating via the theme.
After you update the theme, you have to delete the old Visual Composer plugin on your Plugins page first. Once you delete it, you will see a notification message to install the new one that came bundled with the theme.
Thank you for your reply. Unfortunately it’s still not working.
I deleted the theme and the plug ins and all the demo content. Downloaded the theme again as explained by you and reinstalled the plug ins. It says visual composer 4.12 is running but there are no tools at all.
I used to get the visual composer icon at the top of a page in the toolbar section. That icon is no longer there and I can’t switch to visual composer mode on the live website either. There is no way to edit the home page. What am I doing wrong?
I am so sorry Wyde… I found my problem. I didn’t realise that all the access rights were turned off by default in the role manager. Seems like it’s now working again.
Great job! Happy to hear that it has been resolved 
URGENT: Hi, the page loader animation is stuck on my site, it does not load the actual pages and when it does, it’s slowing down the performance of my site and makes it super slow. We tried to add your code in the advanced area to remove it but it just breaks the entire site. How can we permanently remove it? We are afraid of changing the theme and loosing all of our settings if we do, and we will have a huge promotion tomorrow that will result in a huge spike in visits, we need to use a faster theme or remove the loading animation immediately.
Please make sure the code are correct. The code should start with < style > and end with </ style > without < pre >
If it still doesn’t work, please PM me your site URL -> https://themeforest.net/user/wyde#contact
Also, to improve the page load speed, please install a cache plugin such as W3 Total Cache, it can improve your server performance and reduce the download times.
Hi:
I would like to buy the VELA theme, but I just want to make sure that it is compatible with WPML translation plugin.
My site´s default language will be spanish but I want to have the english version of it aswell.
Can you confirm?
Thanks. Giselle
Hi,
Thanks for interesting in our theme!
Yes sure, this theme is compatible with WPML plugin.
hey i need your help with the portfolio please,
the filter categories doesn’t work
www.sinay-graphics.com/wp-admin WP User: SinayGraphics WP Pass: lKD0_UkDA&3nTe
Your portfolio category slugs are now invalid so the filter doesn’t work.
You should set the category slug as a URL friendly, see more about WordPress slug -> https://codex.wordpress.org/Glossary#Slug
To edit it, go to Portfolios -> Portfolio Categories, select your categories one by one then click on Quick Edit to edit the Slug.
Please note: All comments are public, please do not post your username and password here. In the future, please PM me -> https://themeforest.net/user/wyde#contact
Hi, everything was working fine for my website newcastlesecurity.com.au/2013 and then recently a couple days ago, the wordpress is not working… i can’t login to the admin panel and it brings me to the old site, not the vela site.
Can you please take a look and tell me whats going on… i checked the FTP and all the files are there for the /2013 folder (where vela is intsalled)
Thanks.
the wordpress login is not working for i renamed plugins folder and renamed theme… nothing is working… the old website is showing (the new site with vela is supposed to be showing newcastlesecurity.com.au/2013 )
Hi,
This is a server issue so I couldn’t handle this. Maybe, it’s because your DNS settings or try checking .htaccess to see if there was something wrong. If you couldn’t access those configurations, you should contact your webhost admin.
I have two rows in VC that I’ve given an ID to, and placed #anchors in my menu. One works great. The anchor that is near my slider at the top of the page returns the page to the very top instead of to that row.
I suppose this one is in the first menu item. If you’ve an anchor in the first menu item, it always scrolls to the top of the page since the first menu should be the first section on page when working on One Page. This is on purpose. If not please PM me your site URL -> https://themeforest.net/user/wyde#contact
Okay thanks. I didn’t want a link to the first section as the logo links to the main page. I’ve added another home link to the top of the menu and hidden with CSS. Thanks!
Great job!
Hi
Can v use all this 5 pages, is this multi domain
You can use all 5 demos but for only one website and one domain.
1 regular license is available for only one website/domain. If you’d like to use it on multi domain you will need to purchase one more license.
See more on license details -> https://themeforest.net/licenses/standard
Wht is the best price
Vich one is best out all 3 websites u have
Personally, I prefer the Overlap theme to the others. The Overlap theme comes with almost features of the other themes we have. It’s now the latest theme and all bugs that found in the old themes have been fixed so it’s better than other old themes for sure.
Thanks for you help to previous questions.
Is there a way to put in place a custom graphic for the loading animation?
Where would that be in the theme files?
You can add it in your child theme.
1. Install and activate your vela child theme.
2. Navigate to Appearance -> Editor to edit the Vela Child.
3. Add the below code to Theme Functions (functions.php):
function vela_page_loader(){
return '<div id="loading-animation"><img src="https://www.google.com/logos/doodles/2016/2016-doodle-fruit-games-day-2-5749930065920000-hp.gif" /></div>';
}
add_filter('wyde_page_loader', 'vela_page_loader');