Forum Replies Created

Viewing 30 posts - 6,421 through 6,450 (of 9,352 total)
  • Author
    Posts
  • Hi!

    1) I’m not sure – are you using a template (Advanced Layout Editor) or the standard blog page? If you use the template builder you can activate/deactivate the read more link on the blog element option screen. If you’re using the default blog page open up index.php and replace

    
    $atts 	= array('type' => 'grid', 'items' => get_option('posts_per_page'), 'columns'=> 3, 'class'=>'avia-builder-el-no-sibling', 'paginate'=>'yes');
    

    with

    
    $atts 	= array('contents' => 'excerpt_read_more', 'type' => 'grid', 'items' => get_option('posts_per_page'), 'columns'=> 3, 'class'=>'avia-builder-el-no-sibling', 'paginate'=>'yes');
    

    2) No, but you can install a redirect plugin like: http://wordpress.org/plugins/redirection/ which always redirects the user back to the portfolio page if he/she tries to access the single entry page. The advantage would be that search engines won’t index the empty portfolio item page too.

    Cheers!
    Peter

    in reply to: Contact form issues (not sending) #191366

    Hey!

    I just tested the contact form with my “spam” mail address (ymail address: (Email address hidden if logged out) ) and it worked just fine. The mail was marked as spam mail – probably because I used some weird, random text to test the contact form. Please try to use another email address or check the spam folder – maybe gmail marks it as spam mail too.

    Best regards,
    Peter

    • This reply was modified 11 years, 3 months ago by Dude.
    in reply to: Compatibility of WPMUDev's Events+ plugin or Calendarize It! #191362

    Hi!

    1) Insert following code at the bottom of funtions.php to remove the link

    
    add_filter('avf_title_args', 'avia_remove_title_link', 10, 2);
    function avia_remove_title_link($args,$id)
    {
        $args['link'] = false;
        return $args;
    }
    

    2) Use the code I posted here: https://gist.github.com/InoPlugs/7577333 but replace 2563 with your page id. I know it’s weird that the events page doesn’t show up like a normal page but here: http://tri.be/support/forums/topic/how-to-find-the-events-page-id-or-name/ you’ll get the answer.

    Cheers!
    Peter

    in reply to: Replace Theme breadcrumbs #191360

    Hey!

    Yes, you need to insert the entire avia_title() function into the child theme functions file. Search for

    
    if(!function_exists('avia_title'))
    

    and copy the function code. Then insert it at the very bottom of the child theme functions.php file. Afterwards change the line I mentioned in my last post.

    Best regards,
    Peter

    in reply to: Logo Issue with IE8 and New Update #191359

    Hi!

    Yes, I just need access to the theme option page to write some code into the quick css field.

    Cheers!
    Peter

    in reply to: updating prettyPhoto in child theme #191358

    Hey!

    Yes, true will make sure that the prettyphoto script loads at the bottom of the page (footer section). I’m not sure why the code doesn’t work for you that’s why I tried to change different things to get it working. You can also set it back to false if “true” doesn’t work. As mentioned in my last post I changed the priority from 100 to 10 because the low priority of 100 may breaks the lightbox script. By default a priority of 10 is used for actions.

    Cheers!
    Peter

    in reply to: Disable Responsive Menu animation #191357

    Hey Glyphism!

    It’s not easily possible to change the animation effect and it’s beyond the scope of our support forum. You need to change some parts of the menu function in enfold/js/avia.js (search for function avia_responsive_menu() ) and probably some lines of the menu css code. I recommend to hire a freelancer if you’re not familiar with jquery/css. See: http://kriesi.at/contact/customization or http://www.microlancer.com/

    Best regards,
    Peter

    in reply to: Logo Issue with IE8 and New Update #191062

    Hey!

    You can try to increaste the height of the header container. Use following code

    
    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 116px;
    line-height: 116px;
    }
    

    and increase/decrease the px value if necessary.

    If the code above still doesn’t work for you please create me an admin account and post the login data as private reply. You can also send it to: (Email address hidden if logged out) if you don’t want to post the login credentials in the forum). I can’t debug the css code with the debugbar of IETester and I need a direct access to the quick css field to check if my css code changes work or not.

    Cheers!
    Peter

    in reply to: Googlebot can’t access your site #190964

    Hi manzo!

    Try following code instead

    User-agent: *
    Disallow: /wp-admin
    Disallow: /wp-includes

    Best regards,
    Peter

    in reply to: Compatibility of WPMUDev's Events+ plugin or Calendarize It! #190962

    Hey!

    You can use the code I uploaded here: https://gist.github.com/InoPlugs/5442030 to change the title. Insert it at the very bottom of functions.php and instead of “Events List”, etc. insert your custom page title.

    Cheers!
    Peter

    in reply to: Masonry Portfolio #190929

    Hi!

    Please try to flush the permalinks. Go to Settings > Permalinks and hit the “Save” button.

    Cheers!
    Peter

    in reply to: WPML 3.0 compatibility #190928

    Hey Oli!

    Yes, there’s just a minor issue with the meta tag output but it will be fixed with th next WPML update ( http://wpml.org/forums/topic/filter-for-head_langs-function/)

    Cheers!
    Peter

    in reply to: Problem Loading The Retina Images #190885
    This reply has been marked as private.
    in reply to: QTRANSLATE #190883

    Hey silviouk!

    No, the color section is only available as “template builder” element and you can’t insert it into the content by using a shortcode. The reason is that all fullwidth elements (LayerSlider, color section, masonry gallery, etc.) require a special template structure and you can’t create it by embedding a shortcode into a text content.

    Regards,
    Peter

    in reply to: 404 – strange permalink problems II #190880

    Hi!

    It works now. However note that you MUST use the same portfolio slug (Enfold > General Settings > “Portfolio: Enter a page slug that should be used for your portfolio single items” option) for all languages because the theme can’t register the translated permalinks on your server without breaking the existing permalinks. I had to comment out following line in /wp-content/themes/enfold/config-wpml/config.php to get the permalinks to work

    
    add_action( 'init', 'avia_wpml_register_post_type_permalink', 20);
    

    Normally the code will register new permalink rules for every language but in your case the server just stops to process these rules and the end result is that all permalinks won’t work. There seems to be some kind of limitation which doesn’t allow Enfold to register more permalink rules…

    Best regards,
    Peter

    in reply to: change thumbnail #190875

    Hey reisp!

    I’m not sure if you can change the crop position for each image individually but this plugin: http://wordpress.org/plugins/thumbnail-crop-position/ will help you to change it (at least for all images but maybe you can also select the images somehow). By default wordpress will center crop all images and you can’t change the crop position of the generated thumbnails manually.

    Regards,
    Peter

    in reply to: thumbnails shifting #190870

    Hey!

    Please try to insert following code into the quick css field to fix the issue

    
    #top .alignleft a,  #top .alignleft a:hover, #top .alignleft img, #top .alignright a,  #top .alignright a:hover, #top .alignright img, #top .aligncenter a,  #top .aligncenter a:hover, #top .aligncenter img{position: relative;}
    

    Regards,
    Peter

    in reply to: Content Slider Image Dissapears #190867

    Hi!

    I tagged the thread for Kriesi. I couldn’t find a js error or any obvious conflict which causes this issue and I’m not sure why it’s not working. The only suggestion I have is to re-install the theme and wordpress via ftp and to overwrite all existing files. Maybe a js file is corrupt and thus the media gallery doesn’t work properly.

    Best regards,
    Peter

    in reply to: very weird css issues – check video #190865

    Hey!

    I think I found a solution with the chrome dev console – try to add following code into the quick css field

    
    .content:hover, .sidebar:hover{
    z-index: 1;
    }
    

    Best regards,
    Peter

    in reply to: Full screen slider caption truncated in ipad #190855

    Hey!

    Yes – you can use a media query to change the caption position based on the screen size. Insert the code into the quick css field and change the max-width value (screen size which triggers the position change) if necessary:

    
    @media only screen and (max-width: 1280px){
    .caption_right .slideshow_caption {
    right: auto;
    }
    }
    

    Cheers!
    Peter

    in reply to: Nexus 7 and enfold #190854
    This reply has been marked as private.
    in reply to: Contact form issues (not sending) #190852

    Hi JaredBurnett!

    Did you try to use a smtp plugin: http://wordpress.org/plugins/easy-wp-smtp/ ? If the smtp plugin doesn’t work please create us an admin account and we’ll look into it.

    Best regards,
    Peter

    in reply to: updating prettyPhoto in child theme #190850

    Hi!

    The enqueue/dequeue name shouldn’t be a problem – however if you think it causes the issue try following code instead

    
    add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 10);
    
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    
    	wp_register_script( 'avia-js-child-theme', $child_theme_url.'/js/googlelink.js', array('jquery'), 1, false );
    	wp_enqueue_script( 'avia-js-child-theme' );
    
    	wp_dequeue_script('avia-prettyPhoto');
    	wp_register_script( 'avia-newlightbox', $child_theme_url.'/js/jquery.prettyPhoto.js', array('jquery'), "2.0", true);
    	wp_enqueue_script( 'avia-newlightbox' );
    }
    

    I also changed the priority from 100 to 10 – maybe 100 is too late for the lightbox script…

    Regards,
    Peter

    in reply to: Site Admin is really slow – I mean really slow #190537

    Hi!

    I always recommend 128M. Some hosters allow up to 256M.

    Cheers!
    Peter

    in reply to: Random images #190534

    Hi!

    Try to insert following code at the bottom of functions.php

    
    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'rand';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
    

    If it still doesn’t work try to deactivate all third party plugins – maybe a plugin hooks into the query and changes the order.

    Regards,
    Peter

    in reply to: Enfold – oEmbeded Video #190531

    Hi Bruno!

    I tested the video and it seems to work for me ( http://www.screenr.com/JOoH ). The video loaded slow because of my (mobile) internet connection I’m using at the moment but it worked. Maybe a browser extension blocks the video content? Did you try the other method I mentioned here: https://kriesi.at/support/topic/fallback-oembeded-video/ ?

    Cheers!
    Peter

    in reply to: change logo image for scrolled header #190527

    Hey!

    Cheers!
    Peter

    in reply to: Soundcloud embed fix #190520

    Hey brandonguy!

    Actually I’m not sure if this hack is the best solution. You can also use the default embed shortcode: http://codex.wordpress.org/Embeds which also supports Soundcloud .

    Regards,
    Peter

    Hi chartier!

    You can use following css code to show the icons on smaller screens too – insert it into the quick css field

    
    @media only screen and (max-width: 767px){
    .responsive .template-blog .blog-meta, .responsive .post_author_timeline, .responsive #top #main .sidebar {
    display: block;
    }
    }
    

    Regards,
    Peter

    in reply to: Replace Theme breadcrumbs #190512

    Hi basilicon!

    Open up enfold/enfold-functions.php and replace

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

    with

    
    if($breadcrumb) $additions .= bcn_display(true);
    
    

    Best regards,
    Peter

Viewing 30 posts - 6,421 through 6,450 (of 9,352 total)