Forum Replies Created

Viewing 30 posts - 8,821 through 8,850 (of 11,883 total)
  • Author
    Posts
  • in reply to: Demo Import – how to create such text-files #932666

    are these two files only a combination of theme export from enfold dialog ( but here are widget-settings missing)
    and wordpress export of all data ( this is xml) ?

    in reply to: Demo Import – how to create such text-files #932663

    Yes this are the textfiles here : https://kriesi.at/documentation/enfold/downloads/
    Or is it the same ? i thought this only concerns to styling and quick css.

    Sorry that was misleading my link above
    the demo files included in the includes/admin/demo-files/
    php and xml files as pair for importing – how they were created ?

    in reply to: one Google map marker tooltip at a time #932459

    by the way Josues Code is brilliant – because if you click elsewhere on the map canvas the marker closes too.

    in reply to: Vertical align Title in IconBox #932457

    maybe – best will be to give a custom class to all these iconboxes (your account, services, operations, co-op …)
    i have set the selectivity for now via page id and color-section id

    .page-id-76 #after_section_1 .iconbox {
        display: inline-flex;
    }
    
    .page-id-76 #after_section_1 .iconbox .entry-content-header {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    on smaller screens set back to display: block or do insert to the headings some soft-hyphens with &shy and ;
    sorry board soft will immediatly change the entitie code even if placed in code so &shy with semicolon behind

    in reply to: one Google map marker tooltip at a time #932124

    this is the header option: logo top menu under logo.
    in this case the menu is not part of av-logo-container so it can be set to display: none

    the logo is part of the menu – as a custom link – and than put in navigation-label html code like:
    <img src="url-to-logo.png" alt="Logo" />

    for resposive case you must set this “menu-logo” to display none – and reactivate the av-logo-container.

    The shrinking option is much more complicate. If you like to know it exactly – please open a new topic.
    Tomorrow i have more time to explain it.

    in reply to: one Google map marker tooltip at a time #932107

    the trick is that the code of ismael is absolutely right : but he has forgotten to mention that the one thing has to put globaly on top:

    look on top of the google maps function on shortcodes.js:

    // -------------------------------------------------------------------------------------------
    // 
    // AVIA MAPS API - loads the google maps api asynchronously 
    // 
    // afterwards applies the map to the container
    // 
    // -------------------------------------------------------------------------------------------
    
    (function($)
    {
        "use strict";
          var openedInfoWindow = null;
    
    …

    under the use strict that line: var openedInfoWindow = null; is missing in the info of ismael !

    so :

    on top of the avia map function

    "use strict";
    

    replace with:

    "use strict";
    var openedInfoWindow = null;

    and:

    google.maps.event.addListener(marker, 'click', function() {
                        infowindow.open(map,marker);
                    });

    replace with:

    google.maps.event.addListener(marker, 'click', function() {
                        if (openedInfoWindow != null)
                            openedInfoWindow.close();
    
                        infowindow.open(map,marker);
    
                        openedInfoWindow = infowindow;
    
                        google.maps.event.addListener(infowindow, 'closeclick', function() {
                            openedInfoWindow = null;
                        });
    
                        google.maps.event.addListener(map, 'click', function() {
                            infowindow.close();
                        });
                    });

    see here working example: https://webers-testseite.de/weber/google-map-only-one-marker-open/

    in reply to: how can i delete this line here… #932082

    can you please provide us with a livelink to that page (your domain is well known here on board) so no secrets at all ;)
    then we do not need to speculate what it could be

    if you have each foto in a 1/1 container : each container has a margin-top of 50px:

    body .column-top-margin {
        margin-top: 50px;
    }
    in reply to: how can i delete this line here… #932066

    the border is that 1px border of color-section on default – you can get rid of it on color-section options page.

    in reply to: viewport metatag #931385

    Well you can add to the head section with
    this to functions.php of your child-theme

    add_action('wp_head', 'add_to_head');
    function add_to_head(){
    ?>
    	<meta name="viewport" content="width=device-width, initial-scale=1">
    	<meta name="description" content="best not more than 140letters">
    	<meta name="keywords" content=" seperated by commata ">
    	<link rel="shortcut icon" type="image/x-icon" href="/wp-content/uploads/icons/favicon.ico">
    	<link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon.png">
    <?php
    }

    everything like description is that you see in search on google under the url ( Real sentences with not more than 140 letters)
    or keywords are the tags you look for – separated via commata
    and viewport too

    in reply to: Single event title in Events Calendar H2 instead of H1 #930681

    maybe you got a livelink? because tribe events got a lot of view possiblities with each single-event.php ( lists, day, month, etc)

    in reply to: Single event title in Events Calendar H2 instead of H1 #930672

    Well i think it is in :
    single-event.php template.
    Look for :

    <?php the_title( '<h2>', '</h2>' ); ?>

    i try to find a child-theme solution now – but meanwhile you can change it here quick and dirty

    btw: on non pro version the actual version has:

    <?php the_title( '<h1 class="tribe-events-single-event-title">', '</h1>' ); ?>

    so it might be on actual version the h1 ( but couldn’t serve this into troubles if you using f.e. a masonry of envents ? – than you will have multipel h1 on one page – and that is against good seo rules)

    in reply to: bwp minify and "remove query strings from …" #930635

    i have tested it on some customer installations. Some ISP gets Problems with it – so test it with a backup of the old unedited class-bwp-minify.php in backhand.

    in reply to: where can i find the js folder for iconlists? #929781
    in reply to: Light version of google fonts #929395

    and do not use the rule “lighter”
    set font-weight to 300

    body#top {
        font-weight: 300;
        font-family: 'Hind', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    __________________

    Edit – here because topic is closed !

    i think there has to be something wrong.

    I do activate the hind font locally on a test page –
    the 300er font-weight is a bit thinner than the 400.

    Compare the justified text-blocks under “Leistungen” and “Scanservice”
    https://webers-testseite.de/guenterweber/

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Light version of google fonts #929393

    if you have here on content font hind defined as the font to use – you don’t need to determine it again in quick css !

    in reply to: Light version of google fonts #929387

    have you a link to the site?

    in reply to: Light version of google fonts #929386

    or you can activate it via : (EDIT you do not need it if you have set it as content font in enfold options )

    add_action('wp_head', function() {
    ?>
      <link href='http://fonts.googleapis.com/css?family=Hind' rel='stylesheet' type='text/css'>
    <?php
    });
    in reply to: Light version of google fonts #929377

    read the edit above i wrote something additional

    but you should know that if you like to have it only for some css rules – the font isn’t activated till you use it in enfold options dialogs.
    If you don’t want to use it as content font globaly – you can define it for example as h6 in advanced styling. this starts the activation of the font. the code above only makes it selectable in fonts choice.

    after that you can define css rules with font-family : hind

    in reply to: Light version of google fonts #929372

    down the second rule about content fonts:
    each of them needs the return $font

    return $fonts;
    }

    but you should know that if you like to have it only for some css rules – the font isn’t activated till you use it in enfold options dialogs.
    If you don’t want to use it as content font globaly – you can define it for example as h6 in advanced styling. this starts the activation of the font. the code above only makes it selectable in fonts choice.

    in reply to: Light version of google fonts #929363

    the code above isn’t complete:

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Hind'] = 'Hind:300,400,700';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Hind'] = 'Hind:300,400,700';
    return $fonts;
    }
    in reply to: Footer Copyright in 2. Sprache #929142

    also mein weg oben ja? – es ist immer schön eine Rückantwort zu bekommen. Nicht für das Danke das es geklappt hat, sondern ich kann es dann aus den Topics nehmen die ich für einen Nachbearbeitung in der Liste habe.
    Viel Erfolg – sieht toll aus die Seite – und vor allem auch das was es beschreibt. Macht richtig lust mal wieder in den Bergen Urlaub zu machen.

    • This reply was modified 7 years, 9 months ago by Guenni007.

    is there a livelink to look for ?

    in reply to: where can i find the js folder for iconlists? #928826

    he means this : https://kriesi.at/#what-you-get

    it is all in the code maybe you can find the js in a bwp-minified js file search for “avia-principles”

    in reply to: Footer Copyright in 2. Sprache #928821

    hm – Es scheint ja jetzt zu gehen oder? ich sehe jedenfalls im Link oben, dass der Sockel jetzt zweisprachig ist !
    Wie hast Du es denn jetzt gemacht ?
    Danke für die Rückmeldung

    © Copyright – Zechmeisterlehen ****s Berchtesgaden in the Berchtesgadener Land · Privacy · Imprint | Concept & Design by GASTROpoint GmbH
    versus
    © Copyright – Zechmeisterlehen ****s Berchtesgaden im Berchtesgadener Land · Datenschutz · Impressum | Konzept & Design by GASTROpoint GmbH

    i figured it out a few weeks ago that iframe realy didn’t work well. i hope this will be fixed soon because a lot of possibilities f.e. with youtube videos only work with a good iframe function.

    See here the mod comment: https://kriesi.at/support/topic/new-enfold-troubles-with-iframe/#post-905722

    in reply to: Child Theme erforderlich? #928817

    Die CSS – Quick css sind nicht nach einem Update verschwunden.
    Die lagert Enfold nämlich in dem Ordner wp-content/uploads/dynamic_avia ab. Dort sind Sie eigentlich nicht von einem Parent-Theme Update betroffen.
    Da ein Child-Thema aber lediglich 2-3 Dateien mit einem Volumen von 25kb ausmacht (Es sei denn man hat umfangreichere Veränderungen vor) wäre das jetzt auch keine Performance Belastung.
    Sobald man aber Snippets ( Link )benutzen möchte um Anpassungen am Thema vorzunehmen, ist ein Child-Theme ratsam.

    in reply to: Child Theme erforderlich? #928757

    Es ist keine Hexerei, und die Beschreibung ist sehr gut. Die Files liegen zum Download bereit, und die Übernahme der Eltern Eintstellungen wird einem duch Enfold schon sehr erleichtert.
    Aussderdem selbst wenn es nicht auf Anhieb klapt, kann man das Eltern Thema wieder aktivieren, und die zB quick css Einstellungen via copy/paste übernehmen.
    Zuerst sollte allerdings die Methode über dies hier erfolgen

    in reply to: Add Two Section ID #928715

    classes you are able to combine an this makes sense.
    on that enfold field to insert the combined classes only seperated by a space
    so if you have this for a div in your input filed abc def
    the output will be div.abc.def
    and you than can select each class seperatly

    .abc { … }
    .def { … }
    in reply to: Add Google Font to Enfold Theme #928713

    yes some people have plugins or in wp-config f.e. that line :

    define( 'DISALLOW_FILE_EDIT', true );
    which surpesses the editor

    in reply to: Bildupload vom Kunden / Imageupload from Client #928709

    On Contact Form 7 you can define a tmp path to the folder where the images are saved temporarly via wp-config.php:
    define( 'WPCF7_UPLOADS_TMP_DIR', '/your/file/path' );
    this is nice to have because you can secure that folder via htaccess and secure advices in the net.
    cf7 did on that uploads dir a htaccess on default – i did change it to

    deny from all
    <Files ~ “^w+.(gif|jpe?g|png|pdf)$”>
    order deny,allow
    allow from all
    </Files>

    see here: https://contactform7.com/file-uploading-and-attachment/

Viewing 30 posts - 8,821 through 8,850 (of 11,883 total)