Forum Replies Created

Viewing 30 posts - 7,831 through 7,860 (of 9,352 total)
  • Author
    Posts
  • in reply to: Embeded audio problem – Enfold 1.9 / WordPress 3.6 #133341

    Hi!

    The only small glitch I noticed is the volume bar position. You can fix it with following css code.

    .mejs-controls div.mejs-horizontal-volume-slider {
    width: 60px;
    }

    Best regards,

    Peter

    in reply to: New features: Conditional menu items #133272

    Haha – no sorry :) – this is really just a “conditional menu” feature and does not “protect” your content or restrict the access to certain pages/posts. You can try use a membership plugin like http://wp-member.com/ or S2Members to protect your content. Btw this is also no “inconsistency” because wordpress doesn’t protect pages which are not shown in your custom menu too.

    in reply to: New features: Conditional menu items #133270

    It’s a new feature I worked on the last week. It helps you to show/hide a menu item if a certain condition is fulfilled. Kriesi and I think that the feature can confuse some of our users – especially if they’re wp beginners and not tech savvy and we decided to hide it a bit. To activate it add following code to functions.php – insert it at the very beginning of the file (after global $avia_config) or in your child theme functions.php

    global $avia_config;
    add_theme_support('avia_conditionals_for_mega_menu');

    Then go to Appearance > Menus and you’ll notice a new checkbox/option for each menu item. Tick it and you’ll see up to 4 additional option fields (depends on the dropdown selections)

    The first dropdown allows you to select if you want to show or hide an item if the condition is fulfilled or you can also add a custom css class if the condition is fulfilled.

    If you select the last option a new field will fade in which allows you to enter the css class(es).

    The second dropdown allows you to select the conditional check (is user logged in, is user logged out, is user on a page, is user on a post page, etc.). Some conditionals (like is user on a page, is user on a post page) also allow you to filter the menu items based on an additional parameter (eg the post/page id). In this case another field will pop up where you can enter the additional parameter (i.e. the id of the post/page).

    Overall I think I created a very powerful, extendable and logical ui which allows you to customize the menu quite easily – nevertheless you must wrap your mind around it and the new options definitely add some complexity to the theme/menu configuration..

    in reply to: activating wpml crash #133274

    Hi!

    If you get a php error (or “white screen of death”) please increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Best regards,

    Peter

    in reply to: WPML + ENFOLD THEME = Media Library MISSING #132842

    Hi!

    Please let us know if they find a problem or post an answer.

    Regards,

    Peter

    in reply to: Translation of theme doesn't show? #133139

    Hi!

    Ok, I’m sorry to hear this but hopefully you’ll find a theme which fits your needs better…

    Regards,

    Peter

    in reply to: Translation of theme doesn't show? #133137

    Hi!

    Please try to update to version 1.8.4. You’re using v1.8.1 at the moment and maybe the latest version will fix the issue. We can also make sure that no theme files are corrupt/damaged.

    Regards,

    Peter

    in reply to: Translation of theme doesn't show? #133134

    Hey!

    I did not receive any login data yet. please try to send it again.

    Best regards,

    Peter

    in reply to: Image sizes functions.php #132880

    You can add the if statement to the function like

    function avia_change_image_size_array() {
    global $avia_config;
    $avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
    $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
    $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>1001 ); // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>330 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>173 ); // images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>474 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>687 ); // images for fullsize pages and fullsize slider

    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>564 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>807 ); // images for fullsize pages and fullsize slider
    }

    }
    add_action( 'init', 'avia_change_image_size_array');

    in reply to: Diable image animation on scroll #133013

    Open up enfold/js/shortcode.js and search for this code around line 205:


    //trigger displaying of thumbnails
    gallery.on('avia_start_animation', function()
    {
    images.each(function(i)
    {
    var image = $(this);
    setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    });
    });

    change it to:


    //trigger displaying of thumbnails
    gallery.on('avia_start_animation', function()
    {
    images.each(function(i)
    {
    var image = $(this);
    setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    });
    }).trigger('avia_start_animation');

    and the gallery thumbs should load immediately.

    in reply to: Header and Breadcrumb with bbPress forums #132812

    Hi!

    You can also add following code to custom.css (or insert it into the quick css field)

    #top .title_container .container{
    display: none;
    }

    Regards,

    Peter

    in reply to: Add Variation Button Not Working – Enfold #132736

    Hey!

    Did you solve the problem? I’m asking because the thread is marked as resolved.

    Best regards,

    Peter

    in reply to: WPML + ENFOLD THEME = Media Library MISSING #132840

    Hi,

    yes you’re right. It seems to be a WPML issue/bug. However (as supposed in my last post) it’s not theme related because if I switch to another theme (like the default TwentyTwelve theme) I still have the same error. I tried to deactivate all plugins – then it works because WPML is not activate. Then I switched the theme to TwentyTwelve and activated WPML again and the error was there again. So it must be a plugin problem. I’d suggest to contact the plugin devs here: WPML and ask them to look into it.

    in reply to: Background Image in color section not working on Safari #132890

    Hey!

    I tagged this thread for Kriesi because he works on a Mac and probably he’s able to provide a fix.

    Regards,

    Peter

    in reply to: landing page and background transparent color-section #132327

    You can add a background image to the section itself but I guess it’s not possible to make it completely transparent because the wrap_all container element (which is behind the color section) will still have a bg color and if you make the wrap_all container transparent you’ll probably effect other areas of the website too. I tried to visit your website but http://escalamas.com/cms1/prueba/ ponts to a 404 error page (not found).

    in reply to: Slider fade speed #132631

    Tbh this would really surprise me if the transition speed varies from slide to slide because the executed code is always the same. However if the transition speed is still too fast try to increase the value or replace following code in enfold/js/shortcodes.js

    displaySlide.css({visibility:'visible', zIndex:2, opacity:0}).avia_animate({opacity:1}, this.options.transitionSpeed/3, 'linear');

    hideSlide.avia_animate({opacity:0}, this.options.transitionSpeed/2, 'linear', function()

    with

    displaySlide.css({visibility:'visible', zIndex:2, opacity:0}).avia_animate({opacity:1}, this.options.transitionSpeed, 'linear');

    hideSlide.avia_animate({opacity:0}, this.options.transitionSpeed, 'linear', function()

    in reply to: Adjust Blog Paragraph Text Font Size Only #132876

    Hey!

    please try following css code

    .template-blog .post .entry-content {
    font-size: 20px;
    }

    or

    .template-blog .post .entry-content p {
    font-size: 20px;
    }

    Regards,

    Peter

    in reply to: Change background of inactive tabs #133170

    Hi!

    Use following css code:

    .js_active .tab_titles .tab {
    background-color: #333;
    }

    You can also use a rgba value ( http://hex2rgba.devoth.com/ ) if you want to have a semi-transparent background.

    Regards,

    Peter

    in reply to: Custom CSS to change Contact Field Background Color #133166

    Hi!

    Can you post a link to the contact form please?

    Best regards,

    Peter

    in reply to: Can Team Member Photos Link to a page #123983

    I’m sorry but this php modification would require a lot of work and is beyond the scope of our support forum. If you want to link an image of a member to a profile page use the “Media Elements > Image” element and apply a link to it which points to the profile page. It will give you a similar result.

    in reply to: Some help with a new install [formatting] #130893

    You can use media queries to center the menu for different resolutions. Use theme like:

    @media only screen and (max-width: 1356px) and (min-width: 1024px) {
    #top .main_menu { left: 100px !important; }
    }

    @media only screen and (max-width: 1023px) and (min-width: 768px) {
    #top .main_menu { left: 50px !important; }
    }

    @media only screen and (max-width: 768px) {
    #top .main_menu { left: 0 !important; }
    }

    You can insert them into the quick css field and if necessary define new media queries for different resolutions. You can also try to use perecentage values instead of px – maybe this saves you som queries

    in reply to: LayerSlider – New layers won't show on page #132099

    Hi!

    Cameron32 – please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.

    Regards,

    Peter

    in reply to: Translation of theme doesn't show? #133132

    Hi!

    Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it. Make sure that the codestyling plugin is installed.

    Regards,

    Peter

    in reply to: WPML + ENFOLD THEME = Media Library MISSING #132838

    Hey!

    Thanks for the notice. It’s quite strange though because our theme does not interact with the media translation in any way…

    Best regards,

    Peter

    in reply to: Changing menu layout #132729

    No, the “small non-fixed header” doesn’t support such a layout and you’d need to customize the code. However you can use the “Header with bottom menu + social media icons” option – http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/ – it looks similar to the menu of http://www.iphotoscanning.co.uk/ and we can help you to change the background color of the menu (i.e. see https://kriesi.at/support/topic/setting-navigation-text-color-setting-font-size ).

    in reply to: Promo Box Header #132728

    Hey!

    If you don’t want to display the margin at the top insert following code into the quick css field

    p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
    margin-top: 0;
    }

    Regards,

    Peter

    in reply to: Nach Deaktivierung des Plugin COOL VIDEO GALLERY geht… #132832

    Hi!

    Gelöst. Ein anderes Plugin hat einen JS Fehler verursacht.

    Best regards,

    Peter

    1) Just add a custom ID to the color sections. Based on your post above I guess you already added the id to the section. Write it down somewhere or remember it.

    2) Then go to Appearance > Menus and use the a custom links option to add the section link to your menu items:

    in reply to: Video not playing in Firefox #132259

    Firebug shows me an error

    "HTTP "Content-Type" "content/unknown" is not supported. Can't load http://acceleratedgrowth.org.s3.amazonaws.com/MPBA-Profile-Video.mp4"

    I used google search and you need to make sure that the amazonaws.com server sends the right mime type: http://www.encoding.com/assigning_proper_mime_types_for_amazon_s3_output

    If the article doesn’t help search for “amazonaws mp4 mime type” and you’ll get similar results. This is not a theme issue but a problem with the cdn provider…

    in reply to: Advanced Layout editor not working #132943

    Hi!

    Great :)

    Regards,

    Peter

Viewing 30 posts - 7,831 through 7,860 (of 9,352 total)