Forum Replies Created

Viewing 30 posts - 9,211 through 9,240 (of 9,352 total)
  • Author
    Posts
  • in reply to: progress bars #116648

    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

    in reply to: Icons before the title menu #116557

    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.

    in reply to: Alphabetical and search function for portfolio? #116202

    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.

    I 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

    in reply to: Iconbox – Add Icon numbers #116665

    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

    in reply to: Full blog post with comments on home page #116250

    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/

    in reply to: Gallery Question(s) #116442

    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

    in reply to: Header Settings #116287

    Hey!

    Great :)

    Regards,

    Peter

    No, 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.

    Hey!

    Thanks NaRanJiTo78 for helping us out :)

    Regards,

    Peter

    in reply to: Icons before the title menu #116555

    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/

    in reply to: Center align on Advanced Layer Slider #116173

    Hi!

    Thanks jwferne for the hint :)

    Regards,

    Peter

    in reply to: How to enable the Style switcher like in the demo? #116769

    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

    in reply to: My page is displaying 2 sidebars #116138

    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

    in reply to: Add widget to error404.php page #116219

    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

    in reply to: media gallery columns #116170

    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)
    ),

    in reply to: Post image issue when migrating rom Broadscope theme #115655

    Hey!

    I marked the thread for Devin.

    Regards,

    Peter

    in reply to: Adjusting Font Sizes #116208

    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; }

    in reply to: Portfolio Order #116197
    in reply to: Header Settings #116285

    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> ');

    in reply to: Gallery Question(s) #116440

    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.

    in reply to: Enfold 1.3 setting up child theme #116017

    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.

    in reply to: Want to use Revolution Slider #116292

    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.

    in reply to: Where i can setup social icons?Don´t see it… #116049

    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

    Add 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.

    in reply to: Load helper-post-format.php from child theme #116363

    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.

    in reply to: some questions to adding contents #116119

    Hey!

    huanhui if you need additional help just let us know.

    Regards,

    Peter

    in reply to: MailChimp Submit Button #116155

    Hey!

    Great, glad I could help you.

    Best regards,

    Peter

    in reply to: linking Icons #116262

    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.

    in reply to: Full blog post with comments on home page #116248

    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

Viewing 30 posts - 9,211 through 9,240 (of 9,352 total)