Forum Replies Created
-
AuthorPosts
-
1) Unfortunately this is not supported. You can display a title or title + excerpt. An excerpt text with link is not supported and would require a major rewrite of the portfolio widget.
2) For updating, you just download the theme files from your downloads on themeforest. The main package will have the theme docs, license and other files inside of it as well as the actual sentence.zip file that can be uploaded through the wordpress admin as the actual theme.
You can just upload that zip using the wordpress admin unless your setup doesn’t allow writing over the files. In that case, you’ll need to upload the theme files via FTP.
If you’ve made any changes to the actual theme files, make a backup of all those files locally. After you update, you can check the version.txt file that was in the main package you downloaded from themeforest and see if any of your modified files were changed in the updates. If so, you’ll need to re-add those changes individual instead of just writing over the entire file.
Hey!
Use:
style="font-size: 13px"
instead. Afaik font size=”” is outdated.
Best regards,
Peter
Yes, use following code:
function add_login_logout_link($items, $args)
{
if(is_user_logged_in() && $args->theme_location == 'avia2')
{
$newitems = $items;
$newitems .= '<li><a title="'.__('Logout','avia_framework').'" href="'. wp_logout_url(get_permalink()) .'">'.__('Logout','avia_framework').'</a></li>';
}
else if($args->theme_location == 'avia2')
{
$newitems = $items;
$newitems .= '<li><a title="'.__('Login','avia_framework').'" href="'. wp_login_url(get_permalink()) .'">'.__('Login','avia_framework').'</a></li>';
}else{
$newitems .= $items;
}
return $newitems;
}
add_filter('wp_nav_menu_items', 'add_login_logout_link', 5, 2);Yes, Kriesi will look into it when he’s back. I can’t test the css on IOs devices and we need to wait for him.
Re 2) I still can’t reproduce the problem. I just tested it with the portfolio_entries taxonomy (by deleting the taxonomy-portfolio:entries.php) and the standard archive showed all portfolio entries of the selected term. Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I need to debug this issue first hand…
1) Kriesi forgot to update the version number in style.css – so it’s still 1.3.1.
2) No, please don’t re-import the dummy data.
3) We have no influence on the themeforest notification system – maybe it takes some time and you’ll get the notification with the next update.
4) For now you should be able to use the rss button to subscribe the rss feed. Kriesi will redesign the website when he comes back (he’s on a trip for a week) and then we’ll use the new bbpress forum plugin which also supports email notifications.
Insert following code at the bottom of functions.php:
function add_login_logout_link($items, $args)
{
if(is_user_logged_in() && $args->theme_location == 'avia2')
{
$newitems = '<li><a title="'.__('Logout','avia_framework').'" href="'. wp_logout_url(get_permalink()) .'">'.__('Logout','avia_framework').'</a></li>';
$newitems .= $items;
}
else if($args->theme_location == 'avia2')
{
$newitems = '<li><a title="'.__('Login','avia_framework').'" href="'. wp_login_url(get_permalink()) .'">'.__('Login','avia_framework').'</a></li>';
$newitems .= $items;
}else{
$newitems .= $items;
}
return $newitems;
}
add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);You maybe need to replace “avia2” with “avia” or “avia3” (depends on the menu you want to use for the login/logout links).
May 4, 2013 at 10:48 am in reply to: Template Builder missing in Enfold Theme. Please help me find it. #117287Please watch the videos here: https://vimeo.com/channels/aviathemes – they’ll show you how to use the template builder (now called advanced layout builder/editor). Enfold introduced a new layout builder which is quite different from the Propulsion Template Builder.
Hi!
Just purchase it on http://themeforest.net . You’ll get a second license certificate and they’ll add a second download of Enfold to your items list.
Best regards,
Peter
1) Yes we changed the category listing in 1.4 because some users requested custom taxonomy support and this would not be possible with the get_categories function (which just works with posts). If you don’t want to display certain taxonomies/terms you can use the avf_exclude_taxonomies filter to remove these taxonomies. Add following code to the bottom of functions.php:
add_filter('avf_exclude_taxonomies', 'avia_exclude_tax', 10, 3);
function avia_exclude_tax($tax,$post_type,$id){
$tax[] = 'mytaxonomy';
return $tax;
}Instead of “mytaxonomy” insert the name of the taxonomy you want to exclude. If you want to exclude several taxonomies use:
$tax[] = 'mytaxonomy';
$tax[] = 'mysecondtaxonomy';2) I tested the archive page and it works just fine for me. Please make sure that you updated all theme files (especially archive.php and the config-templatebuilder folder).
3) The new elements won’t work without WooCommerce. Please activate it and the elements will appear.
May 4, 2013 at 9:39 am in reply to: Update To 1.4 Shows 1.3.1 In Style Sheet And Child Theme Warning #117176Hey!
1) Yes, Kriesi forgot to update the version number – we’ll fix this in the next version (1.4.1 :D ).
2) You can update the version number of the child theme – replace 1.0 (in style.css) with 1.4.
Best regards,
Peter
Please try to flush the permalink rules. Go to Settings > Permalinks and hit the “save” button on the option page. Then reload the permalinks settings page. This will force WP to rewrite the htacess file and to rewrite the rules in the database. If it still doesn’t work try to add the rewrite rules to the htaccess file manually (set the permission to 0444 and WP will output the rewrite rules on the permalinks settings page because it can’t modify the htaccess file).
Open up index.php and replace:
echo avia_title(array('title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
with
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
We’ll fix it in the next version.
Afaik this is a bug with the google maps iframes and tabs (see https://kriesi.at/support/topic/google-map-issue-with-shortcode-tabs ). I guess the only solution is to use the map in the first tab (the tab content is not hidden by default) or to use it outside of tabs. I’ll mark this thread for Kriesi.
You can use the avf_google_heading_font and avf_google_content_font filter to add a new font. Insert following code at the bottom of functions.php:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans';
return $fonts;
}and replace “Open Sans” (on both sides) with your cyrillic font. If you want to add several weights use the write the font name like.
$fonts['Open Sans'] = 'Open Sans:400,600';
and Enfold will load the 400 & 600 font weight.
Afterwards go to the theme options panel and select the new font. Then save the settings.
Hi!
Can you post a link to the page please? I’ll investigate the css code with the IE developer console and hopefully we’ll find the culprit.
Best regards,
Peter
Hi!
It’s not possible to deactivate this effect on an indivdual basis but you can remove it completely. Open up enfold/js/avia.js and delete
avia_hover_effect();
Regards,
Peter
Hi!
Maybe your server blocks the file upload. Try to unpack the zip file and use ftp to upload the enfold folder into the wp-content/themes/ directory.
Best regards,
Peter
I guess the file you download from themeforest is not actually the theme.zip. Its the overall package that includes the license, psd, documentation and then then enfold.zip file that is the actual theme file.
So first unzip the file you’ve downloaded from themeforest and then you can select the enfold.zip inside of it to upload to wordpress.
See: http://www.screenr.com/HoRs
Some days ago Envato added a new download option which allows you to download the theme files only (which you can install directly):
If you want to change “Blog” to a different text just rename the Blog page (Pages > View all, edit the blog page and enter a different title). If you want to change the “Blog” text to the post title on single post pages see: https://kriesi.at/support/topic/a-real-seo-problem-blog-post-title-should-be-h1-header#post-107390
I created a simple child theme for you: http://www.mediafire.com/?7r4payhwqdjeihh – just upload & install it. You can add your custom css code into style.css and your php code goes into functions.php.
Hi!
Please install the latest update (v1.4). It adds WooCommerce support and fixes various css issues – including the 1210px layout bug.
Best regards,
Peter
Hey!
Website of the user who requested the showcase thread: http://leanexpert.clickclickmarketing.com
Regards,
Peter
Hey!
Please install the latest update (v1.4). It adds WooCommerce support and fixes various css issues – including the 1210px layout bug.
Best regards,
Peter
I didn’t test it but you can try to generate your own font files with fontello: http://fontello.com/ and then replace the default files located in enfoldconfig-templatebuilderavia-template-builderassetsfonts with your custom files. Please make a backup of the old files because I’m not sure if it works out…
Hi!
Can you post a link to the slider please? Enfold comes with several sliders and we need to investigate & debug the issue first hand.
Best regards,
Peter
Hi!
I can reproduce the bug and I’ll submit a patch soon. Should be included in the next update. For now use another blog layout – the error only occurs with the “Grid Layout”.
Best regards,
Peter
Hi!
We added the functions_exist() checks and I expect the next update on Friday.
Best regards,
Peter
Hey!
Use following code to reposition the button – insert it into the quick css field:
a.pp_close {
top: -8px;
}Best regards,
Peter
Ok, it seems like we can’*t remove the filter :/
We’ll take plan B and add some functions_exists() checks to helper-post-format.php – then you should be able to create a modified version of all functions inside your child theme functions.php
-
AuthorPosts