Forum Replies Created
-
AuthorPosts
-
Hey!
Yes wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesprogressbar.php – in replace:
"subtype" => AviaHtmlHelper::number_array(0,100,5)
with
"subtype" => AviaHtmlHelper::number_array(0,100,1)
We’ll change this in the next version.
Best regards,
Peter
You can use the title or the description field. It depends where you want to add the icon. If you just want to use a simple link use the title (or Mega Menu column Title) field.
You can use following code to sort it alphabetical – insert it at the bottom of functions.php:
function custom_post_grid_query( $query, $params ) {
$query['orderby'] = 'title';
$query['order'] = 'ASC';
return $query;
}
add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);A search field just for the portfolio entries is not possible atm.
May 1, 2013 at 6:38 am in reply to: Is it possible to create two completely seperate portfolios? #116113I just noticed that Kriesi uses the function get_previous_post/get_next_post functions for the next/previous links. Unfortunately these functions rely on the get_adjacent_post() function in wp-includeslink-template.php which does not support custom taxonomies (like portfolio entries, etc.) yet. It just supports standard posts and categories if you want to select posts from the same category. So for now this won’t be possible but you can add it to the feature request list: https://kriesi.at/support/topic/enfold-feature-requests
A workaround would be to use a plugin from here: http://wordpress.stackexchange.com/questions/8058/next-post-link-on-custom-taxonomy and to replace the get_previous_post/get_next_post function calls in functions-enfold.php:
$entries['prev'] = get_previous_post($same_category);
$entries['next'] = get_next_post($same_category);with a custom next/previous page function. I guess we need to wait for WP3.7 – then the next/previous page functions should also support custom taxonomies: http://core.trac.wordpress.org/ticket/17807
Afaik not because fontello.com ( http://fontello.com/ ) does not offer a icon set which contains numbers and we use this service for the icon font. However you can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/page/2
1) Yes, just add a blog element to your home page (you can select your home page on the theme options page):
2) Tbh I’d really avoid to put the entire content of a post (including comment form, etc.) on the front/home page. It will very likely harm your search ranking/seo and it is very uncommon (thus will probably irritate users). If you still want to hire one you can try: https://codeable.io/ or http://www.freelancer.com/
Hi!
Yes, Kriesi will very likely release an update on Friday (WooCommerce support, etc.) – he’s on vacation afterwards (for one week) and then we’ll start to implement the ajax portfolio, etc.
Best regards,
Peter
Hey!
Great :)
Regards,
Peter
May 1, 2013 at 5:04 am in reply to: Is it possible to have a full screen picture with text and a link #116302No, afaik this is not doable. You can canfigure the page styling options like:
This will hide the sidebar, the header & the entire footer. You’ll still see the menu though. You could hide it with css code but the user would still be able to see all links in the source code.
May 1, 2013 at 5:01 am in reply to: How to put fullwidth easy slider background image "Full view"? #116438Hey!
Thanks NaRanJiTo78 for helping us out :)
Regards,
Peter
You can add html code into the menu title/menu description field. If you want to add an image to the title just insert a img tag into the title field:
If you want to insert an icon use following code:
An overview (unicodes) can be found here: http://www.entypo.com/characters/
Hi!
Thanks jwferne for the hint :)
Regards,
Peter
Hi!
The style switcher is not included in the theme files and it’s just used on the demo page to demonstrate some of the style options. We don’t distribute it because it requires some work to implement it and causes invalid html code.
Best regards,
Peter
Hi!
Do you use a custom template for the post type? If yes please deactivate/delete it otherwise it can conflict with the template builder.
Regards,
Peter
Hi!
You can add the widget into the “Displayed Everywhere” widget area and use: http://wordpress.org/extend/plugins/widget-logic/ and the is_404() conditional to display the widget on the 404 page only.
Best regards,
Peter
Yes in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php replace:
array(
"name" => __("Gallery Columns", 'avia_framework' ),
"desc" => __("Choose the column count of your Gallery", 'avia_framework' ),
"id" => "columns",
"type" => "select",
"std" => "5",
"subtype" => AviaHtmlHelper::number_array(1,12,1)
),with
array(
"name" => __("Gallery Columns", 'avia_framework' ),
"desc" => __("Choose the column count of your Gallery", 'avia_framework' ),
"id" => "columns",
"type" => "select",
"std" => "9",
"subtype" => AviaHtmlHelper::number_array(1,12,1)
),Hey!
I marked the thread for Devin.
Regards,
Peter
Yes, insert following code into the chick css field and adjust the font size value:
h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
h5 { font-size: 16px; line-height: 1.1em; } /*17*/
h6 { font-size: 14px; line-height: 1.1em; }Hey!
This thread: https://kriesi.at/support/topic/get-the-latest-portfoilio-entries-in-content-element-portfolio-raster#post-107920 should answer your question :)
Best regards,
Peter
We’ll fix both issues in the next version. For now:
1) Open up single.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));
2) In includes/loop-index.php replace:
echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span>')." ";
with:
echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
1) You can remove the padding around the gallery images with:
#top div .avia-gallery img {
padding: 0;
}– insert it into the quick css field.
2) Atm it is not possible but we’ll include this feature in the next version: http://www.clipular.com/c?5381085=vHkdVz2Rg3GKID3-xWc7zx69Jww&f=.png – the new option allows you to deactivate the links, to activate the lightbox or to open the images in a new (or the same) browser tab/window.
3) The image size is controlled by the columns setting.
No, this shouldn’t happen. You can loose your theme settings though because Kriesi saves the settings with the theme name. If the child theme name is different the child theme will create a new, different option set.
I’m sorry but unfortunately this mod requires a lot of work (and testing) and it’s beyond the scope of our support forum. I can only show you the starting point – depending on your coding skills you can try to implement the Revolution slider by yourself or hire a freelancer for this job. Starting point: the LayerSlider implementation code can be found in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesslideshow_layerslider.php and in the wp-contentthemesenfoldconfig-layerslider folder.
Hey!
No, a youtube icon is not included atm. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests
Best regards,
Peter
April 30, 2013 at 5:28 am in reply to: Get the latest portfoilio entries in Content Element "Portfolio Raster" #116337Add following code to functions.php if you want to reverse the order of the portfolio query:
function custom_post_grid_query( $query, $params ) {
$query['orderby'] = 'date';
$query['order'] = 'DESC';
return $query;
}
add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);DESC stands for descending order, use ASC for an ascending order.
1) Open up wp-contentthemeschoicesincludeshelper-post-format.php – at the very top you’ll see several filter calls like:
add_filter( 'post-format-standard', 'avia_default_title_filter', 10, 1 );
If you want to modify the filter (eg use another, custom filter funtion instead) insert following code into your child theme functions.php:
remove_filter( 'post-format-standard', 'avia_default_title_filter', 10, 1 );
(actually its the same code but you need to replace add_ with remove_).
Now you can call a custom function. So add following code to the functions.php file:
add_filter( 'post-format-standard', 'avia_custom_title_filter', 10, 1 );
and duplicate the avia_default_title_filter() function and rename it to avia_custom_title_filter():
function avia_default_title_filter($current_post)
{
$output = "";
//$output .= "<h2 class='post-title ". avia_offset_class('meta', false). "'>";
$output .= "<h2 class='post-title'>";
$output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
$output .= " <span class='post-format-icon minor-meta'></span>";
$output .= " </a>";
$output .= "</h2>";
$current_post['title'] = $output;
return $current_post;
}Now you can modify it and overwrite/modify the default content.
Hey!
huanhui if you need additional help just let us know.
Regards,
Peter
Hey!
Great, glad I could help you.
Best regards,
Peter
I’m not sure which icons you mean. If you can edit the html source code directly you can wrap a href element around the icons ( http://www.w3schools.com/tags/att_a_href.asp ). If not, you can’t make them clickable without the advanced editor.
Hey!
Unfortunately the comment form, etc. is not supported on the blog page. This would require a major rewrite of the blog & post templates. There’s a blog/archive page which lists all entries and a single post page which displays the comment form and all functions which use the is_single() conditional (like your social icons, etc.).
Regards,
Peter
-
AuthorPosts