Forum Replies Created

Viewing 30 posts - 6,631 through 6,660 (of 11,820 total)
  • Author
    Posts
  • hier ist ein grundsätzliches Fehlverständnis von dynamisch erstellten Webseiten vorhanden.
    Alle gängigen CMS ( Content Management Systeme) haben als Speicherort Tabellen in den Datenbanken.
    Was Du momentan mit deinem Verzeichnis Download hast ist ein Puzzle im Karton! ( sozusagen)
    Die Dateien ( ftp Ordner ) sind quasi nur die Teile jenes Puzzles welches nun in kleinen Teilen vor Dir liegt. Die Tabellen haben den Bauplan und die Lage etc. pp. ohne die Datenbank Sicherung fehlt der Hauptteil des Ganzen.
    Solltest Du ( hier an Board denke ich sollten wir uns duzen) jedoch zufällig ein Tool wie Duplikator mit installiert haben und dort ein Backup gefahren haben, dann liegen diese Datenbank Informationen mit im Root Verzeichnis und wären somit mit gesichert.
    Leider denke ich dass du daran nicht gedacht hast – oder?

    Wenn nicht – dann war das ganze wohl eine Lehrstunde – wie bereits erwähnt.
    Ich kann nur wärmstens empfehlen : Duplicator Plugin !!! ( kostenlos )
    Der sichert entweder komplett oder mit Filtern die Installation. Und ist ideal für die Migration von einem zum nächsten Hoster geeignet. Der kreiert nämlich genau zwei Dateien – eine installer.php und ein zip.
    Dann muss man nur noch die neuen Datenbank Infos haben und schon ist ein kompletter Umzug zu einem anderen Hoster meist sehr schnell zu realisieren.

    Wie gesagt : Enfold sichert die css daten in : wp-content/uploads/dynamic_avia

    Daher wirst du wohl oder übel eine neue Installation erstellen müssen.
    Und dann den ( die – falls Child-theme vorhanden) Themes Ordner hochladen .
    Dann Enfold aktivieren.

    Alle Inhalte ( Seiten , Posts, Portfolio etc. pp) sind nicht vorhanden danach – die müsstest du neu erstellen.

    PS : ich denke wir haben alle mal am Anfang solches Lehrgeld zahlen dürfen. Eventuell hättest du mal vorher fragen können wie man eine Seite umzieht!
    Aber nun liegt das Kind wohl im Brunnen. Sorry – bessere Nachrichten habe ich nicht für Dich.

    in reply to: custom social media icon in the socket #1131058

    do you have a different font ( and font-name ) too?

    in reply to: Logo missing #1131043

    zeig mal einen link zu dem png – dann kann ich das als svg wandeln.
    Sag mir mal die Schriftart was du da benutzt hast. ( ist das eine Skia ?)

    https://webers-testseite.de/logo_christopher_end.svg

    • This reply was modified 6 years, 3 months ago by Guenni007.
    in reply to: Logo missing #1131038

    Ich sehe die Einbindung als data img – wie hast du das hochgeladen?

    Das scheint mir nur als svg abgespeichertes Format zu sein, was ein png eingebettet hat.

    Warum nicht als echtes svg hochladen?

    • This reply was modified 6 years, 3 months ago by Guenni007.
    in reply to: Topbar auf Mobil ausblenden, auf Desktop jedoch nicht #1131029

    du meinst jetzt aber wirklich das Mobile Endgerät und nicht kleine Screenweiten?

    Denn da hat Enfold schon eine Klasse an html vergeben, die genau das unterscheidet.
    Bei mobilen Geräten hat Enfold die Klasse an html gesetzt: avia_mobile
    du solltest also mit der css Anweisung im Quick CSS dies bewerkstelligen:

    .avia_mobile #header_meta {
      display: none;
    }

    PS: bei Desktop Geräten entsprechend: avia_desktop

    in reply to: SVG Datei #1131009

    Enfold hat dieses Input Feld auf : Enfold (Child) – Allgemeines Styling : Quick CSS

    dort kann man den Code eintragen.

    PS : großer Vorteil inline svg – man kommt an viele Sachen via css dran um zB – füllfarben zu beeinflussen

    gib mal zB ein:

    svg:hover .cls-1 {
        fill: aqua;
    -webkit-filter: drop-shadow(1px 1px 3px #333);
        filter: drop-shadow(1px 1px 3px #333);
        transition: all 0.5s ease;
    }

    und schau was beim hovern mit deinem Schwimmer passiert.

    in reply to: SVG Datei #1131001

    der Firefox zeigt die sofort an. Nur Chrome und Safari brauchen eine Größenangabe.
    ZB:

    svg.avia_image {
        width: 100px;
    }
    in reply to: SVG Datei #1130997

    Ersetze doch mal bitte genau dieses Bild . – dann sehen wir weiter

    in reply to: SVG Datei #1130976

    Das Plugin svg Support macht schon vieles automatisch richtig.
    Es fügt die Möglichkeit ein überhaupt svgs hochladen zu können. Ausserdem sieht man in der Mediathek auch schon Vorschaubilder der svgs. Ist nämlich nur durch Zulassen des Mime Typs nicht selbstverständlich.
    Das Plugin kann – so es denn auf den advanced Modus gestellt wurde – dafür sorgen, dass alle Bilder oder nur Bilder mit einer bestimmten Klasse inline eingestetzt werden. Die Standard Klasse des Plugins ist da: style-svg
    Trifft das Plugin nun auf ein : <img src="abc.svg" /> so wird das img durch das svg ersetzt.
    Wie bekomme ich nun diese Klasse an mein Logo ?
    zB: über die child-theme functions.php:

    // damit svg support am Logo greifen kann - hinzufügen der trigger Klasse
    function custom_logo_attributes(){
    ?>
    <script>
    (function($){
    	$('.logo img').addClass('style-svg').attr({ title:"Meine Webseite", alt:"Logo" });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_logo_attributes');

    das das logo img nun die trigger Klasse besitzt, wird das svg nun anstelle inline eingesetzt.

    Wenn es denn nun als inline svg vorhanden ist, dann sollte man die Display Option für das logo a ändern. Nur so macht dann das svg auch ein shrinken mit.:

    .logo a {
        display: flex !important;
    }

    eventuell hier dann für den responsiven Fall wieder anpassen.

    in reply to: SVG Datei #1130974

    wie gesagt, manch ein Browser benötigt dafür die Angabe der Größe (nicht in relativen Größen) des svgs via quick css

    hast du denn erfolgreich ein svg hochladen können ( das wäre nämlich der Punkt mit dem Mime typ svg)
    wenn ja dann solltest du es auch schon wählen können im Enfold Dialog als Logo.

    Dann ist es zunächst aber nur als <img src=” ….blabla.svg” als logo eingesetzt.
    Auch hier gib doch mal eine nicht relative größe des logos vor. Und schau was passiert:

    .logo img {
    width: 450px
    }

    das mit dem Inline svg kommt dann – wenn wir diese erste Hürde genommen haben.

    Hast du einen Link wo ich mal schauen kann?

    in reply to: custom social media icon in the socket #1130972

    if you got the right quotation marks this is the right code:

    that comes to child-theme functions.php:

    function avia_add_custom_icon($icons) {
    $icons['tel'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue854');
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons) {
    $icons['tel'] = 'tel';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    and that to quick css:

    #top #wrap_all .av-social-link-tel:hover a {
    color: #fff;
    background-color: #006567;
    }

    PS: the newly added option tel can be found at the bottom of the list !

    in reply to: text-shadow in an object #1130965

    I didn’t want to make a secret of it for myself, and I filled it out consciously.
    That goes for me. If you want to handle it differently it is of course ok.

    in reply to: text-shadow in an object #1130962

    on your profile ( like me too ) you have filled out the home url.
    because if you had in your profile a home url – you have the link on avatar and nick
    I didn’t mean to make a secret of it.

    in reply to: Self hostet video, crashing site #1130960

    i destroy that testpage now – but on my end it works.
    So you had to wait that a mod is looking to it from inside ( backend ) –

    in reply to: Self hostet video, crashing site #1130957

    i can not see your site with the video – but on my end the 480p Video with your video works as self-hosted video.
    Did you set it as autoplay video ( because it has sound – this will not work)

    see here with 480p ( half size – about 11MB) : https://webers-testseite.de/kortspil/

    in reply to: Self hostet video, crashing site #1130953

    the video got 27MB – this has to be loaded first to show on the browser.
    That was the idea of video hosting sharers like youtube.

    think if a 480p format wouldn’t be enough.

    in reply to: Need to show only one image in the lightbox #1130943

    your welcome

    in reply to: Need to show only one image in the lightbox #1130931

    best would be to see your site :
    but if i understand it right : you have the images not as image alb element but you have it in text-block alb inserted different images?

    so if you only wants to get rid of gallery function for those images and on a specific page only – you need your page-id
    here in my example code it is the : 5

    put the code ( change the page id) to your child-theme functions.php:

    function popup_no_gallery() { 
    if( is_page(5) ) {
    ?>
    <script type="text/javascript">
    (function($){
    $(window).load(function(){
        $('a.lightbox-added').magnificPopup({ 
    		type:  'image',
    		mainClass: 'avia-popup mfp-zoom-in mfp-image-loaded anchor-link',
    		preloader: true,
    		midClick: true,
    
    		gallery: {
    			enabled: false
    		},	
    	}); 
    });
    })(jQuery);
    </script>
    <?php 
    }
    }
    add_action('wp_footer', 'popup_no_gallery');
    in reply to: Demo Page For Video Slider #1130911

    Yes – but if you want to show the video even on mobile devices it is better to use the advanced layout slider !
    See your example on mobile devices : https://kriesi.at/themes/enfold-band/
    you can insert in advanced layer slider a selfhosted video as background with html5 code ! and that will be present even on ipad / iphone and other mobile devices.
    or a youtube link ( but you had to set it with the options to play muted.

    here is an example input code for a self-hosted video to lowest video layer:
    <video playsinline autoplay loop muted preload="metadata" style="min-width:100vw; min-height:56vw;" ><source src="/wp-content/uploads/movie.mp4" type="video/mp4"><img src="/wp-content/uploads/fallback.jpg" title="Your browser does not support the video tag"></video>

    set the layer as “Use this video as slide background”

    in reply to: Color Section Bug #1130910

    i tested your setup – but the button links are active on my page with all padding settings. ?

    in reply to: text-shadow in an object #1130905

    As long as you are styling your page it would be better to deactivate the caching tools (W3 Total Cache) and merging of enfold. So that you can be sure that it is a bug in the settings, and not a caching “bug” that simply presents you with older CSS settings.

    i can see the text shadow on all browser i have installed on my mac ( Safari, Chrome, Firefox, Firefox Developer)

    in reply to: Layer-Slider anchor jumps on Safari not correctly #1130900

    no – as you can see i have found the posting of mike . but if you see the permalink on the board here – you obviously see that there is the title of the topic included. If i do a search here on board only with post ID : #1067907 there are no results except your posting here.
    So best is if you post the links to the postings your refer to.

    As i wrote above – the delay time is no enfold input options field – it belongs to the 3rd Party Plugin.

    in reply to: Layer-Slider anchor jumps on Safari not correctly #1130898

    So now to: https://kriesi.at/support/topic/sprungmarke-wird-nicht-korrekt-angesteuert-in-kombination-mit-layerslider/#post-1067907

    the whole thing is about a plugin i often use too: page scroll to ID

    there is this option to insert on plugin settings.

    in reply to: Layer-Slider anchor jumps on Safari not correctly #1130895

    above each post here on board there is a reply button on the right – and the link to this post.
    You can copy the link to Mike’s post and paste it into your post – then it’s easier for us to find the post you’re referring to.

    in reply to: Remove ALT text on whole website #1130894

    Tooltips comes from title tag – here too : for SEO point of view these title tags are usefull.
    Because of tooltip is a browser thing – you can not supress showing tooltips accept get rid of title tag.
    Removed from all anchors and imgs
    Similar to above :

    function remove_title_attr(){
    ?>
    <script>
    (function($){
    	$(window).load(function(){
    		$('#wrap_all a').removeAttr('title');
    		$('#wrap_all img').removeAttr('title');
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');
    in reply to: Remove ALT text on whole website #1130780

    may i ask you why this is needed? Because a lot of users like to have alt ( and from the former view of html validity it is mandatory to have on imgs the alt tags) on every image. From SEO point of view it might be usefull to have these alt tags. etc.pp

    you can insert this to your child-theme functions.php:

    function remove_alt_attr(){
    ?>
    <script>
    (function($){
    	$(window).load(function(){
    	  $('#wrap_all img').removeAttr('alt');
    	});
    })(jQuery);
     </script>
    <?php
    }
    add_action('wp_footer', 'remove_alt_attr');
    in reply to: How can I see how many licenses I still have? #1130778

    Login to your Envato Account and open :
    https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
    under the Prize now there is an overview tab now : Purchased licenses
    the whole info includes the amount of licenses you bought.

    Gibt es denn noch den alten Vertrag? Oder wurde da auch schon alles gekündigt? Und Zugänge existieren nicht mehr?
    War irgendein Backup Plugin installiert auf dieser Installation.?
    Ich frage, weil Duplikator ja die Sicherungen innerhalb der Installationsordner erstellt. Diese wären dann mit gesichert im Verzeichnis.
    Wenn es noch nicht allzulange her ist schreibe den alten Hoster (Strato) nochmal an.
    Die Datenbank ist bei CMS nun mal die zentrale Sicherungsstelle.

    Bei Strato ist die MySQL nur intern aufrufbar
    bei DBUser: U1234567 und DBName: DB3456789 wäre die MySQL zu erreichen unter :
    https://www.strato.de/apps/phpmyadmin/strato-app/myadmin4824/DB123456/index.php?db=DB3456789

    es findet im nicht eingeloggten Zustand bei Strato jedoch keine Passwortabfrage zur Datenbank statt. Daher leider auch nicht mehr so erreichbar.

    Ich fürchte – wenn dir Strato da nicht weiterhilft wird es für dich nur eine Leerstunde in Sachen CMS absichern sein.
    Was Enfold betrifft hast du wenigstens im Verzeichnis ein paar Sachen gesichert ( die Quick CSS – und Einstellungen des Themas sollen so gesichert sein)

    Aber die Posts/Pages Inhalte befinden sich alle nur in der Datenbank

    in reply to: Version 4.5.7.1?!? #1129943

    Well there has been enough time for a major update to come.
    Therefore my hope is not the 4.5.8 but the 4.6. ;)

    in reply to: magnificPopup is not a function #1129603

    this is for child-theme functions.php – isn’t it?
    you have forgotten some important things:

    function popup_inline() { 
    ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
        jQuery('.open-popup-link').magnificPopup({
          type:'inline',
          midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href.
        });
    });
    </script>
    <?php 
    }
    add_action('wp_footer', 'popup_inline');

    btw: it works in the footer as well

Viewing 30 posts - 6,631 through 6,660 (of 11,820 total)