Forum Replies Created

Viewing 30 posts - 7,231 through 7,260 (of 9,352 total)
  • Author
    Posts
  • in reply to: Color Section Border erstellene #165508

    Hey crevlon!

    Du kannst den Border mit folgenden CSS Code hinzufügen

    
    .avia-section {
    border-top: 5px solid;
    border-bottom: 5px solid;
    border-left: 5px solid;
    border-right: 5px solid;
    }
    

    5px gibt die Breite des Borders an und man kann jeden x-beliebigen (positiven) Wert stattd 5px verwenden. Eine Auflistung aller unterstützen Attribute findest du hier: http://www.css4you.de/border.html

    Regards,
    Peter

    in reply to: Seit Update 2.2 Probleme #165507

    Hey crevlon!

    Könntest du bitte einen Link (bzw Links) zu den Seiten posten, wo diese Überschriften zu sehen sind? Ich werde mir den CSS Code ansehen und dir dann die benötigten CSS Änderungen übermitteln.

    Best regards,
    Peter

    in reply to: Accordion and tabs not showing in ajax portfolio #165506

    Hey!

    I didn’t receive a mail. Please send me the login data again.

    Cheers!
    Peter

    in reply to: Gallery #165504

    Hi gharry79!

    1) Die Thumbnails werden beschnitten, damit die Höhe der Bilder einheitlich ist. Würde zB das Bildverhältnis zweier Thumbnails unterschiedlich sein
    so entsteht ein Raster mit unterschiedlich hohen Elementen, welches dann nicht schön aussieht.

    2) Die Thumbnails sind unscharf, weil du eine kleine Thumbnailgröße ausgewählt hast (80x80px). Wähle bei der “Preview Image Size” eine andere Thumbnailgröße und die Bilder sollten scharf werden

    Regards,
    Peter

    in reply to: WPML Breaks all URL's #165164

    Hello!

    I found the problem. I just had to change the permalink to /%category%/%postname%/, then I saved the settings and changed it back to /%postname%/ – now all links work and only the French flag returns a 404 error because you didn’t set a frontpage yet ( http://focusbarcelona.com/wp-admin/admin.php?page=avia&lang=fr&admin_bar=1 )

    Regards,
    Peter

    Hey!

    I fixed it on your server. I’m not sure why the blog page doesn’t work in your case (I can’t reproduce the issue on my test servers) but I found a simple fix.

    Best regards,
    Peter

    in reply to: I want to Hire a Freelance for Enfold Theme Work #165073

    Hi qlegrand!

    I recommend to post the job here: http://www.microlancer.com/

    Regards,
    Peter

    Hello!

    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: Blog Posts "Excerpt with Read More Link" replaces post title #164760

    Hey!

    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. I can reproduce the issue and imo it’s a problem with the php code which generates the title.

    Best regards,
    Peter

    in reply to: Portfolio order #164378

    Hi DavyE!

    Actually you can change the order with a filter – i.e. add following code to 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);
    

    and all portfolio grids will use a random order for the entries. However the tricky part is to change the order of some grids only. I recommend to change the order based on the current page id – in your case the code would look like

    
    function custom_post_grid_query( $query, $params ) {
    if(is_page(array(42,50,45))) $query['orderby'] = 'rand';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
    

    and instead of 42, 50, 45 insert the page ids of those pages which should display the portfolio grid(s) in a random order. You can separate the ids with a comma.

    Regards,
    Peter

    in reply to: Logo ginned #164376

    Hi!

    Yes, open up enfold/js/avia.js and delete following code

    
            // decreases header size when user scrolls down
            avia_header_size();
    

    Cheers!
    Peter

    in reply to: WooCommerce Layered Navigation / Avia Integration #164373

    Hey!

    The shop page (like all other woocommerce pages like the cart page, the single product page and the product archive pages) are not compatible with the layout builder. The reason is that many WooCommerce shop extensions rely on the default shop templates and the advanced layout templates may break the default html structure of the shop templates. If you notice styling problems, etc. with your advanced layout on the shop page please switch to the default editor and use some standard content (and shortcodes) instead.

    Cheers!
    Peter

    in reply to: Blog Posts "Excerpt with Read More Link" replaces post title #164372

    Hey!

    I can’t see the two columns on your website anymore. Please create a demo page which demonstrates the issue and post a link to the page. Ismaels answer helps us to find the issue though – if he couldn’t reproduce the issue it’s either a problem on your end (browser plugin, wordpress plugin conflict which just affects logged in users) or it’s a browser/os specific issue and only a few users (who use the same browser/os) will notice it.

    Regards,
    Peter

    in reply to: Cannot access Editor #164371

    Hello!

    Yes, I’d recommend to edit the file with a proper text editor and to use ftp to download/upload the file (it can be found in the wp-content/themes/enfold/ directory). You can also try an advanced theme editor plugin like: http://wordpress.org/plugins/solid-code-theme-editor/

    Best regards,
    Peter

    in reply to: How to customize google custom search? #164370

    Hello!

    You can use the wp_nav_menu_items filter to add list items to the menu. I.e. Kriesi uses this filter to add the search icon to the main menu. The code looks like

    
    	add_filter( 'wp_nav_menu_items', 'append_google_search_nav', 10, 2 );
    	function append_google_search_nav( $items, $args )
    	{		
    	    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    	    {
    	        global $avia_config;
    	        ob_start();
    	        get_search_form();
    	        $form =  htmlspecialchars(ob_get_clean()) ;
    
    	        $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="'.$form.'">'.$avia_config['font_icons']['search'].'</a></li>';
    	    }
    	    return $items;
    	}
    

    – instead of

    
    	        global $avia_config;
    	        ob_start();
    	        get_search_form();
    	        $form =  htmlspecialchars(ob_get_clean()) ;
    
    	        $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="'.$form.'">'.$avia_config['font_icons']['search'].'</a></li>';
    

    insert your search form code – i.e.

    
    	        $items .= '<li id="menu-item-google-search">YOUR SEARCH FORM CODE</li>';
    

    and add the code to the bottom of functions.php.

    Cheers!
    Peter

    in reply to: Animated content #164365

    Hi!

    Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I need to check the configuration first hand. It seems like all css class which are responsible for the animations are missing.

    Cheers!
    Peter

    in reply to: 2.2 Upgrade Issue #164364

    Hello!

    You can set a custom logo on the option page (Enfold > General Settings).

    Regards,
    Peter

    in reply to: Menu deaktivieren #164360

    Hey!

    Ja, aber ich hatte einen Tippfehler im Code (display. none obwohl es display: none sein sollte). Nein, ein paar Zeilen von CSS Code verlangsamen die Seite nicht. Aber große Stylesheets mit 200 & mehr Zeilen benötigen natürlich etwas Ladezeit und verlangsamen die Ladezeit etwas.

    Regards,
    Peter

    in reply to: Sticky Post #164358

    Hi!

    Ich kann diesen Fehler nicht reproduzieren, aber ich werde Kriesi fragen, ob er eine bessere Lösung/workaround für sticky posts hat.

    Best regards,
    Peter

    in reply to: Sticky Post #164137

    Nach etwas Recherche scheint dies ein Bug von WP zu sein ( http://wordpress.stackexchange.com/questions/87472/ensuring-sticky-posts-are-retrieved-first-without-using-two-queries ) – anscheinend werden die “Sticky” Posts teilweise ignoriert. Ich habe den Code ganz am Ende des Threads getestet und eine leicht modifizierte Version funktioniert für mich:

    
    add_filter('the_posts', 'bump_sticky_posts_to_top');
    function bump_sticky_posts_to_top($posts) {
        foreach($posts as $i => $post) {
            if(is_sticky($post->ID)) 
            {
                $stickies[] = $post;
                unset($posts[$i]);
            }
        }
        
        if(!empty($stickies)) 
            return array_merge($stickies, $posts);
        
        return $posts;
    }
    

    einfach statt dem Code den ich oben gepostet habe in functions.php einfügen.

    in reply to: Floating Widget (using q2w3 widget) is not working in Chrome #164106

    Hi!

    I guess something overwrites the css code – try following code instead

    
    .widget, div.avia-button-wrap, div .avia-button {
    -webkit-backface-visibility: visible !important;
    }
    

    Cheers!
    Peter

    in reply to: Keyboard navigation in portfolio #164078

    Hi agarkitekter!

    Sure, in enfold/js/shortcodes.js comment out/delete following line

    
    target_wrap.avia_keyboard_controls({27:'.avia_close', 37:'.ajax_previous', 39:'.ajax_next'});
    

    Best regards,
    Peter

    in reply to: Enfold + WPML: two issues #164055

    Hey!

    1) You need to translate the menus too (Appearance > Menus). If you use a custom menu widget you need to use the widget logic plugin to translate it – see: http://wpml.org/2011/03/howto-display-different-widgets-per-language/

    3) Because the widget will just show posts from the current selected language. You can translate the widgets though (see 1) ).

    You can remove this flags easily – open up header.php an delete

    
    					/*
    					* Hook that can be used for plugins and theme extensions (currently: the wpml language selector)
    					*/
    		      		do_action('avia_meta_header');
    

    Best regards,
    Peter

    in reply to: Accordion and tabs not showing in ajax portfolio #164016

    Hi!

    You can send me the login data to: (Email address hidden if logged out) and I’ll look into it. I can’t give you my IP though because it’s not static and can change from any moment…

    Cheers!
    Peter

    in reply to: Enfold settings are stored where? #164013

    Hello!

    Yes, wp-options and the templates are saved as post meta data.

    Cheers!
    Peter

    in reply to: Enfold + WPML: two issues #164006

    Hi!

    Btw – you can also save existing advanced layout templates if you don’t want to use the WPML duplicate feature: http://www.screenr.com/ee97

    Cheers!
    Peter

    in reply to: Changing width #164002

    Hey!

    No, this is not easily possible. Enfold supports a 1210px layout and a 1030px layout. The css grid framework is optimized for these container widths and if you change the width of the container you also need to change the width values of the entire css grid. Kriesi suggests ( http://themeforest.net/item/enfold-responsive-multipurpose-theme/discussion/4519990?page=81#comment_4797760 ) to hire a freelancer for the job.

    Regards,
    Peter

    in reply to: Cutomizing portfolio grid categories #164001

    Hey PhilCarabet!

    Go to Portfolio Items > Portfolio Categories and edit the existing categories or add new categories to the list. Then assign your portfolio entries to your categories.

    Regards,
    Peter

    in reply to: Floating Widget (using q2w3 widget) is not working in Chrome #163981

    Hello unitedwc!

    Try to add following code to the quick css field

    
    .widget{
    -webkit-backface-visibility: visible;
    }
    

    Cheers!
    Peter

    in reply to: Remove lightbox/image link from Ajax preview #163971
Viewing 30 posts - 7,231 through 7,260 (of 9,352 total)