Forum Replies Created

Viewing 30 posts - 6,031 through 6,060 (of 9,352 total)
  • Author
    Posts
  • in reply to: Seltsamer Fehler #203525

    Hey!

    Nein leider. Beides würde neue Layout Element erfordern. Wenn du es so nicht richtig hinbekommst, dann lass die Kette etwas kleiner und verwende diesen Code

    
    .page-id-2380  #kette .container img{
    width: 200px;
    height:auto;
    }
    

    um die Kette auf der anderen Seite ebenfalls zu verkleinern.

    Regards,
    Peter

    in reply to: Post Detail Page Title defaults to Blog: Latest News #203522

    Hey!

    Yes, insert following code into the functions.php file

    
    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_single())
    {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    }
    
    return $args;
    }
    

    Cheers!
    Peter

    in reply to: Animation #203521

    Hi!

    I forwarded/marked this thread for Kriesi. He’s aware of it and he’ll look into it.

    Regards,
    Peter

    in reply to: Gravatar Alt Tag #203518

    Hey!

    Afaik this is a limitation of the gravatar service and not our theme. You can use this filter code: http://ianjgough.com/blog/setting-up-the-alt-tag-for-gravatar-in-wordpress/ in the child theme functions.php file if you don’t want to modify the parent theme files.

    I’ll check if your code makes sense and maybe we’ll add it to the core files with the next version.

    Regards,
    Peter

    in reply to: Enfold is consuming an inordinate amount of processor time? #203254

    Hey andri7luck!

    You can try to disable all third party plugins which are not required. If this doesn’t solve the problem I recommend to switch to a better hoster. Unfortunately Enfold is a complex theme which requires more resources than a simple, standard theme like TwentyThirteen,

    Best regards,
    Peter

    in reply to: Accordion filter not working after latest update #203252
    in reply to: Custom Post Types Not Sghowing featured Image? #203251

    Hey!

    You can try to use the code from single-portfolio.php and /wp-content/themes/coherence/includes/loop-portfolio-single.php which also supports tags. The comments are not activated by default but I added a “comments” element to the layout builder. I’m not sure if Kriesi already included it in 2.4.4 but I guess he did. Please update your theme to 2.4.4 and you should be able to use the new element.

    Best regards,
    Peter

    Hey!

    1) There’s a plugin for this: http://wordpress.org/plugins/disable-hide-comment-url/ – I’m not sure if it’s compatible with wp3.8 though.

    2) Add following csscodeinto the quick css field

    
    .single-post .avia-post-nav{ display: none !important; }
    

    Regards,
    Peter

    in reply to: portfolio catagory falling under parent when it should not #203249

    Hi segalmedia!

    Can you please elaborate? Maybe create us an admin account which enables us to check the category structure first hand.

    Regards,
    Peter

    in reply to: Print Friendly and PDF plugin pushes sidebar below content #203248

    Hey!

    The plugin seems to manipulate the html structure of the website and this breaks the theme. Normally it should look like

    .container
    – .template-page.content
    – .sidebar

    but with the print plugin it looks like

    .container
    – .template-page.content
    .sidebar

    and this structure pushes the sidebar container underneath the main content container. Please contact the plugin author and ask him how to deactivate the html code manipulation because this is not easily fixable with css. Alternatively I recommend to use another plugin.

    Best regards,
    Peter

    in reply to: 90% of my homepage just disappeared #203246

    Hey!

    Unfortunately this can happen if a database error occurs (i.e. if the data transmission fails and the data in the database is corrupt or if the server stops to write the data to the database because of the number of requests/procedures, etc.). I suggest to make a regular backup of the database every day (i.e. with tools like: http://wordpress.org/plugins/backupwordpress/ ) and then you can restore it if some data is corrupt.

    Cheers!
    Peter

    in reply to: Subject in Contact Form not custom #203245

    Hi!

    The subject field (and email subject) seems to work for me with the contact form here: http://www.adw.cl/contact/ . Note that by default it will only work if you use the label “Subject” for the field. If you use a different label for the subject field the theme will not recognize it as subject field automatically. If you want to use a different subject label add following code to functions.php

    
    add_filter('avf_form_subject','avia_change_form_subject', 10, 3);
    function avia_change_form_subject($subject, $new_post, $form_params){
    $key = "XXX";
    $key = avia_backend_safe_string($key, '_', true);
    if(!empty($new_post[$key. '_1'])) $subject = $new_post[$key . '_1']
        return $subject;
    }
    

    and instead of XXX insert the text of your subject label.

    Cheers!
    Peter

    in reply to: Enfold: Best way to link to a specific portfolio category? #203240

    Hey K!

    1) If you just want to display the category name in the breadcrumb (and not the portfolio grid page links, etc.) try to add following code to the theme functions.php file

    
    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }
    

    2) You can remove the “Archive for” text. Open up /wp-content/themes/enfold/framework/php/function-set-avia-frontend.php and replace

    
    $output = __('Archive for:','avia_framework')." ".$term->name;
    

    with

    
    $output = $term->name;
    

    3) No, the ajax portfolio does not support a pre-sort at the moment.

    Cheers!
    Peter

    in reply to: Get a right sidebar in Woocommerce single product #203239

    Hey Emmanuelppp!

    The single product template does not support a right sidebar at the moment. It would require some major template rewrites and some theme code customization. You can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/ – if more users request it we’ll look into it.

    Regards,
    Peter

    in reply to: Soft Hyphenation #203237

    Hi!

    I don’t think it’s theme related. You can also choose a standard font or another google font and then you shouldn’t get this issue with our theme too.

    Regards,
    Peter

    in reply to: Font in IE different than FF and Chrome #203231

    Hey!

    It seems like you’re using Helvetica for the body at the moment. Try to add following code to the quick css field to change the font

    
    body { font: 16px/1.95em "Calibri", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    
    .helvetica-websave{		font-family: "Calibri", Helvetica, "HelveticaNeue", "Helvetica Neue", Arial, Verdana, sans-serif;	}
    .helvetica-neue-websave{        font-family: "Calibri", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;	}
    

    Regards,
    Peter

    Hi!

    I suggest to add this code to header.php and then use this css code

    
    .mlp_language_box{ display: none; }
    

    to hide it. Afterwards we’ll try to find a quick solution to position it properly but I can’t promise a solution because this customization is beyond the scope of our support forum (implementation of third party plugin code).

    Best regards,
    Peter

    in reply to: modification / changing language #203222

    Hi!

    Yes, there was a syntax error with the quotes. I updated the code – please try it again.

    Cheers!
    Peter

    in reply to: Color Section in Beitrag #203219

    Hi crevlon!

    Nein, fullwidth Elemente (welche über die gesamte Breite der Seite gehen) können nicht mittels Shortcode eingefügt werden. Dazu gehören die Masonry Gallery, der LayerSlider, der fullwidth und fullsize Slider und die Color Section.

    Cheers!
    Peter

    in reply to: Small layout for blog not displaying featured images #203216

    Hey!

    It seems like your stylesheet (probably some code in the quick css field) contains some css styling which hides the blog meta data

    
    .blog-meta {
    display: none;
    }
    

    This code will also hide the preview image on the blog page.

    Regards,
    Peter

    in reply to: Seltsamer Fehler #203057

    Hi!

    Vermutlich muss du hierzu die Weite von “.page-id-2380 div .av_one_fourth” entsprechend vergrößern. 11% werden zu wenig sein.

    Regards,
    Peter

    in reply to: Problems with Adsense after Enfold update #203034

    Hey!

    Please use this plugin: http://wordpress.org/plugins/insert-html-snippet/ to insert raw js or css code into the text box. Our theme uses the wpautp() function to sanitize the text content and maybe it does not interpret your raw code properly.

    Best regards,
    Peter

    in reply to: Enfold Error since update #203032

    Hi!

    Glad you found the cause of the php warning :)

    Best regards,
    Peter

    in reply to: FAQ Toggle Sorting Collapses and Disappears #203031

    Hey!

    Please create me an admin account and post the login data as private reply – I’ll modify the file for you. Your code change doesn’t seem to take effect because the filter links still do not contain the curly brackets.

    Best regards,
    Peter

    in reply to: disabling lightbox #203028

    Hey penumbra!

    If you want to disable the lightbox with a child theme add following code to the functions.php file

    
    /*
     * Register frontend javascripts:
     */
    if(!is_admin())
    {
    	add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    }
    
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    
    	wp_dequeue_script('avia-prettyPhoto');
    	wp_dequeue_style('avia-prettyP');
    	wp_dequeue_style('avia-custom');
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false );
    }
    
    

    Then create a “js” folder within the child theme folder (i.e. enfold_child\js) and create an avia.js file with the folder. Open up the file and insert this code

    
    function avia_lightbox_callback(elements,ww,wh){
        (function($){
            elements.each(function()
            {
                var el = $(this);
                if(!el.hasClass('noLightbox'))
                {
                    el.addClass('lightbox');
                }
            });
            
            jQuery('a.lightbox').on('click', function() { return false; });
        })(jQuery);
    }
    
    

    Regards,
    Peter

    in reply to: Seltsamer Fehler #203026

    Hey!

    Dann versuche die Größe des Bildes direkt anzupassen

    
    .page-id-2380 div .av_one_fourth img {
    width: 11% !important;
    height: 200px;
    width: auto;
    }
    
    

    Regards,
    Peter

    in reply to: Umleitungsfehler #202879

    Hey!

    Kannst du mir bitte einen Admin Account einrichten – ich sehe mir die Sache an.

    Cheers!
    Peter

    in reply to: Seltsamer Fehler #202874

    Hi!

    Versuche dieselbe min-height auch für das “Viertel” Element zu setzen:

    
    .page-id-2380 div .av_one_fourth {
    width: 11% !important;
    min-height: 250px;
    }
    
    .page-id-2380 div .av_one_half {
    width: 66%;
    min-height: 250px;
    }
    

    Best regards,
    Peter

    in reply to: Fatal error #202873

    Hey!

    1) If you selected this page as “blog” page (Enfold > Theme Options) you can’t display a slider because a special blog template will be used for the blog page. However you can deselect the page (or select another page for the blog) and then add a blog element to the “Team News” page. The Team News page will then show the advanced layout – including the slider + blog element.

    2) You can’t set the width of the sidebar to exactly 300px however you can change the layout by changing the container units class. See: https://kriesi.at/support/topic/changing-the-sidebar-width-and-keeping-it-responsive/

    Regards,
    Peter

    Hi amyflo74!

    See https://kriesi.at/support/topic/fatal-error-6/

    Best regards,
    Peter

Viewing 30 posts - 6,031 through 6,060 (of 9,352 total)