Forum Replies Created

Viewing 30 posts - 7,891 through 7,920 (of 11,213 total)
  • Author
    Posts
  • Why did you change floating behavior of logo?

    i think this will look better – aquidistant from the border with hamburger sign:

    @media only screen and (max-width: 767px) {
    	.responsive #top .logo {
    	display: block !important;
    	float: !important;
    	}
    	.responsive #top .logo img {
    	max-height: 120px !important; 
    	height: 120px !important; 
    	}
    }

    And: PPS: the slider is still visible on very small screens when the fallback image is shown

    • This reply was modified 6 years, 10 months ago by Guenni007.

    sorry my fault :

    /* MOBILE LOGO */
    @media only screen and (max-width: 767px) {
    	.responsive #top .logo {
    	display: block !important;
    	}
    	.responsive #top .logo img {
    	max-height: 120px !important; 
    	height: 120px !important; 
    	}
    }

    But your very long menu should switch to hamburger a bit earlier. It overlaps the logo on f.e. ipad landscape

    on my browser all is nice – with what kind of device you are looking to the dev. site ?

    ok on firefox with developer test devices – i see the problem:

    can you please replace your rule with:

    /* MOBILE LOGO */
    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        display: block !important;
        max-height: 120px !important;
        height: 120px !important;
    }
    }

    afterwards we see how to optimize the sizes

    this here is a very general replace script and easier to adjust for code beginners:

    function replace_tags_with_tags(){
    ?>
    <script>
      (function( $ ) {
    	$(document).ready(function() {       	
    			function replaceElementTag(targetSelector, newTagString) {
    				$(targetSelector).each(function(){
    					var newElem = $(newTagString, {html: $(this).html()});
    					$.each(this.attributes, function() {
    						newElem.attr(this.name, this.value);
    					});
    					$(this).replaceWith(newElem);
    				});
    			}
    
    			replaceElementTag('h3.widgettitle', '<h4></h4>');
    			replaceElementTag('.avia_textblock h2', '<h4></h4>');
    	 });
      }(jQuery)); 
    </script>
    <?php
    }
    add_action('wp_footer', 'replace_tags_with_tags');

    you see here in this part – you can add more replacings separated by semicolon:

    replaceElementTag('h3.widgettitle', '<h4></h4>');
    replaceElementTag('.avia_textblock h2', '<h4></h4>');

    for you only the first line is important
    replaceElementTag('h3.widgettitle', '<h4></h4>');

    But : That should always be the last solution. It is always better to set the right values directly when creating an element.
    But i do not have yet an idea to influence that register-widget-area.php via child-theme – i do not see a filter f.e. that fits – maybe a mod knows a child-theme handling of that.

    • This reply was modified 6 years, 10 months ago by Guenni007.

    by the way i noticed that the subfolders are not necessary.
    I tested it on a playground of mine – when you put it directly in shortcodes folder it will work too.

    the widget tiltle setting to h3 is in : includes/admin/register-widget-area.php

    you can use in functions.php of your child-theme :

    Edit : better take the general replacement instructions – easier to understand

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Datepicker #944555

    Witzigerweise ist es bei deutsch Sie mit zurück übersetzt

    in reply to: Datepicker #944553

    Bist du Vertraut mit dem Bearbeiten von lang files?
    diese Übersetzung für Prev. ist recht unglücklich gewählt.
    das ganze befindet sich im de_DE.po file im lang ordner .

    Empfehlenswert ist zB das Plugin: https://de.wordpress.org/plugins/loco-translate/
    welches einem die Möglichkeit bietet die Übersetzungen zu bearbeiten.

    ich mache das immer “zu Fuß” mit po-edit und lade mir die files dann in mein Child-Theme zurück
    dort habe ich dann im child-theme einen unterordner : lang den ich für meine Übersetzungsfiles heranziehe.
    Das kann man in der functions.php des child-themes so veranlassen:

    
    function overwrite_language_file_child_theme() {
        $lang = get_stylesheet_directory().'/lang';
        return $lang;
    }
    add_filter('ava_theme_textdomain_path', 'overwrite_language_file_child_theme');

    thats nice – but without a live link it does not work – to decide from a screenshot it is not possible.
    i had to see the dom structure and to be able to simulate changings on developer tools

    if you like to have that too: https://webers-testseite.de/edited-enfold-alb-elements/#icons

    But be carefull : New Enfold has its shortcodes about icon-box and icon list now in subfolders – and the hierarchical structure had to be preserved
    so the downloaded files comes to
    icon-list.php to child-theme/shortcodes/iconlist
    icon-box.php to child-theme/shortcodes/iconbox

    in reply to: Open Sans Font #944483

    Yes, you are right, but many of the users run into this misunderstanding here. Then the topics are: “why can i not use the added font for my icon-titles via quick css …” etc. pp.
    the quick and dirty solution is to go to advanced styling and set for example for a H6 the added font as font-family – this will activate the font as well.

    in reply to: Youtube video aspect ratio displaying incorrectly #944334

    If you want simple solutions, you have to be satisfied with simple requirements.

    I would have liked it if you had answered. As you have achieved now – because I like to learn from other solutions. Finally, we tried to find a solution. Since a final report on your part should already be possible.

    Sorry – no private links can be seen by me – i’m still a Participant as you
    my avatar/nick gives you contact info – so feel free to email me.

    your topic is about easy-slider isn’t it?
    What icons ?
    On that page there are also other alb elements with edited settings but you like to have the sliders ?

    it is i think a nice and noob secure description.

    1) create a subfolder in your child-theme folder called shortcodes
    2) place this in your child-theme functions.php :

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths){
     $template_url = get_stylesheet_directory();
     array_unshift($paths, $template_url.'/shortcodes/');
     return $paths;
    }

    3) download the zip file and unzip it and upload all 4 files to that subfolder
    4) you can see what is new on sliders ( on easy slider see here :
    5) now you can choose what h tag you like to have and what font-size it got
    6) see on testpage that there is a h1 heading in one easy-slider slide.

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Fatal error adding Google Font #944208

    Or whereever (line xy) you have loaded the other font combine those rules to one:

    And by the way:

    The font added through this code can be found at the bottom of the list ( not sorted in alphabetical order )

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:300,300i,400,400i,700,700i';
    $fonts['Roboto'] = 'Roboto:300,400,700';
    $fonts['Open Sans'] = 'Open Sans:400,400i,600,600i,700,700i';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:300,300i,400,400i,700,700i';
    $fonts['Roboto'] = 'Roboto:300,400,700';
    $fonts['Open Sans'] = 'Open Sans:400,400i,600,600i,700,700i';
    return $fonts;
    }
    in reply to: Fatal error adding Google Font #944205

    if you add more than one font please do all fonts ( different names ) in one rule together or
    rename that function

    On that:

    add_filter( 'avf_google_heading_font', 'avia_add_custom_heading_font');
    function avia_add_custom_heading_font($fonts)
    {

    after add_filter – the first is the filter name and the second is function name
    as long as function names are corresponding – the name could be whatever you like so this will work too.

    A function needs to be on definition something unique. So if you have allready included another font in line 17 this goes to that error.
    And now your are a lucky guy – because on former WordPress Versions this causes a white screen of death.

    ________________

    Next Thing: What do you think should happen here – the first line is absolutely superfluous

    Same font – same font style

    $fonts[‘Didact Gothic’] = ‘Didact Gothic:400,700’;
    $fonts[‘Didact Gothic’] = ‘Didact Gothic:400,700,400italic,700italic’;

    so this might be enough to add:

    add_filter( 'avf_google_heading_font', 'avia_add_didact_gothic_heading_font');
    function avia_add_didact_gothic_heading_font($fonts)
    {
    $fonts['Didact Gothic'] = 'Didact Gothic:400,700,400italic,700italic';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_didact_gothic_content_font');
    function avia_add_didact_gothic_content_font($fonts)
    {
    $fonts['Didact Gothic'] = 'Didact Gothic:400,700,400italic,700italic';
    return $fonts;
    }

    you see if functions name are corresponding it will work
    The conflict comes from using the function name twice

    Well – i don’t know – i think this will be a nice thing to have.
    Feel free to make a feature request here: https://kriesi.at/support/enfold-feature-requests/

    in reply to: Enfold update – latest version #944187

    Sorry Merilla – i can not see private content as a Participant as you – so wait for mod please

    in reply to: Page shouldn't be scrollable when lightbox is opend #944124

    i will have a look what happens to pages with no masonry now and with image lightboxes

    Edit : works with video lightboxes too ( not the video alb element – but links from images or text to video files

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Page shouldn't be scrollable when lightbox is opend #944096

    try this: – and please ismael say if there are some faults or upgrades on that code
    i tried it first with attr or removeAttr but simple css was in success
    but the real hint was to the .mfp-bg

    add_action('wp_footer', 'custom_lightbox_script');
    function custom_lightbox_script(){
    ?>
    <script type="text/javascript">
    (function($) {
        function a() {
            $('body').on('click', '.lightbox-added', function() {
    			if($('.mfp-bg').length >= 1) {
    				$('html').css("overflow-y", "hidden");
    			} 
    		});
    		
    		$('body').on('click', function() {
    			setTimeout( function() {
    				if($('.mfp-bg').length == 0) { 
    					$('html').css("overflow-y", "scroll");
    				}
    			},500);		
    		});
                 }
    	a(); 
    })(jQuery);
    </script>
    <?php
    }

    you don’t need css settings in quick css because it works about css ( inline )

    see here in action: https://webers-testseite.de/weber/lightbox/

    in reply to: Open Sans Font #944050

    Hi Rikard – the thing on this is not really clear in documentation.
    The code provided by this link https://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/
    make the font only available for Enfold to choose for headings and content font –
    the possiblity of choosing it does not activate it automatically. That would be a performance disaster for the page
    So if you dont choose it as heading or content font in Enfold Options page – you can not use it via quick css!

    The code above activates the fonts – you can directly use it in quick css

    add_action('wp_head', function() {
    ?>
    	<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&subset=latin-ext" rel="stylesheet"> 
    <?php
    });
    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Enfold update – latest version #944043

    so how do you upload the new folder?
    did you erase the old one – or renamed it – or (my suggestion) drag and drop the new enfold folder to your directory and overwrite existing files.

    In this case it is clear for me what happend.
    New Enfold has a bit rearanged folder structure – especially in the config-templatebuilder/avia-shortcodes folder.
    A lot of those shortcodes are now in subfolders ! – so what happend on pulling the new enfold over the old one.
    There are now two shortcodes f.e. for buttons, iconboxes, iconlists etc.
    This maybe the reason for that mismatch.

    i always do update via ftp and my advice is:
    1) rename enfold folder to enfold-old folder
    2) upload the new enfold folder
    3) test your page if everything works fine
    4) in case of whitescreen or other crashes – you can erase the enfold folder – and rename the enfold-old folder back to enfold
    5) so that is your fall-back included if something went wrong

    maybe this is a solution for you: https://webers-testseite.de/edited-enfold-alb-elements/#sliders

    i edited the ( in this case four files )
    the page includes a how to on top
    if these files won’t work on the Version 4.3 to come – i will place new links there.

    edit – now even easyslider works this way: https://webers-testseite.de/easy-slider/

    in reply to: https error because of kriesi backgroud image #943985

    it is the section with “Se connecter au corps” the three icons.
    Try to insert a different background image – save your page – and then you can delete the background-image again – save again.
    Eventually this will override the old entry

    in reply to: Enfold update – latest version #943984

    Sorry for my question – what do you mean by “and installed the new map on the ftp ?
    You uploaded only google_maps.php and leave the rest untouched. Or is that a commen phrase that I as a German are not familiar with, and you mean “Then I uploaded the whole thing” – i’m a bit confused.

    in reply to: https error because of kriesi backgroud image #943747

    look to the page where it is non secure detected.
    go into the editior of that page and open the color-sections – it must be a background image – or an overlay image.
    Due to lack of a page link – i can not be more precise

    by the way the new link would be: https://kriesi.at/themes/enfold-health-coach/files/2016/05/food-bg-3.jpg

    this was the demo look:

    in reply to: Contact Form Date #943705

    in this case I would give you the advice to use instead Contact Form 7 with datepicker addon
    They have a lot of presettings which comes to your wishes.

    looks this way – guess if the language is english it will show am or pm

    in reply to: Getting rid of Enfold by Kriesi in footer copyright area #943687

    see here: https://kriesi.at/documentation/enfold/change-the-footer-text-and-link/

    add to your footer[nolink]

    ______________________

    just for info:

    you can redefine the backlink via functions.php of your child theme

    function new_nolink(){
    $kriesi_at_backlink = "<a href='https://custom-link'>Custom Backlink</a>";
    return $kriesi_at_backlink;
    }
    add_filter("kriesi_backlink","new_nolink");
    in reply to: Open Sans Font #943647

    The code you have above ( and as i said erase the plus sign like in my code) is only to have on enfold options the possibility to set for body and for content text the font. The font added through this code can be found at the bottom of the list ( not sorted in alphabetical order )
    Only if you set the code there the font will be activated.

    If you do not want to use the setting there – only to use with css and activated do this to functions.php of your child-theme:
    (here the plus must be set as given from google font itself)

    add_action('wp_head', function() {
    ?>
    	<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&subset=latin-ext" rel="stylesheet"> 
    <?php
    });
    in reply to: Place PHP code beneath every portfolio page #943594

    what php code is it ? form a plugin …
    there are a lot of hooks implemented in enfold – sounds like the
    ava_after_content will do the job and for including it only in portfolio pages an if clause like

    if( is_singular('portfolio') ) { …. will make it

Viewing 30 posts - 7,891 through 7,920 (of 11,213 total)