Forum Replies Created

Viewing 30 posts - 4,231 through 4,260 (of 9,352 total)
  • Author
    Posts
  • in reply to: Section links recurring problem with position #247733

    Hey!

    I tagged this thread for Kriesi.

    Regards,
    Peter

    in reply to: Please contribute and translate Enfold #247731

    Hey!

    Yes, German is included. You can find the files in enfold\lang\. Search for de_DE.po to modify the German translation. You can use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to edit the files.

    Best regards,
    Peter

    in reply to: "My Account" styling and translation #247730

    Hi!

    If you can’t edit the po file(s) with Codestyling try to download wp-content/plugins/woocommerce/languages/formal/woocommerce-de_DE.po from your server and edit it with Poedit http://www.poedit.net/download.php . Then save the file and upload the po and mo files into the same directory and overwrite the existing files. Alternatively you can try to install: http://wordpress.org/plugins/woocommerce-de/ – maybe it gives you better results.

    Best regards,
    Peter

    in reply to: Deutsche Sprache aktivieren #247729

    Hi!

    Ok :)

    Best regards,
    Peter

    Hey Rustybucket!

    Please insert this code into the enfold functions.php file:

    
    /*
     * Make sure that the plugin adds the og meta tags, etc. on template builder pages
     */
    if(!function_exists('avia_wpseo_change_init_priority'))
    {
        function avia_wpseo_change_init_priority()
        {
            remove_action('template_redirect', 'wpseo_frontend_head_init', 999);
            add_action('template_redirect', 'wpseo_frontend_head_init', 9);
        }
    
        add_filter('init','avia_wpseo_change_init_priority', 20);
    }
    

    We’ll fix it with the next update.

    Regards,
    Peter

    Hi!

    You can overwrite the entire widget (class) with your child theme. Just copy the code from wp-content/themes/enfold/framework/php/class-framework-widgets.php into your child theme and modify the code there. If you want to register a new widget for a cpt/taxonomy use the code I posted here: https://kriesi.at/support/topic/latest-news-widget-show-custom-post-type/#post-239987 – note that you MUST place it in the child theme functions.php or it will not work.

    Best regards,
    Peter

    in reply to: Layer Slider WP does not work after update #247456

    Hey!

    It seems like some important files from the LayerSlider plugin are missing. The browser outputs some 404 – not found errors:

    
    Failed to load resource: the server responded with a status of 404 (Not Found) http://www.encanthadas.es/wordpress/wp-content/themes/enfold/config-layerslider/LayerSlider/css/layerslider.css?ver=4.6.5
    Failed to load resource: the server responded with a status of 404 (Not Found) http://www.encanthadas.es/wordpress/wp-content/themes/enfold/config-layerslider/LayerSlider/js/jquery-easing-1.3.js?ver=1.3.0
    Failed to load resource: the server responded with a status of 404 (Not Found) http://www.encanthadas.es/wordpress/wp-content/themes/enfold/config-layerslider/LayerSlider/js/layerslider.kreaturamedia.jquery.js?ver=4.6.5
    Failed to load resource: the server responded with a status of 404 (Not Found) http://www.encanthadas.es/wordpress/wp-content/themes/enfold/config-layerslider/LayerSlider/js/jquerytransit.js?ver=0.9.9
    Failed to load resource: the server responded with a status of 404 (Not Found) http://www.encanthadas.es/wordpress/wp-content/themes/enfold/config-layerslider/LayerSlider/js/layerslider.transitions.js?ver=4.6.5
    

    Please use ftp to check if the files exist on your server and if not please update/upload them manually.

    Regards,
    Peter

    in reply to: Restrict Breadcrumb Length #247450

    Hey Jason!

    You can try to use text-overflow: ellipsis; to restrict the length of the breadcrumb content. Use it like:

    
    .title_container .breadcrumb {
    max-width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    }
    

    and insert your breadcrumb width instead of 100px.

    Best regards,
    Peter

    in reply to: Conflict with BBPress? #247443
    in reply to: weird thing when on mobile #247441

    Hey!

    Seems like some stylesheets do not load properly. Please deactivate the cache plugin (especially the minify feature) and check if this solves the issue. If not go to Enfold > Theme Options and re-save the settings.

    Regards,
    Peter

    Hey!

    Unfortunately you must overwrite the entire file if you don’t want to modify the original avia.js of the parent theme. Otherwise the theme will still execute the code line of the parent theme avia.js and you won’t notice any difference. The child theme name is not important and won’t affect the custom avia.js.

    Best regards,
    Peter

    Hey!

    Yes – insert this code into the child theme functions.php file (or enfold/functions.php):

    
    add_filter('avf_form_from', 'avia_change_from', 10, 3);
    function avia_change_from($from,$new_post,$params){
    $from = ' (Email address hidden if logged out) ';
    return $from;
    }
    

    and replace (Email address hidden if logged out) with your custom sender email address.

    Best regards,
    Peter

    in reply to: Forum feature formatting issue #247402

    Hi DaveL77!

    Please try to re-save the theme options (Enfold > Theme options). The saving process forces Enfold to regenerate a dynamic stylesheet which may affect the bbpress stylings too. If this doesn’t solve the issue please post a link to your forum page and we’ll check why the styling isn’t correct.

    Best regards,
    Peter

    in reply to: Section links recurring problem with position #247400

    Hi basilicon!

    Please try to update to Enfold 2.6.2. Maybe the theme update fixes the issue.

    Regards,
    Peter

    in reply to: Portfolio: Breadcrumbs are displaying incorrectly #247399

    Hey!

    I tagged the thread for Kriesi. I’m pretty sure he can work something out for the next update. Maybe he can include a new option to set the “parent” page of a portfolio/post entry with a post meta field, etc.

    Best regards,
    Peter

    in reply to: Bilder werden im Portfolio nicht korrekt angezeigt #247354

    Hey!

    Wenn du das Originalbild anzeigen möchtest öffne bitte single-portfolio.php und ersetze:

    
    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    

    durch

    
    $avia_config['size'] = 'full';
    

    Cheers!
    Peter

    in reply to: Wie bekomme ich größere Produktbilder in Woocommerce #247353

    Hi adrianwackernah!

    Leider nein. Diese Anpassung erfordert ein neues Template für die Einzelproduktseite (bzw entsprechende Anpassungen mittels Hooks im Child Theme), da wir die Produktbilder innerhalb der Sidebar anzeigen. Um dein gewünschtes Layout zu erreichen müsste man zuerst die Produktbilder aus der Sidebar ziehen, oberhalb in ein neues Element für die Bilder einfügen und dieses Element entsprechend mit dem Inhalt darunter abstimmen (Weite, Höhe, Abstand, etc.), Dbzgl wende dich bitte an einen Freelancer/Programmierer, welcher euch ein Angebot für diese Anpassung legen kann,

    Regards,
    Peter

    in reply to: WordPress Premium?? #246925

    Hi Lukeduggleby!

    You can’t use Enfold with a wordpress.com account – please see http://en.support.wordpress.com/themes/adding-new-themes/
    If you want to use Enfold download the wordpress file from: http://wordpress.org/ and install wordpress on a server.

    Best regards,
    Peter

    in reply to: Page background color won't change #246924

    Hey Artinet!

    It seems like you edited http://www.artisan18.co.uk/wp-content/themes/enfold/css/custom.css – I recommend to download the custom.css file from your server and to remove the background-color code from this file.

    Cheers!
    Peter

    Hi!

    Yes, unfortunately the lightbox doesn’t support screenr videos. I’ll forward your findings to Kriesi.

    Regards,
    Peter

    in reply to: Default Layout Hook-up in CPT #246922

    Hey yummyrec!

    You probably need to modify the cpt templates of the Responsive Timetable Schedule plugin. I’m not familiar with the plugin and I can’t assist you with the customization but I recommend to use the wp-content/themes/enfold/single-portfolio.php and wp-content/themes/enfold/includes/loop-portfolio-single.php templates as starting point and to create a new, custom cpt template for your “Responsive Timetable Schedule” cpt based on the portfolio templates.

    Regards,
    Peter

    in reply to: Sticky Posts Not Working #246920

    Hi akhilz!

    Please insert the code into wp-content/themes/enfold/functions.php and not into wp-includes/functions.php.

    Best regards,
    Peter

    in reply to: The lost admin bar on frontend #246918

    Hey ConnyQ!

    I logged in and the admin bar works just fine for me – did you solve the problem? If not try to deactivate all plugins and activate them one by one to find the culprit – probably one of the plugins breaks the admin bar somehow.

    Cheers!
    Peter

    in reply to: WPML Language switcher flags #246916

    Hey!

    The code should be working. Please create me an admin account and I’ll look into it. Alternatively you can modify wp-content/themes/enfold/config-wpml/config.php and delete:

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

    Then the theme won’t append the flags to the menu.

    Regards,
    Peter

    in reply to: Galleries not displaying #246915

    Hey mrsl!

    The portfolio grid will not show your gallery images but just a featured image. If you want to show a gallery like here: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/ please select the “Ajax” link option on the portfolio element settings screen: http://www.clipular.com/c/6146267491074048.png?k=qhlp_49DBqSGhb0Y4uYrwpaUX-I
    and then edit your portfolio items and use the “Ajax Portfolio Preview Settings” to set a preview image gallery for each portfolio entry.

    Best regards,
    Peter

    in reply to: menu managemen problem #246913

    Hey!

    Something – maybe a plugin or custom code – loads an old jquery version from the google api

    
    <script type='text/javascript' src='//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js?ver=1.8.3'></script>
    

    Make sure that the default jquery script (which is bundled with wordpress 3.8.1) is loaded and remove the reference to the 1.8.3 version. Maybe you must deactivated all plugins to find the culprit.

    Best regards,
    Peter

    in reply to: Issues with secondary header navigation, top right #246910

    Hey!

    I fixed it with this code:

    
    .av_secondary_right .sub_menu>ul>li:last-child, .av_secondary_right .sub_menu>div>ul>li:last-child {
    padding: 0 10px;
    }
    

    Best regards,
    Peter

    in reply to: Fullwidth Blog Post Layout #246907

    Hey!

    1) You can try to add this code into the enfold/functionsphp file:

    
    function remove_caption_style( $width ) {
        return false;
    }
    add_filter( 'img_caption_shortcode_width', 'remove_caption_style' );
    

    It should remove the style attribute from the “caption” code output.

    2) Use this code to change the title width:

    
    #top .fullsize .template-blog .post-title {
    max-width: 100%;
    }
    

    Best regards,
    Peter

    Hi!

    I marked the thread for Devin – afaik he can test it with an iphone.

    Regards,
    Peter

    in reply to: Customizing the post meta (date, category etc.) #246901

    Hey!

    Sure – open up wp-content/themes/enfold/includes/loop-index.php and delete:

    
                        echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
                        echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
                        echo '<span class="vcard author"><span class="fn">';
                        the_author_posts_link();
                        echo '</span></span>';
                        echo '</span>';
                        echo '</span>';
    

    and:

    
    
                        if ( get_comments_number() != "0" || comments_open() ){
    
                        echo "<span class='comment-container minor-meta'>";
                        comments_popup_link(  "0 ".__('Comments','avia_framework'),
                                              "1 ".__('Comment' ,'avia_framework'),
                                              "% ".__('Comments','avia_framework'),'comments-link',
                                              "".__('Comments Disabled','avia_framework'));
                        echo "</span>";
                        echo "<span class='text-sep text-sep-comment'>/</span>";
                        }
    
    

    Regards,
    Peter

Viewing 30 posts - 4,231 through 4,260 (of 9,352 total)