Forum Replies Created

Viewing 30 posts - 1 through 30 (of 33 total)
  • Author
    Posts
  • in reply to: line between articles #960488

    I found this solution:

    article .entry-content-wrapper {
    border-bottom: 1px dashed black;
    margin-bottom: 60px !important;
    }

    This works fine on the page “Home” and I can see a line between the blog posts.
    I had a second page “Home Mitglieder” (with the same content, only another page name and visible after login) and there I can’t see the line?

    Best regards

    Siegfried

    in reply to: Noch immer Problem mit Burger Menu auf smartphone #887436

    Ich hab jetzt den code für die eingeloggter user anzeige wie folgt geändert:
    */
    add_action(‘avia_meta_header’, ‘ava_get_user’);
    function ava_get_user() {
    if ( is_user_logged_in()) {
    $user = wp_get_current_user();
    echo “<div id=’header-welcome’>Welcome “. $user->display_name .”</div>”;
    }
    }

    Zusätzlich in der custom css

    #header-welcome {
    position: relative;
    right: -10px;
    top: -0px;
    width: auto;
    }
    .av_secondary_right .sub_menu {
    padding-right: 100px !important;
    }

    eingetragen.

    Damit funktioniert nun auch auf iPad, PC und smartphone die Anzeige des engeloggten Users im secondary Menübereich und auch das Burger menu am smartphone funktioniert.

    Die Anfrage kann als erledigt makiert werden.
    Danke
    lg siegfried

    in reply to: Noch immer Problem mit Burger Menu auf smartphone #887383

    Hi Günther,

    Danke für die Antwort.
    Bin jetzt etwas verwirrt. Ich verwende eigentlich die Standard Menüstruktur des Themes. Wo kann ich die a tags eingeben. Unter Design menu im jeweiligen Menüfeld?

    Das Burger menü funktioniert am smartphone wenn ich den bereits angeführten Ergänzungscode für die Anzeige des eingeloggten Users im Menü, weglasse. Mit dem Code in der functions.php funktioniert dann das Burger menü am smartphone nur auf der Home Seite.

    Hier noch einmal der Code:

    /* welcome user */
    add_filter( ‘wp_nav_menu_items’,’my_custom_menu_item’);
    function my_custom_menu_item($items)
    {
    if(is_user_logged_in())
    {
    $user=wp_get_current_user();
    $name=$user->display_name; // or user_login , user_firstname, user_lastname
    $items .= ‘<li style=”padding: 0em 1em; font-family: bree serif; color: rgb(255, 255, 255);”>Mitglied: ‘.$name.”;
    }
    return $items;
    }

    lg Siegfried

    in reply to: Noch immer Problem mit Burger Menu auf smartphone #887092

    Das Problem liegt scheinbar in der Anzeige des eingeloggten user Namens.
    Wenn ich diesen code
    /* welcome user */
    add_filter( ‘wp_nav_menu_items’,’my_custom_menu_item’);
    function my_custom_menu_item($items)
    {
    if(is_user_logged_in())
    {
    $user=wp_get_current_user();
    $name=$user->display_name; // or user_login , user_firstname, user_lastname
    $items .= ‘<li style=”padding: 0em 1em; font-family: bree serif; color: rgb(255, 255, 255);”>Mitglied: ‘.$name.”;
    }
    return $items;
    }

    in der functions.php entferne dann funktioniert das Burger Menu am smartphone.

    Was ist in dem code Teil falsch?

    • This reply was modified 6 years, 11 months ago by uebes.
    in reply to: Menü auf smartphone geht nicht #885225

    Sorry, hab jetzt die Lösung auf Eurer Support Seite gefunden:

    Hab den Code verändert

    add_filter(‘wp_nav_menu_items’, ‘add_login_logout_link’, 10, 2);
    function add_login_logout_link($items, $args) {
    if( $args->theme_location == ‘avia’ ) {
    ob_start();
    wp_loginout(‘index.php’);
    $loginoutlink = ob_get_contents();
    ob_end_clean();
    $items .= ‘<li class=”menu-item”>’. $loginoutlink .’‘;
    }
    return $items;
    }

    Nun funktioniert es.

    Danke

    in reply to: Plugin Aktualisierungs Anzeige #862375

    Hi Rikard,
    Thank you for your Support. You can close the topic.
    Best regards
    Siegfried

    in reply to: Plugin Aktualisierungs Anzeige #861861

    Hi Victoria,

    Thank you for your message.
    I remove the layer slides integration with the theme with the single line in your link added to my functions.php in the child theme.

    Now it’s ok.
    Best regards

    Siegfried

    • This reply was modified 7 years, 1 month ago by uebes.
    in reply to: Plugin Aktualisierungs Anzeige #861716

    Hi Rikard,

    I think the proplem is the layerslider WP which comes with Enfold.

    There I can see the message “You have version 6.5.1. The latest version is 6.6.0.”

    And also the tip “request it from the author of your theme if you’ve received LayerSlider from themAny solution for this?”.

    Best regards

    Siegfried

    • This reply was modified 7 years, 1 month ago by uebes.
    in reply to: Plugin Aktualisierungs Anzeige #860896

    I tried it with different IP adresses from Austria and I reached always the site.
    I am using a plugin for country blockig. Perhaps this is the reason. I deactivated it. Please try it again,
    Best regards
    Siegfried

    • This reply was modified 7 years, 1 month ago by uebes.
    in reply to: Plugin Aktualisierungs Anzeige #860574
    This reply has been marked as private.
    in reply to: Trennstrich #763375

    Hallo Andy

    Hab jetzt eine gute Lösung gefunden. Ich verwende für diese Blog Anzeige einfach den Typ “Elegant”. Damit habe ich eine saubere Trennung zwischen den Beiträgen.

    Danke

    Mit freundlichen Grüßen
    Siegfried

    in reply to: Trennstrich #762670

    Hallo Andy,

    Hier ist der Link: http://plattformfuermenschen.ihcoffice.at/tag/begegnungscafe-neumarkt/

    Es ist eine Zusammenfassung von Beiträgen eines ausgewählten Schlagwortes. Hier sollten die Beiträge durch einen Trennstrich getrennt werden damit die Übersichtlichkeit besser gegeben ist. Aufgerufen wird die Seite durch Auswahl eines Schlagwortes im Footer reschts.

    Danke
    Beyste Grüße
    Siegfried

    • This reply was modified 7 years, 8 months ago by uebes.
    in reply to: Fullwidth submenu #740540

    I found the solution.
    I changed in the Print Friendly & PDF Settings the point “My Page Content Selected By:” to Content Algorithm
    You can delete my support question.

    thx.

    • This reply was modified 7 years, 10 months ago by uebes.
    in reply to: Magazine #594909

    Additional Information

    Can you give me a solution so that I can write my article with the avia layout architect text modul and “magazin” takes the text (with the defined lenght in magazine.php) from there and not from the field excerpt. So I have always to think when I use the layout architect that I need a text in the field excerpt and the lenght of the text should have not more then approx. 10 letters.

    Thank you

    Best regards
    Siegfried

    in reply to: Magazine #594319

    Additional information.

    it works if the article is made with standard without enfold avia layout architect.
    With the enfold avia layout architect it works only if I fill a text in the field excerpt. But then the lenghts of the excerpt is more than 10 letters.

    BR Siegfried

    in reply to: Magazine #594309

    Hi,

    I changed now the original file magazin.php.

    This works. So I think I have a problem with my enfold-child magazine.php.

    But I have an additional question.

    I am using on my start page two magazine. One for the 5 latest posts and another for 6 more posts.
    The excerpt (10 letters) works fine on the latest posts magazine but on the second magazine the excerpt is much longer (approx. 30 letters). The first magazine is working with the setting for hero post, the second magazine without hero post.

    I would like to have the small excerpt (10 letters) on all magazines on the page.

    Thank you

    best regards
    Siegfried

    in reply to: Magazine #594294

    Thank you for your reply.

    I tried it but it doesn’t work. Probably the problem is sitting in front of the PC ;-))

    1) I changed the magazin.php.
    2) I saved the file (enfold-child/config-templatebuilder/avia-shortcodes/magazin.php)
    3) I emptied all W3 caches
    4) I emptied the browser cache

    I can’t see the excerpt only on the hero post.

    Any idea? You will find the access info for my site in the private content.

    Bets regards
    Siegfried

    in reply to: Element Blog Beiträge #592672

    Ich hab die Antwort gefunden.
    Man muss den Auszug Text im Blog Beitrag ausfüllen.
    Jetzt ist ein Text sichtbar. Verbesserungsvorschlag wäre wenn der Auszug nicht ausgefüllt ist wird automatisch der Text Block genommen.

    lg Siegfried

    in reply to: Frage #591843

    Habe es gefunden. Funktioniert jetzt so wie ich will.
    Schöne Grüße

    Siegfried

    in reply to: Partner/Logo Element #589260

    Hallo,

    Danke, funktioniert wunderbar.

    Wie immer ein toller und schneller support.

    Schöne Grüße

    Siegfried

    in reply to: Partner/Logo Element #589025

    Hier der Link
    Danke Siegfried

    in reply to: Fullwidth submenue #536862

    Hallo Andy,

    Der link ist: http://neumarktfuermenschen.ihcoffice.at

    Ich will ganz unten im footer in der letzten Zeile (mit den copyright Eintrag) die social links mit Links zu den Seiten Impressum, Kontakt, Datenschutz ergänzen.
    Diese links habe ich derzeit als individuelles Menü (Informationen) im widget footer 3 platziert hätte es aber gerne ganz unten.

    Danke

    Beste Grüße

    Siegfried

    PS: Ein echtes Kompliment für das Theme. Je mehr ich damit arbeite desto besser gefallen mir die vielen Möglichkeiten. Die eine oder andere meiner Fragen ist sicher noch auf die kurze Einarbeitungsphase zurückzuführen.

    in reply to: Avia Layout Video #536341

    Hi,
    Thank you for reply.

    The link is: http://neumarktfuermenschen.ihcoffice.at

    It is the right video windows on the start page.

    Regards
    Siegfried

    in reply to: Download 3.4.2 not possible #535155

    Sorry
    I found a solution for me. I stored the files as zip files and the download works.

    You can close this support issue.

    Regards
    Siegfried

    in reply to: Download 3.4.2 not possible #535125

    Ok update manually worked for me.

    But now I have a problem:

    With the V 3.4.1 it was able to download a file which is situated in a folder of the wordpress site.
    With 3.4.2 I get a list of the content of the file but no download of the file. I can’t store the file inside of the upload directory because it is a card file (not allowed in wordpress)

    Can you help me?
    thx

    Regards

    • This reply was modified 9 years ago by uebes.
    in reply to: Footer #532431

    Hi,

    Problem erkannt. War wohl zu schnell mit der Fehlermeldung.

    Es ist das plugin WP Rocket. Wenn man dort die CSS Minification einstellt verändert sich die Darstellung wie beschrieben.
    Werde mit den Plugin Autor diesbezüglich in Kontakt treten.

    Danke
    Beste Grüße
    Siegfried

    in reply to: Secondary Sub-Menü in top bar geht nicht mehr weg #522461

    Danke,

    Es war das Plugin WP-SAMW (war als Widget im Footer Menü) das hier die Probleme gemacht hat.
    Hab es gelöscht und nun funktioniert es wie es soll.

    Die Testseite habe ich nur für Euch gemacht, sie ist nicht produktiv. Das heißt Ihr könnt Euch, wenn Ihr wollt, hier austoben.
    mfg
    Siegfried

    PS: Warum dauert der Aufruf der Plugin Seite und das aktivieren und deaktivieren eines Plugin so lange? Liegt es am webspace Provider oder hat hier WordPress 4.3.1 Probleme?

    in reply to: Secondary Sub-Menü in top bar geht nicht mehr weg #522240

    Hab eine neue Testseite für Euch angelegt. Siehe private content.

    in reply to: Secondary Sub-Menü in top bar geht nicht mehr weg #519978

    Siehe Privater content

    in reply to: Secondary Sub-Menü in top bar geht nicht mehr weg #519957

    Wenn Du auf intern in der obersten Zeile gehst, klappt ein Untermenü auf. Wenn man dann auf einen Untermenüpunkt klickt gelangt man auf die Untermenüseite, aber das aufgeklappte Untermenü bleibt am Bildschirm stehen und geht nicht weg.
    Mit freundlichen Grüßen
    Siegfried

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