Forum Replies Created

Viewing 30 posts - 2,401 through 2,430 (of 3,742 total)
  • Author
    Posts
  • in reply to: "post_delimiter" von "Blog Beiträge" #837405

    Hey dani85,

    Danke, dass Du Enfold benützt.

    Das Zoomen ist ein allgemeines Problem, da Browser keine API anbieten, dies festzustellen und darauf zu reagieren, d.h. das Javascript und CSS der Website kann nicht feststellen, ob der user gezoomt hat.

    In der normalen Ansicht (bei FF Ansicht->Zoom->Normal) kann ich nichts erkennen – die Seite schaut so aus, wie sie im ALB angelegt wurde (Getestet FF und Chrome).

    Best regards,
    Günter

    Hi,

    Can you give me FTP access and a WP admin account to your server, so I can update your file directly? Would be the easiest way.

    You can post it in private content area.

    Best regards,
    Günter

    in reply to: Fehler Menü #837359

    Hey Thomas Hiebsch,

    Siehe voriges Mail.

    LG und einen schönen Tag,
    Günter

    in reply to: Fehler Enfold ? #837358

    Hey Thomas Hiebsch,

    Danke für den Kauf von Enfold.

    Bei Fragen und Problemen bitte unser Forum verwenden, https://kriesi.at/support/register/

    Freut mich, dass das Problem gelöst wurde. Gerne kannst Du bei weiteren Fragen im Forum einen Thread aufmachen.

    Einen schönen Tag noch.

    LG,
    Günter

    Hey screener,

    Danke, dass Du unser Theme verwendest.

    Variation Products werden zur Zeit nicht unterstützt. Ich habe es einmal in die ToDo Liste aufgenommen.

    Es wird aber etwas dauern, bis sich eine Lösung findet. Unter Umständen kann es sein, dass man nur variable Products oder nur Standard products abfragen kann.

    Wäre das eine Option?

    Best regards,
    Günter

    in reply to: Mobile Megamenu subitems not shown after 4.1 Upgrade #837042

    Hi,

    Danke für den Link. Das Problem sollte mit dem nächsten Update behoben sein.

    Falls Du inzwischen doch auf MegaMenu umsteigen möchtest, unter https://pastebin.com/W5eHVZPq findest Du die Korrektur (7 Tage gültig).

    In enfold\js\avia.js um Zeile 1670 findest Du

    
    
    			create_list	  	= function( items , append_to )
    			{
    				if(!items) return;
    				
    				var list, link, current, subitems, megaitems, sub_current, sub_current_list, new_li, new_ul;
    				
    				items.each(function()
    				{
    
    .........
    
    
    							if(mega_title_set) new_li.addClass('av-width-submenu').find('>a').append('<span class="av-submenu-indicator">');
    							create_list( current_megas , new_ul);
    						});
    
    					}
    					
    				});
    				
    				return list;
    			};
    		
    -------- Ende der Ersetzung
    
    		var burger_ul, burger;
    		
    
    
    

    Alles bitte ersetzen mit RAW Paste Data des obigen Link.

    Falls Du Probleme hast, gib uns bitte FTP Zugang und wir spielen Dir die Datei hoch.

    Best regards,
    Günter

    in reply to: In breadcrumbs always showing "Blog" #837010

    Hey Sophie,

    Thank you for using our theme. Sorry for the late reply due to summer holidays.

    This is a standard behaviour of Enfold’s breadcrumb logic, which tries to reflect the hierarchical logic in WP taxonomies.

    A post is part of the blog and therefore reachable via the selected “blog” page in Enfold theme settings. The rest of the breadcrumb is built from the categories, which may also be hierarchical.

    This has nothing to do with the permalink structure.

    Hope, I could help you with this information.

    Best regards,
    Günter

    Hi,

    Freut uns, dass wir Dir helfen konnten.

    Bezüglich Menü: Versuche in die URL des Megamenu # einzugeben.

    Best regards,
    Günter

    in reply to: Foto soll in den Advanced Layer Slider überlappen #836975

    Hi,

    Danke, @guenni007

    Best regards,
    Günter

    Hi,

    In file enfold\config-templatebuilder\avia-shortcodes\blog.php around line 442 you find:

    
    				//if we find categories perform complex query, otherwise simple one
    				if(isset($terms[0]) && !empty($terms[0]) && !is_null($terms[0]) && $terms[0] != "null" && !empty($params['taxonomy']))
    				{
    					$query = array(	'paged' 	=> $page,
    									'posts_per_page' => $params['items'],
                                        'offset' => $params['offset'],
                                        'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(),
                                        'post_type' => $params['post_type'],
    									'tax_query' => array( 	array( 	'taxonomy' 	=> $params['taxonomy'],
    																	'field' 	=> 'id',
    																	'terms' 	=> $terms,
    																	'operator' 	=> 'IN'))
    																	);
    				}
                    else
    				{
    					$query = array(	'paged'=> $page,
                                        'posts_per_page' => $params['items'],
                                        'offset' => $params['offset'],
                                        'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(),
                                        'post_type' => $params['post_type']);
    				}
    
    

    You have to add a date query:

    
    'date_query' => array(	array(	'year'  => $params['year'] ))
    

    that means replace above with:

    
    				//if we find categories perform complex query, otherwise simple one
    				if(isset($terms[0]) && !empty($terms[0]) && !is_null($terms[0]) && $terms[0] != "null" && !empty($params['taxonomy']))
    				{
    					$query = array(	'paged' 	=> $page,
    									'posts_per_page' => $params['items'],
                                        'offset' => $params['offset'],
                                        'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(),
                                        'post_type' => $params['post_type'],
    									'date_query' => array(	array(	'year'  => $params['year'] )),
    									'tax_query' => array( 	array( 	'taxonomy' 	=> $params['taxonomy'],
    																	'field' 	=> 'id',
    																	'terms' 	=> $terms,
    																	'operator' 	=> 'IN'))
    																	);
    				}
                    else
    				{
    					$query = array(	'paged'=> $page,
                                        'posts_per_page' => $params['items'],
                                        'offset' => $params['offset'],
    									'date_query' => array(	array(	'year'  => $params['year'] )),
                                        'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(),
                                        'post_type' => $params['post_type']);
    				}
    
    
    

    And in line 335 you have to add ‘year’ to the default array:

    
    				$atts = shortcode_atts(array('blog_style'	=> '',
    											 'columns' 		=> 3,
                                                 'year'    => 2016,
    
    

    Best regards,
    Günter

    • This reply was modified 7 years, 10 months ago by Günter.
    in reply to: Contact Form Element Bug #836957

    Hi,

    Thanks for the login details.

    I could check your page – the reason is that you hacked the shortcode for the contact form:

    
    
    [av_contact <a class="__cf_email__" href="/cdn-cgi/l/email-protection" data-cfemail="90f5fdf1f9fcadb7f9fef6ffd0e4f9fdf8f5e3e4f5e2bef3fffdbef1e5">[email protected]</a><script data-cfhash='f9e31' type="text/javascript">/* <![CDATA[ */!function(t,e,r,n,c,a,p){try{t=document.currentScript||function(){for(t=document.getElementsByTagName('script'),e=t.length;e--;)if(t[e].getAttribute('data-cfhash'))return t[e]}();if(t&&(c=t.previousSibling)){p=t.parentNode;if(a=c.getAttribute('data-cfemail')){for(e='',r='0x'+a.substr(0,2)|0,n=2;a.length-n;n+=2)e+='%'+('0'+('0x'+a.substr(n,2)^r).toString(16)).slice(-2);p.replaceChild(document.createTextNode(decodeURIComponent(e)),c)}p.removeChild(t)}}catch(u){}}()/* ]]> */</script>' title='' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' form_align='' color='' custom_class='' admin_preview_bg='']
    
    

    The normal shortcode looks something like:

    
    
    [av_contact  (Email address hidden if logged out) ' title='Send us mail' button='Submit' on_send='text' sent='Your message has been sent!' link='' subject='' autorespond='' captcha='' hide_labels='' form_align='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='']
    
    

    This hack breaks the WordPress parser for shortcodes and this leads to default values, because our code relies on that – and all your setting are lost.

    A shortcode must follow the rules defined by WordPress.

    Of course, you are free to adopt the contact form shortcode class if you wish (enfold\config-templatebuilder\avia-shortcodes\contact.php):

    http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Best regards,
    Günter

    • This reply was modified 7 years, 10 months ago by Günter.
    in reply to: Logo and Menu overlapping (mobile) #836941

    Hi,


    @lichtmarketing

    Ihr müsst ein Menü einrichten, damit das funktioniert.

    Ich habe Euch einmal ein Testmenü eingerichtet – nur der Code den Ihr im Quick CSS habt (von Nikko), gehört raus, sonst sind die Menütexte im Mobile nicht sichtbar.

    Ich habe Ihn einmal entfernt.

    Hoffe, dashilft Euch weiter.

    Best regards,
    Günter

    in reply to: Burger/Mobile Menu #836940

    Hi,

    Normally PHP makes type conversions automatically where necessary. And in the database query it is converted to a string anyway.

    Best regards,
    Günter

    Hi,

    If you also want to have the slideshow arrows on mobil, than add the following code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    
    @media only screen and (max-width: 767px) {
              .responsive #top .av-horizontal-gallery .avia-slideshow-controls a{
                    display:block !important;
    }}
    
    

    Best regards,
    Günter

    in reply to: Burger/Mobile Menu #836331

    Hi,

    @faserschmeichler
    @agunda

    Danke, dass Ihr unser Theme verwendet.

    Aufgrund der Urlaubszeit und der vielen offenen Threads sind wir leider etwas im Verzug bei der Beantwortung von Fragen und Problemen.

    Wie ich sehe, habt Ihr bereits eine Lösung gefunden.

    Es handelt sich hierbei um einen Bug, der uns beim Testen leider durchgerutscht ist. Ich werde für die nächste Release eine Lösung finden.

    Ich wünsche noch viel Freude mit dem Theme. Gerne stehen wir wieder bei Fragen und Problemen zur Verfügung.

    LG
    Günter

    Hi,

    Glad we could help you.

    In the code above the content of the select box is missing, should be something like:

    
    
                        array(
                            "name"  => __("Which Year?", 'avia_framework' ),
                            "desc"  => __("Select which year should be displayed", 'avia_framework' ),
                            "id"  => "year",
                            "type"  => "select",
                            "multiple"  => 6,
                            "subtype" => array( __('2015', 'avia_framework') =>'2015',
                                                __('2016', 'avia_framework') =>'2016'
                                              ),
                            "required"  => array('blog_type', 'equals', 'year'),
                        ),
    
    
    

    Best regards,
    Günter

    in reply to: Lizens Fragen #835841

    Hi,

    Danke, dass Du uns kontaktierst.

    Jede Domain erfordert eine eigene Lizenz, d.h. wenn Du planst das Theme auf mehr als einer Domain zu installieren, erfordert dies den Kauf einer Lizenz für jede Domain.

    Die meisten Agenturen kaufen eine reguläre Lizenz für Ihren Kunden und geben Ihnen den “Purchase Code”, so dass Sie sich in unserem Support Forum registrieren können – https://kriesi.at/support/register/. Dann können Sie bei Fragen oder Problemen direkt einen Thread eröffnen.

    Du kannst Ihnen dann auch den ThemeForest username and API key geben, um automatische Updates für das Theme über das WordPress Dashboard zu erhalten (http://kriesi.at/documentation/enfold/updating-your-theme-files/).

    Ich hoffe, diese Info hilft Dir weiter. Gerne stehen wir für weitere Fragen zur Verfügung.

    LG aus Wien
    Günter

    in reply to: Validations #835398

    Hi,


    @guenni007

    Thanks for pointing out the examples. That was very helpful.

    I could narrow down the problem but it needs some deeper investigation what really causes the problem and how to avoid it and/or repair it when it occurs (on already existing pages).

    Best regards,
    Günter

    in reply to: Share links und Datenschutz #835320

    Hi,

    Gerne.

    Viel Freude noch mit dem Theme.

    LG aus Wien
    Günter

    Hi,

    As the next release will take longer, I provide you a temporary fix:

    In File enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php:

    Around line 508 you find:

    
    
    $custom_link = get_post_meta( $id ,'_portfolio_custom_link', true) != "" ? get_post_meta( $id ,'_portfolio_custom_link_url', true) : false;
    if($custom_link) $this->loop[$key]['url'] = $custom_link;
    
    

    Replace this with:

    
    
    $custom_link = get_post_meta( $id ,'_portfolio_custom_link', true) != "" ? get_post_meta( $id ,'_portfolio_custom_link_url', true) : false;
    if( ! empty( $this->atts['container_links'] ) ) $custom_link = '';
    if($custom_link) $this->loop[$key]['url'] = $custom_link;
    
    

    Around line 516:

    
    
    $custom_url = get_post_meta( $id, 'av-custom-link', true );
    
    

    Replace this with:

    
    
    $custom_url = get_post_meta( $id, 'av-custom-link', true );
    if( ! empty( $this->atts['container_links'] ) ) $custom_url = '';
    
    

    This will ignore the custom links if lightbox is active and uses the link, if deactivated.

    Let us know, if this solves your problem.

    Best regards,
    Günter

    Hi,

    Strange – it works on my local install (Enfold 4.1.2, WP 4.8.1).

    Please update to the latest version of Enfold.
    Try to clear server cache if you are using a caching plugin
    Try to clear browser cache and reload the page.
    Try to deactivate all plugins and reactivate one by one and check – might be a plugin conflict.

    If this does not help, please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Günter

    • This reply was modified 7 years, 11 months ago by Günter.

    Hey newyork-manhattan,

    Danke dass Du unser Theme verwendest.

    Klingt nach einem PHP Memory Problem.

    Versuche einmal das WP Memory Limit auf 128M zu setzen, besser wäre noch 256M.

    Folge dazu den Anweisungen (nimm WP_MAX_MEMORY_LIMIT für das Backend):

    https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Unter Umständen musst Du auch Deinen Hoster kontaktieren, um das Limit hinaufsetzen zu können.

    Best regards,
    Günter

    in reply to: link problem with tab section #835028

    Hi,

    Sorry for the late reply.

    As far as I see, this problem should have been fixed with the next update of Enfold.

    As a temporary fix you have to update core file config-templatebuilder\avia-shortcodes\tab_section.php

    Around line 451 you find the code:

    
    
    $tab_link = AviaHelper::save_string($tab_title,'-');
    
    

    Replace this line with:

    
    
    $tab_link = AviaHelper::save_string($tab_title,'-') . '-1';
    
    

    This should fix the problem – please let us know.

    Best regards,
    Günter

    Hi,

    Thank you for your patience.

    The bug should be fixed with the next update. Meanwhile you have to change a few lines in enfold\js\shortcodes.js:

    1) around line 2955 you find function set_slide_height.

    Look for

    
    
                                            inner_content.height(old_height);
    					inner_content.height(height);
    
    

    and replace by

    
    
                   container.find('.av-tab-section-outer-container').css('max-height', height + add_height + 100);
                   inner_content.height(old_height);
    		inner_content.height(height);
    
    

    2) Around line 3020 you find function $.avia_utilities.preload

    Look for

    
    
    
          win.on('debouncedresize', set_slide_height);
    
    

    Replac this line by

    
    
         win.on('debouncedresize av-height-change', set_slide_height);
    
    

    If you have problems modifying the file please give us FTP access and a temporary WP admin access and we will help you.

    Best regards,
    Günter

    • This reply was modified 7 years, 11 months ago by Günter.
    in reply to: Share links und Datenschutz #834764

    Hey therzig,

    Danke für diese Info. Ich werde diese an Kriesi weiterleiten.

    Im Moment kann ich dazu leider noch nichts sagen.

    Bitte antworte kurz darauf, damit das topic wieder in die Liste der offenen topics kommt.

    LG aus Wien
    Günter

    in reply to: Checkout-Felder #834256

    Hi,

    Mit CSS lässt sich das nicht machen – HTML Struktur erlaubt es nicht.

    Ich nehme einmal an, dass Ihr German Market verwendet. Habe es bei mir lokal einmal aktiviert (3.3). Da erscheinen die Terms (2 Zeilen – Terms und Revocation) am unteren Ende über dem Button “Place Binding Order”.

    Möglich dass es ein anderes plugin gibt, dass den output verändert.

    Versuch einmal alle anderen plugins (ausser WC und German Market) zu deaktivieren und dann einzeln wieder zu aktivieren und schau, was mit dem Text passiert.

    Best regards,
    Günter

    in reply to: Checkout-Felder #834236

    Hi,

    Danke für die Rückmeldung. Tut mir leid, dass es länger gedauert hat, bis wir antworten konnten.

    Es handelt sich hierbei um einen bug im Theme CSS. Dieser wird im nächsten update gefixed sein.

    Einstweilen bitte in Enfold->General Styling -> Custom CSS einfügen:

    
    
    @media only screen and (max-width: 767px) {
    
                    .responsive #top .col2-set .col-1{
    			display: inline-block;
    		}
    
    }
    
    

    Für Mit deiner Bestellung erklärst du dich mit AGB und Widerrufsbestimmungen einverstanden” folgenden Code und den Wert anpassen:

    
    
    .form-row.legal.terms.wc-terms-and-conditions {
        margin-top: 10px !important;
    }
    
    

    Best regards,
    Günter

    in reply to: WooCommerce Variation Image #834220

    Hi,

    WooCommerce 3.0 made huge changes to the product gallery and the logic, it displays product images. We try to be backwards compatible as long as possible, but WooCommerce does not provide any backwards compatibility for the variations any more. This makes it impossible for us to show variation images without reimplementing the complete logic.

    As the variations work fine when you use the new product gallery the expense to implement an outgoing and no longer supported feature does not make sense.

    Thank you once again for using Enfold. Feel free to come back when you need more assistance.

    Best regards,
    Günter

    Hi,

    Thank you for using our theme and reporting this bug.

    I could reproduce it on my local install and will have a look into it to find a solution.

    As soon as I have a fix I will let you know, but give us a little time.

    Best regards,
    Günter

Viewing 30 posts - 2,401 through 2,430 (of 3,742 total)