Forum Replies Created

Viewing 30 posts - 1 through 30 (of 62 total)
  • Author
    Posts
  • in reply to: Google Font "montserat" lädt trotz lokaler Einbindung #1377711

    Hi zusammen,
    entschuldigung, ich habe das gleich Problem auch und dafür einen separaten Post aufgemacht.

    Gibt es eine finale erfolgreich Lösung, die dann bei den Fontcheckern, auch anzeigt, dass keine Google Font mehr geladen wird.
    z.B.
    https://google-fonts-checker.54gradsoftware.de/de-DE

    Ich hab beide Anleitungen durchgemacht, aber ohne Erfolg.
    Einmal direkt das Google Font Zip hochgeladen
    Einmal die Umsetzung von den beschriebenen Diensten (https://transfonter.org/) und dann import und natürlich die Auswahl unter allgemeines Styling.
    Ich glaub es liegt einfach daran, dass die Verbindung asynchron aufgebaut wird. Diesen hinweis gab mir das OMGF | Optimize My Google Fonts Plugin.
    Danke schon mal jede Hilfe bzw. möglichst funktionsfähige Lösung :-)
    VG Michael

    in reply to: Preview not working proberly showing old incomplete content #1188011

    Hi,
    can I get please get support on this issue?

    Thanks in advance.
    BR
    Michael

    in reply to: Preview not working proberly showing old incomplete content #1186656

    Hi Rikard,
    I tried. No difference. Please have deeper look inside to dtetect the root cause.
    BR
    Michael

    in reply to: Preview not working proberly showing old content #1165480

    Hi Rikard,
    I solved it. Reason was an empty 2/3 element in the first section. After deleting this the preview worked again.
    Thanks for your hints !
    Greetings
    Michael

    in reply to: Footer Breakpoint #1090602

    Thanks a lot ! This solved it !

    in reply to: Site is showed full with without the setting #1089232

    CLOSE
    ….now it works with setting of container width…perhaps there was caching issue…

    in reply to: Site is showed full with without the setting #1089231

    Anoterh try with the images:

    Bad one: (current version)
    https://pasteboard.co/I9vOxcC.png

    Good on => so it should be:
    https://pasteboard.co/I9vQv9C.png

    Hi,
    thanks for picing up the topic.
    Sorry, sure the site url: zeitbote.com
    Currently is installed another plugin for the mobile menu so the problem is not directly visible.
    But if you click at left side of the bascet at android the theme’s mobil menu opens.
    On IOS this doesn’t work.
    I have no header.php in the child:
    https://pasteboard.co/GJmZECZ.png

    Please let me konw what you need from me.

    Thanks and Greetings
    michael

    in reply to: Mobile Page Logo / WooCoomerce Basket not visible #833339

    Hi Sarah,
    no thanks. Everything fixed.
    Greetings
    Michael

    in reply to: Mobile Page Logo / WooCoomerce Basket not visible #832635

    Hi Yigit,
    thanks i solve it. It was in the functions.php.
    Greetings
    Michael

    in reply to: Mobile Page Logo / WooCoomerce Basket not visible #831156

    Hi Yigit,,
    thanks a very lot regarding the WO Basket this helps perfekt.
    But any idea why the logo is not displayed on a mobile device?
    On the desk no issue. Only on a mobile device:
    https://pasteboard.co/GD1ydRO.png

    Thanks a very lot.
    Greetings
    Michael

    in reply to: Icon List small header #787621

    Hi Nikko,

    thanks for your support I tried your code and some variations like:

    .page-id-11693 #av_section_1 .avia-icon-list .iconlist_title { font-size: 20px !important; }
    
    .page-id-11693 #av_section_1 .avia-icon-list_small .iconlist_title_small {
        text-decoration: underline !important;
    }

    But no effekt on the header of the small icon lists.

    Any other idea ?

    Thanks a lot.

    Greetings
    Michael

    in reply to: Icon List small header #787307

    OH Sorry:

    Thanks for your help in advance.
    Greetings
    Michael

    in reply to: Woocommerce Product Page Sidebar Control not possible !! #769649

    Hi Andy,
    certainly I created my first feature request.

    FOR ALL: Who is looking forward for the feature to get a sidebar in the product page have a look on that feature request and VOTE VOTE VOTE
    Title is: “Product Page Styling Woocommerce Product Page Sidebar Enfold Shop Sidbar”

    I don’t know why there I can’t find a search functionality or category for feature request but hopefully google will find it :-)

    Greetings
    Michael

    in reply to: Transparent header on mobile on Chrome, FF, IE, Edge …. #721394

    Hi Yigit !

    You got it !! Great !!! Your support is blowing me away :-)
    Thanks a very lot !!
    Greetings
    Michael

    Hi Yigit,
    oh great no one ugly bullet still visible. Solved.

    Grreat a lot !
    Greetings
    Michael

    in reply to: Textboxes wrong overlay in mobile view #706719

    Hi Rikard,
    thanks a lot for you help. First i commented out this section then deleted completely. But no effect.

    But then I checked and found it:

    /* Underline Links 
    
    .avia_textblock a {
    text-decoration: underline;
    }
    */

    Thanks problem solved !
    Greetings
    Michael

    in reply to: Textboxes wrong overlay in mobile view #705172

    Hi Rikard,

    your help would be very appreciated.

    Issue we have on all pages with two textboxes in one line:

    Thanks a lot in advance.
    Greetings Michael

    in reply to: Align fullwith buttons in Grid Row #686764

    Hi, sorry site was not public.
    I created a testside with password. (see below)

    I called now everything grid1 in CSS and section-id.

    http://pasteboard.co/3gDD68q8g.png

    /* Grid Row Button Alginment */
    /* grid cell height */
    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script>
    (function($){
    	function c() { 
                 		var isMobile = '';
    
    		if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement)
    		{
    			isMobile =  true;
    		}
    		else
    		{
    			isMobile =  false;
    		}
    
                 if( isMobile ) return;
                 
                 $('#grid1 .flex_cell_inner').css('height', '');
    
                 var elementHeights = $('#grid1 .flex_cell_inner').parent('.flex_cell').map(function() {
                   return $(this).height();
                 }).get();
    
                 var maxHeight = Math.max.apply(null, elementHeights);
        
                 $('#grid1 .flex_cell_inner').height(maxHeight);
            }
    
        $(window).on('resize', function() {
            c();
        }).resize();
    })(jQuery);
    </script>
    <?php
    }
    
    /* Grid Row Button Alginment */
    
    #grid1 .flex_cell_inner .avia-button-wrap {
        position: absolute;
        width: 100%;
        bottom: 0;
    }
    
    #grid1 .flex_cell_inner {
        padding-bottom: 60px;
    }  

    It’s has also some effects on the buttons but not the alignin. I can resize them, I can change the padding-bottom but somehow the needed alignment at the buttom does not work.

    Any idea ?

    I also tried to move the “add-action” part to functions.php, but also that is not bringing the needed effect.

    Every hint would be great.

    Greetings
    Michael

    in reply to: Align fullwith buttons in Grid Row #686404

    Hi Yigit,
    thanks, but nevertheless it doesn’t work. Section ID I gave.Inserted Code in Dhild CSS:

    /* Grid Row Button Alginment */
    /* grid cell height */
    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script>
    (function($){
    	function c() { 
                 		var isMobile = '';
    
    		if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement)
    		{
    			isMobile =  true;
    		}
    		else
    		{
    			isMobile =  false;
    		}
    
                 if( isMobile ) return;
                 
                 $('#custom-grid .flex_cell_inner').css('height', '');
    
                 var elementHeights = $('#custom-grid .flex_cell_inner').parent('.flex_cell').map(function() {
                   return $(this).height();
                 }).get();
    
                 var maxHeight = Math.max.apply(null, elementHeights);
        
                 $('#custom-grid .flex_cell_inner').height(maxHeight);
            }
    
        $(window).on('resize', function() {
            c();
        }).resize();
    })(jQuery);
    </script>
    <?php
    }
    /* Grid Row Button Alginment */
    
    #custom-grid .flex_cell_inner .avia-button-wrap {
        position: absolute;
        width: 100%;
        bottom: 0;
    }
    
    #custom-grid .flex_cell_inner {
        padding-bottom: 60px;
    } 

    But they’re not moving. As far as i saw also these buttons use .avia-button-wrap or is this wrong?

    Thanks and greetings
    michael

    in reply to: Align fullwith buttons in Grid Row #684526

    Hi,
    I want to archive the same here.
    http://www.zeitbote.com/zeitbote-s-08-30/

    How to archive that? I don’t know how to replace the grid row id. Can you please give me hint?

    Thanks and greetings
    Michael

    Hi Ismael !
    Waow really great job, everything working again fine. Really strange as this feature is also not marked as BETA.
    However thanks a lot for your help !

    Greetings
    Michael

    Hi Andy,
    thanks for your support. As just written I tried out the de- and reactivation of plugins.

    After deactivating all Plugins it worked. After activating ONLY WOOCOMMERCE (I activated as first one) the error occured again.

    Today morning I deleted the themefiles via FTP (except Child theme) uploaded them again in current version and reactivated.
    Still same error.

    I also actived only Enfold Main Theme and not child theme: Same Error.

    If you got to page: http://www.zeitbote.com/produkte/ and scroll down to the bottom you’ll see that the
    “Testimonlials” = Kundenmeinung don’t work and in next section there is a slider with 3 Slides, aber clicking on navigation the slides are appearing, aber reloading the page it blank until clicking again the navigation.

    Thanks a lot for you support.

    Greetings
    Michael

    http://www.zeitbote.com/zeitbote-produkte/ (in the top) => sorry, not in the bottom of the page is so not working slider now.

    Hi Jordan,

    thanks for your response.

    I worked hard yesterday to replace the most of the Sliders with Color Sections for the promotion startin today. But all the sliders don’t work on my end and also not on clients end.

    I missed to send you the sites where you see it:
    http://www.zeitbote.com/zeitbote-produkte/ (in the top)
    http://www.zeitbote.com/produkte/ (in the bottom starting at “Kundenmeinungen”) also the testimonials shoud appear in section “Kundenmeinungen” don’t work any more. Under that section I moved on slider worked earlier.

    The strange thing is, that the problem appeared suddenly during I created only normal new site.
    I also deleted some backups (800 MB) for more storage in case the server is full.

    I also deleted BrowserCache, tried with other browsers and other devices and other networks. Always the same.

    Please help me to fix the issue.
    Thanks a lot and greetings
    michael

    in reply to: Bulletpoints are missing #574971

    Hi Rikard,
    thanks for your hint !! I tried it out but with no effect. Let’s proceed on the testinstance…

    http://madlener.wom.server49.vorschauseite.eu/checkliste-hochzeitsvorbereitung/

    I removed al my stylings so the code looks now very clean:

    <strong>Die wichtigsten Vorbereitungen</strong>
    Stichpunkte für die Liste:
    <ul>
    	<li>Termin mit <strong>Standesamt und Kirche</strong> ausmachen: Dazu kommt ein Vorbereitungsgespräch mit dem Pfarrer.</li>
    	<li>Dekorationen aussuchen (Blumenschmuck)</li>
    	<li>Trauringe kaufen</li>
    	<li>Wer führt die Braut zum Altar?</li>
    	<li>Soll es Blumenkinder geben?</li>
    	<li>Ist ein Stehempfang nach dem Standesamt geplant?</li>
    	<li>Aufstellung: Wer wird zu welchem Event eingeladen?</li>
    	<li>Fototermine vor Ort abklären</li>
    	<li>Zeitpuffer vorsehen, weil vielleicht Überraschungen der Gäste anstehen (Reis werfen, Spalier stehen, musikalische Einlagen, Baumstamm zersägen und andere Ideen)</li>
    </ul>
    

    Any idea where it’s coming from? Is this affected by the font itself?

    The font “FreigthBigMedium” is defined as standard in Further Styling section of theme “All Headings (H1-H6) – Change the styling for all Heading tags”

    The Font Face is loaded with this:

    
    @font-face {
        font-family: 'freightbigmediumregular';
        src: url('http://www.zeitbote.com/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.eot');
        src: url('http://www.zeitbote.com/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.eot?#iefix') format('embedded-opentype'),
             url('http://www.zeitbote.com/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.woff2') format('woff2'),
             url('http://www.zeitbote.com/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.woff') format('woff'),
             url('http://www.zeitbote.com/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.ttf') format('truetype'),
             url('http://www.zeitbote.com/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.svg#freightbigmediumregular') format('svg');
        font-weight: normal;
        font-style: normal;
    
    }

    Anything missing here ?

    Thanks for every hint..getting crazy with missing bullets… ;-)

    Thanks a lot for your support.

    Greetings
    michael

    in reply to: Bulletpoints are missing #567729

    Hi Basilis,

    sorry no change …

    http://www.zeitbote.com/checkliste-hochzeitsvorbereitung

    I’m using own font for this and also tried define it there:

        .fs3, fs3 { 
        font-family: 'freightsansbook'; 
        font-size: 18px; 
        line-height: 28px; 
        letter-spacing: 0.1px;
        color: #373737 !important; 
        text-transform: none !important;
        font-weight: normal !important;
        list-style-type: bullet;
        list-style: bullet;
        }

    No Change. If you have another hint your help is very appreciatet.

    Thanks a lot !
    Greetings
    Michael

    in reply to: Woocommerce variatons no dropdown #556928

    Hi,
    I created a new product with variatoins that works. So at the other one seems to be a problem with data not the theme !.
    CLOSE.
    Thanks and happy christma to the complete Team !!
    Greetings from Germany.
    Michael

    in reply to: Grid Row unwanted spacings #528822

    Hi Yigit,
    what the hell….really there is a white row inside the images !!
    Oh crazy and I searched a really long time for a solutin…
    Thx again.
    Greetings
    michael

    in reply to: Spacing / Separator between Sections #528155

    Hi Elliott,

    thanks for your support. But I’m a bit confused about the advise. I added a codeblock to section 3 but no change:
    I added it also with 20 px but also no change seen.

    Currtently between section 3 and 4 I have blank white space separator that affects a big white space.

    Perhaps I haven’t described the solution I need good enough.

    I want to get a small white space between every section at the side with 20 – 30 px.
    http://pasteboard.co/1OCQlaUP.png

    Thanks again if you have another hint.

    Greetings
    MIchael

Viewing 30 posts - 1 through 30 (of 62 total)