Forum Replies Created

Viewing 30 posts - 7,981 through 8,010 (of 9,352 total)
  • Author
    Posts
  • Hi!

    I can’t reproduce this bug on my test servers. Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.

    Regards,

    Peter

    in reply to: Header Settings #131911

    The blog page does currently not support this option. Please open up index.php and delete

    if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));

    in reply to: Remove comments and change language #131859

    1) Yes – go to “Settings > Discussions” and deselect the “Allow people to post comments on new articles” checkbox.

    2) Yes – please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translate the missing text strings. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    in reply to: Related Posts #131536

    Hallo,

    soweit ich weiß sind die related posts schon zufällig angeordnet. Möglicherweise musst du erst ein paar Einträge mit den gleichen Tags versehen, damit dieser Effekt sichtbar wird. Derzeit verwendet Kriesi in wp-contentthemesenfoldincludesrelated-posts.php folgende Abfrage:

    $my_query = get_posts(
    array(
    'tag__in' => $tag_ids,
    'post_type' => get_post_type($this_id),
    'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
    'orderby'=>'rand',
    'post__not_in' => array($this_id))
    );

    um die related posts darzustellen. Der ‘orderby’=>’rand’, Parameter stellt dabei sicher, dass diese Posts in zufälliger Reihenfolge angezeigt werden.

    in reply to: Show youtube videos in color section like in a slider #131718

    We use the standard wordpress oembed api: http://codex.wordpress.org/Embeds which does currently not support additional parameters (like youtube player controls customization, etc.). I’d suggest to embed the iframe with the youtube video directly. You can use this generator: https://developers.google.com/youtube/youtube_player_demo to create the right iframe code.

    in reply to: Where to change google webfont font replacement? #131448

    I noticed that you maybe need to add the code at the very top of functions.php. Replace

    <?php

    global $avia_config;

    with

    <?php

    global $avia_config;

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,600&subset=latin-ext';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext';
    return $fonts;
    }

    and it should work. Please don’t forget to save the theme options again.

    2) The animations don’t work because some files are missing on your server – please re-upload/re-install the theme. Chrome reports

    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/prettyPhoto/css/prettyPhoto.css?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/mediaelement/mediaelement-and-player.min.js?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/avia-compat.js?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/avia.js?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/shortcodes.js?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/prettyPhoto/js/jquery.prettyPhoto.js?ver=3.1.5

    Hi!

    Afaik this is not easily possible because these icons are probably missing in the font file but I’ll mark this thread for Kriesi.

    Regards,

    Peter

    in reply to: Navigation main menu how to target #131728

    Hi,

    1) You can use following code – insert it into the quick css field

    .social_header .main_menu ul:first-child > li a {
    font-size: 16px;
    }

    2) That’s imo not easily possible if you want a responsive website/menu. One solution would be to add a margin/padding to the link items or to increase the width of the main menu – however both solutions would break the responsive design.

    3) You can use following code

    .social_header .main_menu ul:first-child > li a {
    letter-spacing: 0.2em;
    }

    in reply to: Setting Navigation Text Color, Setting Font Size #131358

    1) Use following css code to change the bg color of the top navigation bar

    .header_color .container_wrap_meta{
    background: #f8f8f8;
    }

    2) For the link color use

    .header_color .sub_menu>ul>li>a{
    color: #f8f8f8;
    }

    3) That’s not possible. If the logo is transparent you’ll always see the bg color of the container behind the logo (eg by default white like here: http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/ )

    4) You can change the link bg color & the dropdown bg color with

    .bottom_nav_header.social_header .main_menu ul:first-child > li a, #header_main_alternate, .bottom_nav_header.social_header .main_menu ul:first-child {
    background: #f8f8f8;
    }

    5) Change the color with

    .header_color .main_menu ul:first-child > li a:hover, .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a, .header_color .main_menu ul:first-child > li.active-parent-item > a{
    color: #f8f8f8;
    }

    for the selected/active item and

    .bottom_nav_header.social_header .main_menu ul:first-child > li a{
    color: #f8f8f8;
    }

    for all other menu items.

    in reply to: Blog post vs entries from custom taxonomies? #131588

    The “entries from custom taxonomies” setting makes sense if you registered one or more custom taxonomies (eg by default Enfold registers the “Portfolio Entries” taxonomy). Then you can query posts from these taxonomies instead of the default posts/categories.

    Hi!

    You can add it to the feature request thread. If more user request it we’ll add it to the theme framework.

    Regards,

    Peter

    in reply to: Blog Grid won't conform to settings #131600

    Please don’t mix both things up. If you select a page as “blog” page (Enfold > general settings) this page will use a special blog template and it will ignore all “layout elements”, etc.

    The blog template will always use a grid of 3 columns and it will show the numbers of entries you selected on the “Settings > Reading page” (“Blog pages show at most”).

    If you want to display a customized blog (different number of columns, entries per page, etc.) deselect the “Blog” page (Enfold > general settings) and then this blog page will show your “Layout elements”.

    in reply to: Video wont show on site #131654

    If you get a php error (or “white screen of death”) please increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Please make sure you’re using the latest version of the theme (v1.8.4).

    in reply to: Layer Slider – Effects failure on basic design #131731

    You should be able to use a full width Revolution slider with the latest theme version (1.8.3 or 1.8.4). This post: https://kriesi.at/support/topic/fullwidth-in-showbiz-pro will help you. You can use the same css code/workflow to stretch the revolution slider.

    in reply to: Portfolio Grid #131260

    Hey!

    Solved. User modified the default portfolio post type and this modification broke the layout builder.

    Regards,

    Peter

    Hi,

    If you want to find out if it’s a theme related issue please deactivate Enfold and activate the default WordPress theme (twentytwelve theme). If the issue is not related to Enfold it’s a WPML plugin bug and you need to report it to the WPML devs.

    You can also try to deactivate the debug mode in wp-config.php to get rid of the php warning: http://codex.wordpress.org/Editing_wp-config.php#Debug

    in reply to: Activated Enfold, broke my site #131648

    Hi!

    Please read this thread: https://kriesi.at/support/topic/i-cant-install-it-1 – maybe it helps you too.

    Regards,

    Peter

    in reply to: HTML form code in promo box breaks things #131569

    Hi!

    You can try this plugin: http://wordpress.org/plugins/raw-html-snippets/ – it allows you to insert raw html code snippets anywhere you want to.

    Regards,

    Peter

    in reply to: Search icon not displaying in Chrome #130707

    Hey!

    I selected the wrong element. The li element has the id #menu-item-search and not the a href element :)

    Best regards,

    Peter

    in reply to: Fixed Cart #130654

    Hey!

    Can you post a link to your website please?

    Regards,

    Peter

    in reply to: Enfold 1.8.4 Layout Builder Problem #131614

    Hi!

    Please try to re-install the theme. Maybe one or more js files are damaged/corrupt.

    Regards,

    Peter

    in reply to: anyone created translation in greek language ? #131619

    Hi!

    Please post your final translation here: https://kriesi.at/support/topic/please-contribute-and-translate-enfold – it will help other users too :)

    Best regards,

    Peter

    in reply to: Category instead of Date #131631

    Replace

    $output .= "<div class='slide-meta-time'>" .get_the_time(get_option('date_format'), $the_id)."</div>";

    with

    $taxonomies  = get_object_taxonomies(get_post_type($the_id));
    $cats = '';
    $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);

    if(!empty($taxonomies))
    {
    foreach($taxonomies as $taxonomy)
    {
    if(!in_array($taxonomy, $excluded_taxonomies))
    {
    $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
    }
    }
    }

    if(!empty($cats))
    {
    $output .= "<div class='slide-meta-time'>";
    $output .= $cats;
    $output .= "</div>";
    }

    in reply to: Preview icon bug? #131638

    Hey!

    Can you post a link to a page where this issue occurs please?

    Regards,

    Peter

    in reply to: Only at the first page of my blog #128572

    Hi!

    Glad it works now :)

    Best regards,

    Peter

    in reply to: Can't find the content in the pulldown menu's #131677

    Hi!

    Which content do you mean? Please elaborate. Do you mean the dropdowns which allow you to select pages?

    Best regards,

    Peter

    in reply to: Expand text and Google Map #131757

    You can try this script: http://jedfoster.github.io/Readmore.js/

    Insert the compressed version. https://github.com/jedfoster/Readmore.js/blob/master/readmore.min.js at the bottom of enfold/js/avia.js. Then replace following code at the top of the file

    $(document).ready(function()
    {

    with

    $(document).ready(function()
    {

    $('.shortdescriptiontext').readmore({
    speed: 75,
    maxHeight: 500
    });

    and change the values if you want to. At least wrap your long text into a paragraph with the class “shortdescriptiontext”.

    <p class="shortdescriptiontext">
    My text....
    </p>

    in reply to: Advanced Layout Builder Not Working #131760

    Hi!

    Please try to follow the instructions here: https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help

    Regards,

    Peter

    in reply to: Alignment of Promo box and Testimonal box #131479

    Hi!

    Did you find a solution? I’m asking because the topic is marked as resolved.

    Regards,

    Peter

    in reply to: change background color for top heading section #129399

    Hi!

    Yes, please try to add following code into the quick css field

    .header_bg {
    opacity: 1 !important;
    }

    Best regards,

    Peter

Viewing 30 posts - 7,981 through 8,010 (of 9,352 total)