Forum Replies Created

Viewing 30 posts - 6,361 through 6,390 (of 9,352 total)
  • Author
    Posts
  • in reply to: Formidablepro CSS compatibility with Enfold #193570

    Hi!

    The code seems to work for me: http://www.clipular.com/c/5928178371526656.png?k=cfjfigyA49Ib4kU7psRp7qR8s5I and the caption underneath the input field displays without a margin – did you try to clear the browser cache?

    Regards,
    Peter

    in reply to: Formidablepro CSS compatibility with Enfold #193535

    Hey!

    Try to insert following code into the quick css field

    
    #top .frm_form_fields input[type="text"], #top .frm_form_fields input[type="input"]{
    margin-bottom: 0;
    }
    

    Best regards,
    Peter

    in reply to: Probleme with plugin Premium SEO Pack #193452

    Hey!

    It seems like the SEO plugin tries to execute the product slider shortcode before the WooCommerce class is available. The visibility_meta_query() function is a member of the WC_Query class (defined in /wp-content/plugins/woocommerce/classes/class-wc-query.php ) and without this class our product slider shortcode won’t work. You need to contact the plugin author and ask him how to make sure that the seo plugin loads after the woocommerce plugin is ready. Alternatively you can try: http://wordpress.org/plugins/wordpress-seo/ which works with Enfold out of the box.

    Cheers!
    Peter

    in reply to: SSL Problem #193428

    Hi!

    You can try to replace following code in header.php

    
    	 if (function_exists('avia_favicon'))    { echo avia_favicon(avia_get_option('favicon')); }
    

    with

    
    	 if (function_exists('avia_favicon'))
         {
            $avia_favicon_url = avia_get_option('favicon');
             if(!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') $avia_favicon_url = str_replace("http://", "https://", $avia_favicon_url);
             echo avia_favicon($avia_favicon_url);
         }
    

    and in /wp-content/themes/enfold/framework/php/function-set-avia-frontend.php replace

    
    $logo = "<img src='{$logo}' alt='{$alt}' />";
    

    with

    
    if(!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') $logo = str_replace("http://", "https://", $logo);
     $logo = "<img src='{$logo}' alt='{$alt}' />";
    

    Make sure that the image urls (theme option panel) use http:// as the default protocol.

    Regards,
    Peter

    in reply to: Pop Up Image resizing – 2 #193348

    Hi!

    First please excuse the late reply. You can change the lightbox image size for all images easily. Open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php and replace

    
    $this->loop[$key]['url'] =  $custom_url ? $custom_url : reset(wp_get_attachment_image_src($id, 'large'));
    

    with

    
    $this->loop[$key]['url'] =  $custom_url ? $custom_url : reset(wp_get_attachment_image_src($id, 'full'));
    

    I’ll ask Kriesi to include a filter in the next version which allows you to change the size with your child theme.

    Regards,
    Peter

    Hey!

    Versuche die nohover Klasse auch zu den umgebenden Links hinzuzufügen. Daher zB

    
    <a href="http://www.naturheilpraxis-eden.ch/naturheilkunde/">
    <img class="aligncenter noHover" title="Naturheilkunde in der Naturheilpraxis Eden" alt="Naturheilkunde in der Naturheilpraxis Eden Naturheilpraxis Eden" src="http://www.naturheilpraxis-eden.ch/wp-content/uploads/2013/04/Naturheilkunde-in-der-Naturheilpraxis-Eden.jpg" width="180" height="180" />
    </a>
    

    wird zu

    
    <a href="http://www.naturheilpraxis-eden.ch/naturheilkunde/" class="noHover">
    <img class="aligncenter noHover" title="Naturheilkunde in der Naturheilpraxis Eden" alt="Naturheilkunde in der Naturheilpraxis Eden Naturheilpraxis Eden" src="http://www.naturheilpraxis-eden.ch/wp-content/uploads/2013/04/Naturheilkunde-in-der-Naturheilpraxis-Eden.jpg" width="180" height="180" />
    </a>
    

    – dass sollte den Hover Effekt nicht nur vom Bild, sondern auch vom umgebenden Link entfernen und dadurch wird auch das Icon + das Overlay entfernt.

    Es ist derzeit nicht möglich die gesamte Iconbox zu verlinken. Einfach einen Link “drumherum” setzen geht nicht, da man dabei invaliden html erzeugen würde und die Alternative wäre nur jedes einzelne Teilelement (Icon, Textbereich, umgebenden Container, etc.) mit den gleichen Link auszustatten, dass wiederum wäre aber schlecht für SEO und würde überdies einiges an Arbeit erfordern (Template Code Rewrite, etc.).

    Best regards,
    Peter

    in reply to: Pagelink in Breadcrumb twice #193340

    Hey!

    You can also put it into your child theme – then you don’t need to modify functions.php every time you update the theme.

    But what is the reason for this? Does it affect all users of woocommerce?
    No, afaik you’re the first user who reported this issue – that’s why I had to debug the breadcrumb output first. It seems like wordpress adds the same page id (shop page) to your breadcrumb several times but I’m not sure why. Maybe a third party plugin causes the issue or it’s a configuration issue with the WooCommerce shop page but I’m not sure. I’ll monitor the support forum and if more users report the same issue we’ll check the code of our breadcrumb function.

    Best regards,
    Peter

    in reply to: Problem mit bbPress #193336

    Hi daujoons!

    Kannst du mir bitte einen Admin Account einrichten und die Login Daten als “private reply” senden? Ich muss zugeben, dass ich ad hoc auch nicht weiß warum bbpress keinen Menüpunkt hinzufügt und ich muss mir die Sache selbst erst ansehen.

    Cheers!
    Peter

    in reply to: Pagelink in Breadcrumb twice #193332

    Hi!

    Yes, I just read your last post – try following code instead

    
    if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
    		$urls = array();
            foreach($trail as $key => $data)
            {
            	if(in_array($data, $urls))
            	{
            		unset($trail[$key]);
            	}
            	else
            	{
            		$urls[] = $data;
            	}
            }
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    

    Regards,
    Peter

    in reply to: Pagelink in Breadcrumb twice #193329

    Hi!

    Ok, now try to insert following code instead

    
    if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
            foreach($trail as $key => $data)
            {
                if(strpos($data,'href="http://bildmanufaktur-wackernah.de/shop/"') !== false) unset($trail[$key]);
            }
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    

    Does it solve the issue?

    Cheers!
    Peter

    in reply to: Pagelink in Breadcrumb twice #193315

    Hey!

    I can’t modify the theme files and thus I can’t debug the issue. We need to know how the breadcrumb trail look like. Insert following code into the theme functions.php file

    
    if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
            print_r($trail);
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    

    and Enfold should output some new text/code at the very top of the page (i.e. here: http://bildmanufaktur-wackernah.de/shop/ebooks/ ). Please copy it and post it in this thread.

    Best regards,
    Peter

    in reply to: Change breadcrumbs on Single Blog page #193306

    Hi!

    We need to know how the breadcrumb trail look like. Insert following code into the theme functions.php file

    
    if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
            print_r($trail);
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    

    and Enfold should output some new text/code at the very top of the page (“automatic concepts” archive page). Please copy it and post it here.

    Cheers!
    Peter

    in reply to: Not displaying correctly in IE 11 #193304

    Hi RevolutionGroup!

    Please try to deactivate all browser IE11 extensions and clear the browser cache. I just tried to reproduce the issue and compared IE9 (IETester version) with IE11 but I didn’t notice a styling flaw: http://www.screenr.com/c0eH . The icons displayed fine for me and there was a light grey border around the dropdown menus in both browsers.

    Regards,
    Peter

    in reply to: Ajax portfolio #193297

    Hey!

    Yes, you can use this code – insert it into the functions.php file at the very bottom:

    
    add_filter('avia_post_grid_query','avia_order_by_random');
    function avia_order_by_random($query)
    {
    	$query['orderby'] = 'title';
    	$query['order'] = 'ASC';
    	return $query;
    }
    

    to change the order. Instead of title you can also insert “date” (date sort order) or “rand” (for a random sort order). You can also replace ASC (ascending order) with DESC (descending order).

    You can also install a plugin like: http://wordpress.org/plugins/post-types-order/ which helps you to apply a custom order to your posts (with drag’n’drop).

    Regards,
    Peter

    in reply to: Footer / Socket at the bottom #193293

    Hi!

    Unfortunately you can’t do such a calculation with css code. It would require js/jquery calculations and the disadvantage would be that it causes some sort of stutter/page shift when the page loads and the browser executes the js code whereas the css code kicks in immediately as soon as the other styling code is loaded.

    Cheers!
    Peter

    in reply to: How to Reuse the avia-menu classes to set up custom menu? #193292

    Hi ChadRichardFlorida!

    Try to insert following code into the quick css field and the sub-menu list should work

    
    .textwidget ul {
    overflow: visible;
    }
    

    Best regards,
    Peter

    in reply to: Add custom color scheme #193291

    Hey alkaithil!

    The color sets are defined in /wp-content/themes/enfold/includes/admin/register-backend-styles.php – it’s an array which uses the color scheme name as key and each color scheme contains a sub-array which stores the color values. You can modify the array directly or use the “avf_skin_options” filter ( http://codex.wordpress.org/Function_Reference/add_filter ) to add your custom schemes.

    Cheers!
    Peter

    in reply to: Reduce the width of fullwidth masonry gallery #193290

    Hi!

    Sure, insert following code into the quick css field

    
    .av-masonry-container {
    margin: auto;
    width: 1030px;
    float: none;
    }
    

    Best regards,
    Peter

    in reply to: Icon Boxes in Content Slider #193104

    Hi!

    Actually it can be done with a plugin but it seems like Kriesi blocked it. I’m not sure if this limitation is intentional or just an oversight but you can definitely bypass it. In /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider.php replace

    
    'content'		=> ShortcodeHelper::shortcode2array($content),
    

    with

    
    'content'		=> ShortcodeHelper::shortcode2array($content, 1),
    

    and the content slider should process any shortcode you want to use within the content slider text. I’ll mark this thread for Kriesi in case he wants to change it in the next version.

    Cheers!
    Peter

    in reply to: Blog-Views – why so complicate ?? #192948

    Hey!

    Then ask for a refund – if you’re not happy with Enfold because of the “obscure and complicated code” or with our support service you can use another theme. I recommend to ask your developer which theme he wants to use and then start to build your website with that theme. I think we reached the point where we all start to waste our time with non constructive threads and posts. You can contact Envato here: http://support.envato.com/ if you want to request a refund.

    Cheers!
    Peter

    in reply to: Translation error or bug ? #192942

    Hey!

    We already updated the translation and we’ll include it with the next version. For now you can download the updated mo file here http://www.xup.in/dl,13346393/de_DE.mo/ and place it into the enfold/lang folder (overwrite the existing mo file).

    Regards,
    Peter

    in reply to: multi markers Google Maps plugin for Enfold Theme #192894

    Hey Adolfo Lucio!

    Personally I tried http://www.wpgmaps.com/ – I didn’t test all features/options but I tested some of them with Enfold and it worked pretty well. You can create multiple markers, create several maps with different markers, upload custom marker images, etc.

    Regards,
    Peter

    Hi!

    The template-builder.php file is used if a fullwidth element (like “Color Section”, LayerSlider, “Fullwidth Masonry Gallery”) is used in the advanced layout. Otherwise WordPress will use the default single-portfolio.php template.

    Cheers!
    Peter

    Hey!

    1) We can’t access the server because a authentication window pops up (username/password required).

    2) Please create us an admin account and post the login data as private reply.

    Regards,
    Peter

    in reply to: Blog-Views – why so complicate ?? #192866

    Hi!

    There’s no archive/blog template which equals 1) + 2). You could use the “Single Author, big preview Pic (no author picture is displayed, feature image is big)” option: http://kriesi.at/themes/enfold/blog/blog-single-small/ but this template does not show such a big thumbnail on the left side and you’d need to customize the includes/loop-index.php file. Depending on your php/html skills I recommend to hire someone here: http://www.microlancer.com/ or here: http://kriesi.at/contact/customization

    The single post layout (no.3) can be selected on the theme option page “Enfold > General Settings > Single Post Style”. I recommend to use the “Single post with big preview image (featured image)” option

    Cheers!
    Peter

    in reply to: mobile logo blurry – gets techy – and complicated #192852

    Hey!

    Yes, the solution sounds reasonable to me. You can also try to install a plugin like: http://wordpress.org/plugins/wp-retina-2x/ which will replace the default image with a high res version of the same image if it’s available.

    Regards,
    Peter

    in reply to: Pagelink in Breadcrumb twice #192849

    Hi!

    Please create us an admin account and post the login credentials as private reply – we’ll look into it.

    Cheers!
    Peter

    in reply to: Disable Default Editor #192846

    Hey!

    I marked this thread for Kriesi. Personally I’m not aware of an easy solution to complete deactivate the default editor but maybe Kriesi can provide some tips.

    Regards,
    Peter

    in reply to: Alt text not appearing in source code #192845

    Hi websitegurus!

    We’ll include the alt attribute in the next version. Kriesi forgot to add (and the schema.org markup) when he created the element. I went through the code and optimized it (SEO). You can download the new version of the template here: http://pastebin.com/uDMeeZZR

    Regards,
    Peter

    in reply to: SSL Problem #192839

    Hey Torsten!

    The favicon and logo url depends on your input and it’s not a theme issue. If you want to replace http with https go to Enfold > Theme settings and make sure that the image urls use the https:// protocol instead of http://. If you need to change it click into the text field of the logo/favicon url option and add the “s” to http://.

    Cheers!
    Peter

Viewing 30 posts - 6,361 through 6,390 (of 9,352 total)