Forum Replies Created

Viewing 30 posts - 4,351 through 4,380 (of 9,352 total)
  • Author
    Posts
  • in reply to: Problem with WPML and portfolio portfolio grid element #243729

    Hi!

    Great, I’ll close this thread now.

    Regards,
    Peter

    Hey cerf!

    Please post a link to a page where we can investigate the breadcrumb issue.

    Regards,
    Peter

    in reply to: Issue with Wishlist #243724

    Hi Gurify!

    Please see https://kriesi.at/support/topic/wishlist-member-avia-framework/ . I still didn’t receive an answer and we can’t support this plugin. Please switch to another membership plugin or use the standard editor like the plugin author suggested.

    Cheers!
    Peter

    in reply to: Reach/Label "color section anchor ID's" from Main Menu #243723

    Hey!

    You just need to make sure that the id is used as the hash value. If i.e. your page url ist

    http://mywebsite.com/page

    and you want to link to the section with the id “portfolio” the url of the custom link looks like:

    http://mywebsite.com/page#portfolio

    Note that I used a # sign (marks the beginning of the hash value) and then I just appended the id (portfolio) to the url. Make sure that the id just contains simple latin characters and no spaces, etc. otherwise the hash value might be invalid.

    Regards,
    Peter

    in reply to: Vollbild-Slider Size #243721

    Hey!

    Ok, versuche einmal diesen Code:

    
    .avia-fullscreen-slider .avia-slideshow>ul>li {
    background-size: contain;
    background-repeat: no-repeat;
    }
    

    Regards,
    Peter

    in reply to: Fullwidth Mansonry vs fullwidth mansonry gallery #243719

    Hi CreatorsCreations!

    Yes the layout of both elements is a bit different. If you want to reduce the padding insert this code into the quick css field and change the padding values:

    
    .av-large-gap.av-masonry {
    padding: 15px 0 0 15px;
    }
    

    Regards,
    Peter

    in reply to: Problems after update to 2.6.2 #243718

    Hi ACKolloquium!

    After the 2.6.2 update please go to Enfold > Settings and check the “Header” option page. We added some new options and you might need to reconfigure these options.

    Best regards,
    Peter

    in reply to: Problem with responsive transparent header #243716

    Hi!

    You can try to decrease the line height and font size with

    
    @media only screen and (max-width: 767px){
    .page-id-3595 .slideshow_inner_caption {
    font-size: 10px;
    line-height: 1.2em;
    }
    }
    

    Best regards,
    Peter

    in reply to: Fallback option for video #243714

    Hi!

    Ok, I’ll leave this thread open.

    Cheers!
    Peter

    Hey techgrayscale!

    No, this is imo not easily possible because the image and the headline position are set to relative and you can’t overlap with css code.

    Cheers!
    Peter

    in reply to: [BUG] Google maps error when 2 maps at both #243709

    Hi noe34!

    I reported it to Kriesi. For a quick fix insert this code into enfold/functions.php or your child theme functions.php file:

    
    add_filter( 'avia_google_maps_widget_load_api', 'avia_remove_widget_script', 10, 2);
    function avia_remove_widget_script($load, $config) {
        if(is_page(array(20))) return false;
        return true;
    }
    

    and instead of 20 insert the id of the page where you use the maps element.

    Best regards,
    Peter

    in reply to: Preview Images are not the same size on Mansory Gallery #243706

    Hi bakbek!

    Maybe because the headline/title of the second entry requires two lines and this may push the white background of the box over the featured image.

    Best regards,
    Peter

    in reply to: "Hidden page" and "No robot" #243705

    Hi fmichalski!

    Yes, you can install a plugin like: http://wordpress.org/plugins/wordpress-seo/ which enables you to change the robots meta tag for each post/page. Just go to the editor page and select noindex, nofollow in the seo option field.

    Cheers!
    Peter

    in reply to: Insert Image – Open in Lightbox #243703

    Hey Eleina_Shinn!

    Actually the template builder image element never offered such an option. You can use a textblock element and the “Add Media” button to insert an image into the textblock. Make sure the link points to the “Media File” and Enfolds will use the lightbox to open it.

    Regards,
    Peter

    in reply to: Issue with SmoothScroll #243701

    Hey!

    Try to place the headline inside the a href element:

    
    <a name="ecosystem">L’écosystème SQLI</a>
    

    The height of the element must be 1px or more. Otherwise the smoothscroll animation doesn’t work.

    Regards,
    Peter

    in reply to: Widen Nav Columns from three units to four units #243699

    Hey Bru141!

    You need to increase the size of the dropdown menu. Insert this code into the quick css field:

    
    @media only screen and (min-width: 1140px){
    .responsive .container .avia-menu .six.units {
    width: 490px;
    }
    }
    

    and replace 490px with any other custom width value (i.e. 600px).

    Cheers!
    Peter

    in reply to: Wonky navigation menu links #243696

    Hi!

    Glad you found the problem :)

    Cheers!
    Peter

    in reply to: Transparent or smaler Header on mobile #243695

    Hey!

    Please activate Enfold and we’ll look into it. It seems like another theme is used at the moment.

    Best regards,
    Peter

    in reply to: Siderbar is not showing on Home page #243694

    Hey!

    The sidebar is shown at the very bottom of the page (below “WHAT OTHERS SAY ABOUT US”). If you want to show it next to the content you must remove the color sections because these sections will expand across the entire page width and they push the sidebar down.

    Cheers!
    Peter

    in reply to: menu managemen problem #243691

    Hi area97!

    Please try to re-upload all theme and wordpress files again. I recommend to use ftp to install all files and to overwrite all existing files on the server. It seems like something causes a js error on the menu editor page and I guess it’s a corrupt wordpress or theme file. Also make sure that the latest theme (and wordpress version) is installed and try to deactivate all plugins – maybe a plugin triggers a js conflict on the menu editor page.

    Best regards,
    Peter

    in reply to: Color of Bold #243690

    Hi!

    This is a chrome bug which will be fixed in the next version – see https://code.google.com/p/chromium/issues/detail?id=332958
    For now I recommend to remove the

    
    -webkit-text-stroke: 0.5px;
    

    attribute from Ismaels code – it will give you better results.

    Cheers!
    Peter

    in reply to: Fullscreen slider doesn't work on opera #243689

    Hey!

    Ok, I can’t test it with a Mac. I’ll mark it for Kriesi.

    Cheers!
    Peter

    Hey bonsitemor!

    In functions-enfold.php replace:

    
    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    with

    
    if($breadcrumb) $additions .= yoast_breadcrumb('<p id="breadcrumbs">','</p>', false);
    

    Best regards,
    Peter

    in reply to: Parallax and Internet Explorer #243683

    Hi!

    I marked this thread for Kriesi.

    Regards,
    Peter

    in reply to: Display products in a category from the menu #243681

    Hey!

    Go to Appearance > Menus and click the “Screen Options” tab in the top right corner. Select the “Products Category” checkbox and then wordpress will show a new option field on the left side where you can select category links for your menu.

    Best regards,
    Peter

    in reply to: Offset problem on the Home #243678

    Hey!

    The offset function works properly but you must place the slider underneath the blog element if you want to use the offset function. The reason is that the page source code is executed from top to bottom and if the slider element is called before the blog post query the offset is set to zero because no blog posts are displayed on the page yet. If you i.e. activate the offset feature on the blog element underneath the slider you’ll notice that the blog doesn’t display any posts at all because the post slider already shows all posts and the offset of the blog element would remove all posts. I placed the slider underneath the blog element now and the offset is calculated properly.

    Best regards,
    Peter

    in reply to: Adding Images to the Search Result #243677

    Hi!

    Open up includes/loop-search.php and replace:

    
    echo "<h2 class='post-title entry-title'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".get_the_title()."</a></h2>";
    

    with

    
    $slider = get_the_post_thumbnail(get_the_ID(), 'entry_without_sidebar');
    if($slider) $slider = '<a href="'.get_permalink().'">'.$slider.'</a>';
    if($slider) echo '<div class="big-preview">'.$slider.'</div>';
    echo "<h2 class='post-title entry-title'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".get_the_title()."</a></h2>";
    

    Cheers!
    Peter

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

    Hi!

    Please create me an admin account and post the login credentials as private reply – I’ll check why it’s not working for you.

    Cheers!
    Peter

    in reply to: Error in Fullwidth Masonry #243674

    Hi!

    Please update WordPress to 3.8.1.

    Best regards,
    Peter

    Hey!

    Which OS do you use? I can’t reproduce the issue with Win8 and Chrome/FF/IE: http://www.screenr.com/40SN
    Maybe try to deactivate all browser extensions to make sure that the effects/animations are not affected by the extensions.

    Best regards,
    Peter

Viewing 30 posts - 4,351 through 4,380 (of 9,352 total)