Forum Replies Created

Viewing 30 posts - 9,151 through 9,180 (of 9,352 total)
  • Author
    Posts
  • in reply to: WPML topmenu #117328

    This is a bug in the latest version and we’ll fix it with the next update. For now you can replace following line in wp-contentthemesenfoldconfig-wpmlconfig.php:

    add_action( 'ava_meta_header', 'avia_wpml_language_switch' );

    with

    add_action( 'avia_meta_header', 'avia_wpml_language_switch' );

    in reply to: Demo Content Galerien #117588

    Hallo,

    ich habe leider keinen Zugriff auf den Demo Content. Möglicherweise ist er aber auch im Dummy Content enthalten (Enfold und den grünen “Dummy Data” button klicken – aber Achtung nur auf einem Testsystem, den es kann bestehender Content überschrieben werden).

    Wenn die Gallerie neben “SOME ENFOLD CORE FEATURES” gemeint ist – diese lässt sich sehr leicht nachstellen, nämlich mit: http://www.clipular.com/c?5499120=Mnr1inoJoiqNQM7uPkrYLQuixaM&f=.png

    Vermutlich fehlen aber die kleinen Thumbnail Bilder in der Auswahl – diese werden im nächsten Update enthalten sein. Wenn man diese jetzt schon haben möchte, öffne wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php und ersetze:

    "subtype" =>  AviaHelper::get_registered_image_sizes(array('thumbnail','logo','widget','slider_thumb'))

    mit:

    "subtype" =>  AviaHelper::get_registered_image_sizes(array('logo'))

    Thank you for the hint. I reported it to Kriesi and we’ll try to fix it in the next version. I noticed this only happens if the link text is empty. For now a workaround would be to insert a link text and to hide it with visibility: hidden

    <a id="about-me" style="visibility: hidden;">About me</a>

    in reply to: Contact Form not submitting emails #117443

    @TechShad – if you’re working on a local server the mail won’t work if the server is not configured properly: http://www.blog.tripleroi.com/2012/05/solvedenabling-sendmail-on-localhost.html

    @doafilms – yes unfortunately there’s no way to fix this with a hook atm. You can edit wp-contentthemesenfoldframeworkphpclass-form-generator.php manually though – open up the file and replace:

    mail($from, $this->form_params['autoresponder_subject'], $message, $header);

    with:

    if(!empty($this->autoresponder[0]))
    {
    $from = $_POST[$this->autoresponder[0]];
    $usermail = true;
    }
    else
    {
    $email_variations = array( 'e-mail', 'email', 'mail' );

    foreach($email_variations as $key)
    {
    foreach ($new_post as $current_key => $current_post)
    {
    if( strpos($current_key, $key) !== false)
    {
    $from = $new_post[$current_key];
    $usermail = true;
    break;
    }

    }

    if($usermail == true) break;
    }
    }

    mail($from, $this->form_params['autoresponder_subject'], $message, $header);

    We’ll include a hook in the next update.

    in reply to: Modifying Blog Posts #117649

    If you want to remove the date open up includes/loop-index.php and delete:

    echo "<span class='date-container minor-meta'>".get_the_time('d M Y')."</span>";
    echo "<span class='text-sep'>/</span>";

    If you want to remove the categories open up includes/loop-index.php and delete:

    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    echo $cats;
    echo '</span><span class="text-sep">/</span>';

    in reply to: Blurred Thumbnails #116434

    Hey!

    Great :)

    Best regards,

    Peter

    in reply to: buttion problem in ie8 #117170

    I can’t reproduce the issue with the IE engine emulator (IE10 dev console) and need to guess the solution. Try to insert following code into the quick css field:

    avia-button.avia-size-medium.avia-position-left{
    min-width: 150px;
    }

    This code will stretch the button width and hopefully fix the issue.

    Hey!

    Please insert following code into the quick css field:

    .main_menu ul:first-child > li {
    height: 89px !important;
    }

    Best regards,

    Peter

    in reply to: Blog Author Block #117362

    1) If you want to add the author blog to single post pages open up single.php and replace:

    get_template_part( 'includes/loop', 'index' );

    with:

    get_template_part( 'includes/loop', 'index' );

    $author_id = get_query_var( 'author' );
    if(empty($author_id)) get_the_author_meta('ID');
    $gravatar = get_avatar( get_the_author_meta('email', $author_id), '75' );
    $name = get_the_author_meta('display_name', $author_id);
    $heading = __("About",'avia_framework') ." ".$name;
    $heading_s = __("Entries by",'avia_framework') ." ".$name;
    $description = get_the_author_meta('description', $author_id);

    if(empty($description))
    {
    $description = __("This author has yet to write their bio.",'avia_framework');
    $description .= '</br>'.sprintf( __( 'Meanwhile lets just say that we are proud %s contributed a whooping %s entries.' ), $name, count_user_posts( $author_id ) );

    if(current_user_can('edit_users') || get_current_user_id() == $author_id)
    {
    $description .= "</br><a href='".admin_url( 'profile.php?user_id=' . $author_id )."'>".__( 'Edit the profile description here.' )."</a>";
    }
    }

    echo "<span class='post-author-format-type blog-meta'><span class='rounded-container'>{$gravatar}</span></span>";
    echo "<div class='author_description '><h3 class='author-title'>{$heading}</h3>".wpautop($description)."<span class='author-extra-border'></span></div>";

    2) To remove the preview image link open up includes/loop-index.php and delete following line:

    if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';

    in reply to: How To – Default Post with Preview Image #117363

    Hi,

    it’s the “Single Author, big preview Pic (no author picture is displayed, feature image is big)” blog layout. If you’re using the standard blog page go to Enfold > General Settings and select it or (if you’re using the blog as element in the layout builder) select it on the layout builder option page. The big image is the “featured image” of the post – you can set it on the right side (option below the blue Publish/update button).

    in reply to: Problem with Comment Form, urgent, all templates #117572

    Hey!

    For me it also works fine with Chrome now (my standard browser). Please try to clear the browser cache.

    Regards,

    Peter

    in reply to: Please contribute and translate Enfold #114921

    Hi!

    Great thank you :)

    Best regards,

    Peter

    in reply to: Problem with Comment Form, urgent, all templates #117568

    It seems like you didn’t add the code into the quick css field – otherwise it would be at the end of this file: http://scadasymbols.net/wpnew/wp-content/uploads/dynamic_avia/enfold.css?ver=1

    in reply to: Problem with Comment Form, urgent, all templates #117565

    Hi!

    Insert following css code into the quick css field:

    #commentform label {
    position: relative;
    left: 0;
    }

    #wysija-box-after-comment{
    width: auto;
    }

    Best regards,

    Peter

    in reply to: error by plugin installation Woocommerce #117512

    Hey!

    Set the php memory to 128M – see: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Regards,

    Peter

    in reply to: Galerie skaliert keine bilder #117496

    Ja, man kann diese Option auch recht leicht jetzt schon hinzufügen – in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php einfach folgende Zeile löschen:

    "required" 	=> array('style','not','big_thumb'),

    – man hat dann zwei Auswahlfelder. Das erste bezieht sich auf das große Thumbnail, das zweite auf die kleinen Thumbnails.

    in reply to: Galerie skaliert keine bilder #117494

    Bzgl der Thumbnails – ja, wir werden in der nächsten Version (in ca. 1 Woche) eine Option einbauen welche es erlaubt die Thumbnail Size der kleinen Bilder getrennt zu wählen (daher kann man dann zb auch Hochfomatbilder beschneiden und im Querformat darstellen, etc.).

    Das große Thumbnail wird jetzt aber richtig angezeigt (mittig & im Hochformat) und der CSS Code skaliert es nicht mehr:

    in reply to: Galerie skaliert keine bilder #117492

    Hi!

    Bitte überprüft ob der Code den ich oben gepostet habe wirklich im quick css gespeichert wurde. Ich kann diesen nicht finden…

    Best regards,

    Peter

    in reply to: Galerie skaliert keine bilder #117490

    Bitte poste einen link zu deiner Gallerie.

    Der CSS Code den ich gepostet habe sorgt dafür, dass die gewählte Thumbnail Size verwendet wird. Ist das Thumbnail kleiner als der Gallerie-Container wird das Bild zentriert angezeigt. Anonsten füllt es den Container zur Gänze aus (daher 100% der Weite).

    in reply to: Galerie skaliert keine bilder #117488

    Hey!

    Hallo,

    versuche folgenden Code in das Quick css Feld einzufügen:

    #top div .avia-gallery .avia-gallery-big, #top div .avia-gallery .avia-gallery-big img{
    float: none;
    text-align: center;
    width: auto;
    }

    Best regards,

    Peter

    i got some problems with portfolio images if is vertical. For future update..its possible to crop images to have the same size ? the same for blog. – already added this feature to Enfold. Will be available in the next version.

    in reply to: Customization issue on Blog page #117473

    Hi!

    The blog page is a special template. Go to Enfold > Sidebar and search for the “Sidebar on Blog Page” option. Select “No Sidebar”.

    Best regards,

    Peter

    in reply to: Blog option #117381

    1) Maybe you need to activate the option on the post editor screen. Click on “Screen options” in the right corner and check the excerpt checkbox: http://www.clipular.com/c?5393178=DWPIZfYn3Pt6vQ_8EL0lN6Pc9Js&f=.png

    2) The reason is that the portfolio thumbnail size is used which does not crop the image. We’ll include an option to select a different thumbnail size in the next version. For now you can change the thumbnail dimensions in functions.php – search for:

    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)

    and set the height to a lower value. Afterwards regenerate the thumbnails http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Another option would be to upload bigger thumbnails with at least 495x400px.

    3) Probably a bug but I fixed it. Try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php

    and replace:

    $excerpt .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';

    with

    $excerpt .= '<div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';

    in reply to: HOW TO MODIFY THE THEMES CSS – THE KRIESTI.AT WAY #117457

    Hi,

    Now a short answer to a long post :)

    1) You can use the quick css field if you like. Since Replete the quick css code is saved within a css file and afaik there’re no drawbacks with this option. Older themes just added the quick css code as inline css to the head section which can be problematic (document size, other style sheets can overwrite the code, etc.).

    2) If you don’t want to use the quick css field add the code to enfold/css/custom.css – the only disadvantage is that you can’t modify the file with the wp editor and you need to use ftp to download/upload the file. The advantage is that you can edit the file on your pc/mac with a proper text editor.

    3) Last option would be a child theme where you can add your custom code to the child theme style.css. Imho the child theme makes only sense if you want to change theme php code too.

    in reply to: Contact Form not submitting emails #117439

    Maybe your hoster restricts outgoing mails – eg this user: https://kriesi.at/support/topic/change-the-from-parameter-on-choices-theme had the same problem. Enfold introduced a new filter which allows you to change the “from” address without hacking the core files. Add following code to the bottom of 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;
    }

    in reply to: Blurred Thumbnails #116432

    Please download v1.4 of Enfold. It allows you to select the thumbnail size for gallery images:

    Depending on the number of the columns select a smaller or bigger thumbnail size.

    in reply to: Portfolio pics overlap when using 1200 layout #117092

    Hi!

    Thanks for the hint. I tagged this thread for Kriesi and we’ll fix it next week when he’s back from his vacation.

    Regards,

    Peter

    in reply to: Text Block got uneditable #117215

    Hi!

    Great, we’ll fix the portfolio issue next week when Kriesi is back from his vacation.

    Regards,

    Peter

    Hey!

    Thanks. I tagged this thread for Kriesi and he’ll fix the issues when he’s back from Cyprus (Friday next week).

    Regards,

    Peter

    in reply to: SignUp Form on Homepage #117374

    The easy slider does not support it, I’m not sure if the LayerSlider supports it. You can try to add your form code (html code) into the html field:

Viewing 30 posts - 9,151 through 9,180 (of 9,352 total)