Forum Replies Created

Viewing 30 posts - 4,081 through 4,110 (of 9,352 total)
  • Author
    Posts
  • in reply to: Please contribute and translate Enfold #251457

    Hi!

    Enfold is the first theme which we optimized for rtl languages. You can see i.e a Hebrew rtl website here: http://www.snnlaw.co.il/

    Best regards,
    Peter

    in reply to: Theme Probleme nach Update WP 3.8.2 #251456

    Hey!

    Nein, die Einstellungen sollten nicht gelöscht werden. Wir haben aber einige neue Einstellungen hinzugefügt (Header Settings, etc.) und diese sollte man nach dem Update konfigurieren.

    Cheers!
    Peter

    in reply to: Layer Slider Delays – initial load #251454

    Hi!

    Ok, we’ll close the thread for now. Feel free to open a new thread if you need help.

    Regards,
    Peter

    in reply to: Image issues #251452

    Hi!

    If LayerSlider doesn’t work for you I recommend to try Revolution Slider: http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380. We added a “Fullwidth Revolution Slider” element to the template builder and you can use it like the LayerSlider script.

    Regards,
    Peter

    in reply to: Google Maps API multiple times on the page #251450

    Hey!

    You can also try this code:

    
    add_action('after_setup_theme','avia_deactivate_google_api',10);
    function avia_deactivate_google_api()
    {
        global $avia_config;
        $avia_config['g_maps_widget_active'] = 1;
    }
    

    Best regards,
    Peter

    in reply to: Video Media Element does not display YouTube Videos #251447

    Hey!

    Did you try if the video link works with the standard wordpress embed sgortcode ( http://codex.wordpress.org/Embeds )? Please create a textblock and insert the youtube link into it. Maybe you need to wrap it into the embed shortcode like:

    
    [embed width="123" height="456"] http://www.youtube.com/watch?v=fYPBgGi180Q [/embed]
    

    Regards,
    Peter

    in reply to: Posts not display after woocommerce product grid #251445

    Hi!

    Please create us an admin account and post the login credentials as private reply – we’ll look into it.

    Best regards,
    Peter

    in reply to: Enfold WPML upload images #251087

    Hi!

    Maybe the php memory limit is too low. Please increase the limit to 128M (128 megabyte). At the moment it’s set to 64M. For more information refer to http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/ and http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Cheers!
    Peter

    Hi adrianwackernah!

    Derzeit is kein flexibles Google Map Element in Planung, da die meisten Benützer nur ein “Fullwidth Map” Element wollten und keine Nachfrage nach einer Anpassung bzgl der Weite bestand (soweit ich weiß ist dies der erste Request). Ihr könnt aber gerne hier: https://kriesi.at/support/enfold-feature-requests/ einen Feature Request einbringen und wenn genügend Benützer dafür abstimmen, dann bauen wir es ein. Alternativ könnt ihr ein Plugin wie: http://wordpress.org/plugins/wp-google-maps/ verwenden, welches mittels Shortcodes arbeitet und die Weite flexibel anpassen kann.

    Best regards,
    Peter

    in reply to: UberMenu Integration #250960

    Hey!

    Please ask the plugin author if (and how) you can customize the styling of the Ubermenu plugin.

    Best regards,
    Peter

    Hey!

    Great :)

    Cheers!
    Peter

    in reply to: Forum feature formatting issue #250958

    Hey!

    I’m pretty sure you can’t get http://hackjacket.staging.wpengine.com/bug-list/ (hosted on WPengine) because wordpress needs some slugs to parse the url. However you can try to change the slugs on the forum option page (Settings > Forums and scroll down to the “Forum Root Slug” options).

    Best regards,
    Peter

    in reply to: Blog categories highlighted on the sidebar #250954

    Hey!

    This is not possible without additional code. You can try to use the code someone posted here: http://www.sk23.co.uk/code-snippets/php/highlight-current-post-category-in-wordpress-categories-widget-using-jquery-php/ . In single.php replace:

    
    get_header();
    

    with

    
    get_header();
    $post_categories = wp_get_post_categories(get_the_ID()); 
    $script_out = '';
    
    foreach($post_categories as $c):
        $cat = get_category( $c );
        $script_out .= "jQuery('.cat-item-".$cat->cat_ID."').addClass('current-cat');";
    endforeach;
    
    echo '<script>'.$script_out.'</script>';
    
    

    and then you can use the current-cat class to highlight the current category like:

    
    #top #wrap_all .current-cat{ color: #ff0000; }
    

    Cheers!
    Peter

    in reply to: edit text on password protected page #250952

    Hi!

    I think they changed the code with WP3.8. Please try this code instead:

    
    add_filter( 'the_password_form', 'custom_password_form' );
    function custom_password_form() {
    global $post;
    $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID );
    $o = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" class="post-password-form" method="post">' . __( "You can write your own text here" ) . '
    <label for="' . $label . '">' . __( "Password:" ) . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" /><input type="submit" name="Submit" value="' . esc_attr__( "Submit" ) . '" />
    </form>
    ';
    return $o;
    }
    

    and replace “You can write your own text here” with your custom text. Ref: http://forum.wpde.org/allgemeines/124403-wp-3-8-passwort-text-aendern.html

    Best regards,
    Peter

    in reply to: Turning Off Image Link Hover #250950

    Hi!

    You just need to add the “noLightbox” class to the image links – i.e. replace:

    
    <a href="/domestic-hardwood-sizing-and-pricing" class="price-page-icon"><img class="" alt="" src="/wp-content/uploads/2014/04/1396916310_North_America.png"></a>
    

    with

    
    <a href="/domestic-hardwood-sizing-and-pricing" class="price-page-icon noLightbox"><img class="" alt="" src="/wp-content/uploads/2014/04/1396916310_North_America.png"></a>
    

    Cheers!
    Peter

    in reply to: Mega Menu Doesn't Create Rows #250948

    Hey CobbyNelson!

    Please view this tutorial video: https://vimeo.com/67651241 – if it doesn’t answer all of your questions please give us more details about the issues.

    Regards,
    Peter

    in reply to: Menu creation disappear when activating Enfold #250947

    Hi!

    Please create us an admin account and post the login credentials as private reply.

    Best regards,
    Peter

    in reply to: Remove date #250944

    Hey!

    Unfortunately you can’t remove the code with css. CSS Code just hides the date for the user but Google and other search engines can still read it from the html code. If you want to remove the date completely you must modify the php template (like Ismael suggested here: https://kriesi.at/support/topic/remove-date/#post-250669 ). If you don’t want to modify the template every time you update the theme I recommend to place the modified loop-index.php into a child theme (complete path is wp-content/themes/YOURCHILDTHEME/includes/loop-index.php).

    Cheers!
    Peter

    in reply to: header displaced after update #250943

    Hey!

    You can add a margin-top to the menu like:

    
    #header_main_alternate {
    margin-top: 20px;
    }
    

    Cheers!
    Peter

    in reply to: blurry images in portfolio Raster #250941

    Hey!

    Great, you can also try to use this plugin: http://wordpress.org/plugins/wp-resized-image-quality/ to improve the thumbnail quality.
    Cheers!
    Peter

    in reply to: Product Grid Woocommerce / Custom Sorting Filters #250938

    Hi!

    You just need to copy the entire avia_woocommerce_frontend_search_params function (located in /config-woocommerce/config.php) into your child theme functions.php file. Then modify the function code there. The child theme file will be loaded first and your custom sort function will overwrite the code in the parent theme files because we wrapped all functions into a function_exists() if statement. If you need help with the code implementation please hire a freelancer. I recommend a platform like: http://studio.envato.com/

    Best regards,
    Peter

    in reply to: [Enfold + WPML] Menu language switcher #250934

    Hi morgantar!

    Since 2.6 Enfold will add flags to the main menu. If you want to display the language shortcode instead of the flag images insert this code into your child theme functions.php file:

    
        if(!function_exists('avia_append_lang_flags'))
        {
            //first append search item to main menu
            add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            add_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
    
            function avia_append_lang_flags( $items, $args )
            {
                if ((is_object($args) && $args->theme_location == 'avia'))
                {
                    global $avia_config, $sitepress;
    
                    if(empty($avia_config['wpml_language_menu_position'])) $avia_config['wpml_language_menu_position'] = apply_filters('avf_wpml_language_switcher_position', 'main_menu');
                    if($avia_config['wpml_language_menu_position'] != 'main_menu') return $items;
    
                    $languages = icl_get_languages('skip_missing=0&orderby=custom');
    
                    if(is_array($languages))
                    {
                        foreach($languages as $lang)
                        {
                            $currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
    
                            if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
    
                            $items .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>";
                            $items .= $lang['language_code'];
                            $items .= "</a></li>";
                        }
                    }
                }
                return $items;
            }
        }
    

    (alternatively insert the code at the very top of enfold/functions.php after the <?php tag). You can also replace $lang[‘language_code’] with

    $lang[‘translated_name’]

    or

    $lang[‘native_name’]

    if you want to display the entire language name (and not just the shortcode).

    Best regards,
    Peter

    • This reply was modified 11 years, 3 months ago by Dude.
    in reply to: Theme Probleme nach Update WP 3.8.2 #250932

    Hi!

    1) Ich empfehle die neueste Version des themes von themeforest.net herunterzuladen. Anschließend die zip Datei entpacken und den Theme Ordner mittels ftp auf den Server übertragen. Ein Tutorial Video findet sich hier: https://vimeo.com/channels/aviathemes/67209750

    2) Wenn der “Warning: uasort(): Array was modified” Fehler dann noch immer auftritt, empfehle ich folgenden Code in die theme functions.php einzufügen:

    
    error_reporting(0);
    

    Dieser verhindert, dass der Server Warnungen & Fehlermeldungen der WordPress PHP Dateien ausgibt.

    Best regards,
    Peter

    in reply to: Shop overview / Category and Tag #250931

    Hi RalphThiele!

    I don’t understand the question – maybe you can post it in German?

    Best regards,
    Peter

    in reply to: Special Heading – Custom Css Class – Not Saving #250925

    Hey!

    I can’t save a custom css class for special headings . I add the class name, hit save, and after i update the page its gone.

    Yes, Kriesi is aware of the bug and will fix it with the next theme update.

    Cheers!
    Peter

    in reply to: Featured image on blog grid not appearing #250924

    Hey!

    I think this is a worpress bug because several other users reported it in the official forum too: http://wordpress.org/support/topic/images-will-not-post-in-38-writing-size-as-1px-by-1px

    I recommend to check if you can reproduce the upload issue with the default wordpress theme (TwentyThirteen or TwentyFourteen) too. If yes it’s definitely a wordpress core or server configuration issue which we can’t fix with the theme code.

    Cheers!
    Peter

    in reply to: entry with sidebar #250920

    Hey!

    I fixed it. It seems like we can’t use the avia_layout_class() return value directly for the haystack of the strpos() function. I now replaced:

    
    $size = strpos($blog_style, 'big') ? strpos(avia_layout_class( 'main' , false), 'sidebar') ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
    

    with:

    
    $layout = avia_layout_class( 'main' , false);
    $size = strpos($blog_style, 'big') ? (strpos($layout, 'sidebar') !== false) ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
    

    and it started to work. I’ll ask Kriesi to patch it with the next update.

    Cheers!
    Peter

    in reply to: Creating a resource section #250916

    Hi squard!

    You can hide the “Types” sort link with CSS Code if necessary. Just insert:

    
    .type_sort_button, .type_sort_sep{
    display: none !important;
    }
    

    into the quick css field. You can replace “type” with the category slug of your “Type” category if necessary.

    Unfortunately you can’t deactivate the animation of the masonry grid – it’s a fundamental part of the sort/filter script.

    Cheers!
    Peter

    in reply to: Add Read More to Latest NewsWidget #250915

    Hi!

    Are you sure the password is correct? I tried it but I get an error message: “The password you entered for the username choa is incorrect”.

    Best regards,
    Peter

    in reply to: Duplicate Posts Using the Masonry Layout #250914

    Hey!

    Please create us an admin account and post the login credentials as private reply. If I can find the problem I’ll fix it; otherwise I’ll ask Kriesi to look into it.

    Cheers!
    Peter

Viewing 30 posts - 4,081 through 4,110 (of 9,352 total)