Forum Replies Created

Viewing 30 posts - 4,981 through 5,010 (of 9,352 total)
  • Author
    Posts
  • in reply to: Dringend: Entfernen der Search-Funktion in der main nav #228902

    Hey mnolden!

    Dafür gibt es seit Enfold 2.4 eine Option im Adminbereich. Gehe zu Enfold > Theme Options > Header und suche nach der “Append search icon to main menu” Option. Stelle sicher das diese Checkbox nicht markiert ist und speichere die Optionen.

    Cheers!
    Peter

    in reply to: Scroller, parallax-ratio | how to? #228899

    Hi!

    Yes – you can use a filter to change it. Open up functions.php and insert this code at the very bottom:

    
    add_filter('avf_parallax_speed','avia_change_parallax_ratio', 10, 2);
    function avia_change_parallax_ratio($ratio, $id){
    $ratio = "0.3";
    return $ratio;
    }
    

    By default the ratio is set to 0.3 but you can set a higher value (0.5) to increase the speed or a lower value to decrease it.

    Cheers!
    Peter

    Hey!

    Glad it works now :)

    Cheers!
    Peter

    in reply to: Portfolio categories do not work with wpml #228896

    Hey pako69!

    Please try to deactivate all third party plugins except WPML. Probably the translated categories will show up afterwards and you need to activate the plugins one by one to find the conflicting plugin. I know that i.e. the Mailchimpl plugin breaks the WPML query on the admin page.

    Regards,
    Peter

    in reply to: Order of Masonry Entries #228895

    Hi!

    You can use this code – insert it into the functions.php file:

    
    add_filter('avia_masonry_entries_query', 'avia_random_image_query', 10, 2);
    function avia_random_image_query($query, $params)
    {
        if(is_page(array(20)))
        {
            $query['orderby'] = "ASC";
            $query['order'] = "title";
        }
    
        return $query;
    }
    

    Replace 20 with the id of the page where you want to sort the entries alphabetically.

    Regards,
    Peter

    in reply to: Masonry blog 'load more' issue on latest updates #228893

    Hey zufur!

    Please create me an admin account and post a link to your website. I couldn’t reproduce the issue on my test server and on the demo website: http://kriesi.at/themes/enfold/portfolio/masonry-portfolio/ and I must check your configuration first.

    Cheers!
    Peter

    in reply to: Comment module in Avia Layout Framework #228437

    Hi!

    No, not without custom code. Enfold and our Avia framework are build on top of the default wordpress code and WordPress does not support shared comments for different/multiple entries.

    Cheers!
    Peter

    Hi!

    Glad I could help you :)

    Regards,
    Peter

    in reply to: White Screen after Gravity Forms deactivated #228389

    Hi!

    It seems like the layerslider database query (compare the error message “WordPress-Datenbank-Fehler Lost connection to MySQL server during query f\xc3\xbcr Abfrage SELECT option_value FROM bcirc_options WHERE option_name = ‘layerslider-slides’ LIMIT 1 “) breaks the website. You can try to deactivate the layerslider script by deleting this line from functions.php:

    
    if(!current_theme_supports('deactivate_layerslider')) require_once( 'config-layerslider/config.php' );//layerslider plugin
    

    or insert this code into your child theme functions.php:

    
    add_theme_support('deactivate_layerslider');
    

    If you need the layerslider script please contact the server administrator/host because it seems to be a server side limitation (number of sql queries exceed the configured limit).

    Update: I think you use the standalone version of the plugin. Try to deactivate the LayerSlider plugin to fix the error.

    Cheers!
    Peter

    in reply to: distortions since 2.5.1 #228384

    Hi!

    Ok, I hope the other theme works better for you. I’ll monitor the forum and if someone else reports a similar issue I’ll look into it. I’ll close the thread now.

    Cheers!
    Peter

    in reply to: Video preview in Blog Posts on home page #228379

    Hey!

    You can select the “Video” post format for a post if you want to feature a video. Just make sure that you add the video link to the post content and that the “video” post format is selected: http://www.clipular.com/c/6677544845705216.png?k=kgxSp2lG1POjhTfjvUVXgjeGWDU

    Note that the “grid layout” doesn’t support video previews and you must select the “Multi Author Blog (displays Gravatar of the article author beside the entry and feature images above)” or “Single Author, small preview Pic (no author picture is displayed, feature image is small)” or “Single Author, big preview Pic (no author picture is displayed, feature image is big)” layout.

    Best regards,
    Peter

    in reply to: distortions since 2.5.1 #228377

    Hey!

    I still can’t access the website. Please activate the debug mode – open up enfold/functions.php and replace:

    
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    with

    
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    
    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }
    

    Then go to the page with the testimonial shortcode/element and copy the raw shortcode data from the debug field. Afterwards post it by using a website like: https://gist.github.com/ or: http://pastebin.com/ . I’ll check if I can reproduce the issue on my test server.

    Cheers!
    Peter

    in reply to: contact form in template #228375

    Hey!

    It seems like your mail client interprets the html text as plain text. Please try to use another webmail provider or email client if you want to read the email as html mail. If you want to receive plain text mails open up wp-content/themes/enfold/framework/php/class-form-generator.php and replace

    
    			$header = 'Content-type: text/html; charset=utf-8' . "\r\n";
    			$header = apply_filters("avf_form_mail_header", $header, $new_post, $this->form_params);
    			$copy 	= apply_filters("avf_form_copy", array($to), $new_post, $this->form_params);
    			
    			$message = stripslashes($message);
    

    with

    
    			$header = 'Content-type: text/plain; charset=utf-8' . "\r\n";
    			$header = apply_filters("avf_form_mail_header", $header, $new_post, $this->form_params);
    			$copy 	= apply_filters("avf_form_copy", array($to), $new_post, $this->form_params);
    			
    			$message = preg_replace("/<br[^>]*>\s*\r*\n*/is", "\n", $message);
    			$message = stripslashes($message);
    

    Regards,
    Peter

    in reply to: Permalink error with WPML (404) #228373

    Hi!

    No, you just need to buy the Multilingual CMS version. It comes with the String Translation extension for free. For a complete overview see: http://wpml.org/purchase/

    Regards,
    Peter

    in reply to: html Embedding videos #228372

    Hey!

    I noticed you use the “LayerSlider” at the moment. The video feature we added oes not affect the layerslider but only the “EasySlider” and the “Fullwidth EasySlider”. Personally I recommend to switch to one of these slider. If you want to stick with the layerslider use the “Div / Video” field ( http://www.clipular.com/c/5893099133861888.png?k=Ca7ZGjXd8_XgghR8mpj_Vqn7FBU ) and insert the youtube iframe code. The embed shortcode which you use at the moment

    
     [Embed] http://www.youtube.com/watch?v=jG3t38zgPgA [/ embed] 
    

    is not supported by this slider. Use this iframe code instead:

    
    <iframe width="960" height="720" src="//www.youtube.com/embed/jG3t38zgPgA" frameborder="0" allowfullscreen></iframe>
    

    Regards,
    Peter

    in reply to: Mobile Site Rotation Problem #228369

    Hey!

    There’s no ETA yet but I guess we’ll release it in two weeks. However I can’t say it for sure because sometimes we decide to add some other features and bug fixes before we release a new update and then it can take longer.

    Cheers!
    Peter

    This reply has been marked as private.
    in reply to: Front Page and Codeingiter Integration #228366

    Hey!

    Tbh I’m not sure why it doesn’t work any maybe some additional customization is required to load Enfold with the CodeIgniter framework. We only support unmodified, wordpress based websites and we can’t help you with the implementation of the CodeIgniter framework. My guess is that you can’t load the wp-blog-header.php directly but you first need to initialize the wp-load.php (see http://frankiejarrett.com/the-simplest-way-to-require-include-wp-load-php/ ) but I can’t say it for sure. Probably the best approach would be to debug the code and to check which variables exist and which templates are loaded by wordpress. You can hire a talented freelancer for this project if necessary: http://www.microlancer.com/

    Regards,
    Peter

    in reply to: Enfold – Post info links, only linking deepest category #228365

    Hi!

    Unfortunately the default get_the_term_list() function does not support such a feature and this modification is beyond the scope of our support forum. This code snippet may help you to implement your idea: http://pluginus.net/archives/get-the-term-list-ordered-by-hierarchy though.

    Regards,
    Peter

    in reply to: Parent pages / breadcrumbs #228364

    Hi!

    Please see: http://css-tricks.com/snippets/html/glyphs/ – css doesn’t support umlauts but you must convert it to ISO notation. Ü converts to \00dc – try this code instead:

    
    a[title="\00dcber uns"] {
    pointer-events: none;
    }
    

    If it doesn’t work try this code:

    
    a[title$="ber uns"] {
    pointer-events: none;
    }
    

    Best regards,
    Peter

    in reply to: Font keeps resetting to 'Web save fonts' #228363

    Hey!

    Maybe Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file and go to Enfold > Theme Options to regenerate the dynamic stylesheet (hit the green “Save all changes” button).

    Regards,
    Peter

    in reply to: WPML issue: blog page #228115

    Hi!

    1) Please go to the wordpress dashboard and select “English” from the language switcher (admin bar at the top). Then go to Pages > Add New and add a blog page to your website. Then save the page and translate it to Italian.

    2) Go to Enfold > Theme Options and select the blog page for your “English” website. Then click the “Save Options” button. Afterwards select “Italian” from the language switcher and configure your blog page for the “Italian” website (select the page you created when you translated the “English” blog page – see 1). Save the settings and now both pages are blog pages and connected to each other.

    Best regards,
    Peter

    in reply to: Full-screen Slider Video Documentation ? #227885

    Hey!

    Enfold will load the right video format if the browser doesn’t support mp4. A flash fallback is not required because the flash player will use the mp4 file for the flash player. You just need to make sure that the webm and ogv version of the video is located in the same folder and shares the same file name with the mp4 version. I.e. if your mp4 video is called “demovideo.mp4” upload the ogv video with the file name “demovideo.ogv” and the webm video with “demovideo.webm”. Also make sure that WordPress stores all videos in the same upload directory. Sometimes WordPress creates a new directory (each month has a separate folder) and then the video url paths are different and Enfold won’t find the other video formats in the same directory.

    Best regards,
    Peter

    in reply to: Error trying Upload additional Fontello Fonts #227883

    Hey!

    No, afaik you can’t upload the font files manually because a php script generates some configuration data for Enfold which is necessary to display the font icons. Maybe it would be possible to find a way to create and inject this configuration data manually but I didn’t look into it yet.

    Regards,
    Peter

    in reply to: Werbung links vom Blog #227882

    Hi!

    Ok, es klappt leider nicht mit einem Sidebar Widget, da der Sidebar CSS Code dafür nicht ausgelegt ist die Inhalte außerhalb der Sidebar anzuzeigen. Öffne stattdessen header.php und füge den Code nach dieser Zeile ein:

    
    <div id='main'>
    

    anschließend werden wir sehen, welches Styling notwendig ist.

    Regards,
    Peter

    in reply to: Translation and child theme #227880

    Hi!

    I think the translation file name is not correct (see http://codex.wordpress.org/WordPress_in_Your_Language#Catalan_-_Catal.C3.A0_.28ca.29 ). Try to rename lang/ca_ES.po to lang/ca.po and lang/ca_ES.mo to lang/ca.mo

    Cheers!
    Peter

    in reply to: Permalink error with WPML (404) #227861

    Hi!

    I recommend to add it to enfold/functions.php – insert it at the very bottom:

    
    add_filter('avf_portfolio_cpt_args','avia_deactivate_portfolio_slug_rewrite', 10, 1);
    function avia_deactivate_portfolio_slug_rewrite($args)
    {
      $args['rewrite'] = false;
      return $args;
    }
    

    but before you try this code follow the instructions here: http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/ and make sure that the slugs are translated properly.

    Regards,
    Peter

    in reply to: Social icons austauschen #227860

    Hey!

    Ich habe den Code etwas abgeändert. Bitte versuche es noch einmal.

    Best regards,
    Peter

    Hey!

    It seems like a plugin (or some custom code) adds an “hidden” class to the sidebar which breaks the widgets. I added this css code to the child theme style.css to fix it:

    
    .sidebar.hidden{
    position: relative;
    top: auto;
    visibility: visible;
    } 
    

    Regards,
    Peter

    in reply to: Icon fade-In animation in google chrome #227855

    Hey!

    I think this is probably a browser issue and not a theme issue because we didn’t change the animation code. Chrome 32 introduced several new bugs – i.e. one also affects the font files and font icons: http://blog.typekit.com/2014/02/04/chrome-bug-affecting-web-fonts/ and I’m not sure what we can do to fix this on our end. Can you confirm that the animation flaw only pops up with the latest theme version (2.5.2) and not with older theme versions and Chrome 32?

    Cheers!
    Peter

Viewing 30 posts - 4,981 through 5,010 (of 9,352 total)