Forum Replies Created

Viewing 30 posts - 7,291 through 7,320 (of 11,481 total)
  • Author
    Posts
  • in reply to: How can I change the IDs for accordions? #1030703

    you want to give to each of the toggles a unique ID so you have to open on the alb element the single toggle – click on toggle 1 to enter that new popup window to put in your IDs
    click to enlarge the image:

    in reply to: [WordPress 5.0] Guttenberg & Enfold #1030285

    so maybe this would be for the next time a good combination to have minor updates (security relevant things) enabled and major core updates disabled till WP 5.0 is stable and all Plugins and Themes are fit for it
    this to functions.php of your child-theme:

    
    add_filter( 'allow_major_auto_core_updates', '__return_false' );
    add_filter( 'allow_minor_auto_core_updates', '__return_true' );

    But I also like to be convinced in other ways, if e.g. the mods don’t think this is necessary. I have always liked to have control over when and if I update. Mostly I wait for the first bugfixes.

    If you are curious you should make a copy of your page with Duplicator and test the updates there.

    in reply to: [WordPress 5.0] Guttenberg & Enfold #1030265

    i disabled on the moment the automatic updates at all via wp-config
    f.e. :

    you can disable automatic updates in WordPress by adding this line of code in your wp-config.php file:

    define( 'WP_AUTO_UPDATE_CORE', false );

    This will disable all automatic WordPress updates.

    However if you want to receive minor core updates, but disable theme and plugin updates, then you can do so by adding the following filters in your theme’s functions.php file or in a site-specific plugin.

    Disable automatic WordPress plugin updates:
    add_filter( 'auto_update_plugin', '__return_false' );

    Disable automatic WordPress theme updates:
    add_filter( 'auto_update_theme', '__return_false' );

    or on WP Codex: https://codex.wordpress.org/Configuring_Automatic_Background_Updates

    Or nice summary : http://tutorialspage.com/enabledisable-wordpress-automatic-updates/

    in reply to: Grid row – not fullsize : how to #1030125

    Sorry -for the missing example images and lost pages – but these tips are from January 18 – so test page is gone.
    And some image hosters i used on that time are lost in space :lol
    But i hope description is good enough to get the things to work

    These nested layout is a nice thing – that is the reason for code above
    PS the imagehoster changed to a different TLD from org to cc

    Well i don’t know how your page setup is on that page, but there is a product description div. You can get rid on that page by:

    .post-type-archive-product #av_product_description {
        display: none;
    }

    but have a look if you havn’t the chance on your shop settings to avoid generating that div

    in reply to: ALT and TITLE tag for images in Partner/Logo #1029786

    do you have links on your partner logos – f.e. to their webpages ?
    Then there is an anchor to which the title tag can be set.

    But first fill in title tag then the url to which the logo link goes. Otherwise if there is an url the link title input field disappears:

    f.e. that page here: https://kriesi.at/themes/enfold-law/news/
    And your claim is now that the content ( av-masonry-entry-content entry-content ) is not read by Google-Bot?
    ( The text under the featured Images )

    in reply to: ALT and TITLE tag for images in Partner/Logo #1029683

    sorry my fault – i see that partner logo element works with background-image : so there is no alt and title tag at all because no img tag

    in reply to: ALT and TITLE tag for images in Partner/Logo #1029673

    go over the media library grid view – klick on one image and see the attachment details:
    click to enlarge

    with arrows on top right you can go to the next image and fill in the desired infos etc.

    in reply to: How to remove htaaccess from website #1029605

    Ok – the one thing that is neccessary for wordpress itself is something like this :

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    …  things WP need for example to set up permalink structure etc …
    </IfModule>
    # END WordPress

    Everything else can be useful but is not necessary.

    i use the htaccess file often to set up gzip or expiration date etc. for WordPress files.
    or to redirect old page path to new ones (301 redirect instructions)

    in reply to: How to remove htaaccess from website #1029601

    did you generate a htpasswd?
    Is the complet page not available or only the wp-login page of your page?

    Some guys like to password protect the Admin Area serverside. so that you have to enter a password before you can access the normal WP access.
    Here is some info about htpasswd ( same as htaccess it is an invisible file with a dot in front: .htaccess and .htpasswd )
    http://www.htaccesstools.com/articles/htpasswd/
    The Protection then is an entry in htacces file like:

    # Auth protect wp-login.php
    <Files wp-login.php>
      AuthName "Restricted Admin-Area"
      AuthType Basic
      AuthUserFile /is/htdocs/wp1234567_EJ5MMWZBH6/www/.htpasswd
      Require valid-user
    </Files>
    
    # Deny access to important files
    <FilesMatch "(\.htaccess|\.htpasswd)">
      Order deny,allow
      Deny from all
    </FilesMatch>

    you have to know the absolute path to the htpasswd to set this.
    That’s a good thing, but annoying when logging into the WordPress backend.
    But the advantage is that the attempts to hack into your admin area using a bot are already blocked on the server side, so that the brute force attack does not affect your site performance.

    in reply to: Icon Grid : Flip #1027922

    Aha – i see it is only a firefox problem. But even then you have to fix it. On Safari and Chrome it works fine on firefox there is that behavior like the image above shows it.

    in reply to: How is the "Hover Circle" at kriesi.at homepage done? #1027917

    but if you are familiar with developer tools of your browser f.e. with the debugger you will find the kriesi.js file – in it all you need

    in reply to: Easy Slider – YouTube Videos Now Showing Title #1027912

    allthough the rel parameter is still listed, but it seem not to work anymore.

    in reply to: enfold4.5.zip (kostenlos) nicht auffindbar #1027910

    zum Downloadbereich: befindet sich nach dem Einloggen unter deinem Nick dort:

    in reply to: enfold4.5.zip (kostenlos) nicht auffindbar #1027354

    Wenn du es bei Envato gekauft hast – warum loggst du dich dort nicht ein, und lädst dir die Datei dort runter?

    If you bought it at Envato – why don’t you log in there and download the file there?

    in reply to: A text in header, between Title and Breadcrumb. #1027002

    f.e. :

    .title_container .main-title::after {
        content: "abc - die Katze liegt im schnee";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        font-weight: bold;
    }
    
    @media only screen and (max-width: 767px) {
    .title_container .main-title::after{
        position:absolute;
        left:auto;
        right: 0;
        transform: none;
        text-align: right;
      }
    }
    in reply to: A text in header, between Title and Breadcrumb. #1026989

    a quick and dirty solution might be to insert pseudo content like:

    .title_container .main-title::after {
        content: "here is your short text";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        font-weight: bold;
    }

    you have to decide what should happen on responsive case on very small screens to it.

    • This reply was modified 6 years, 8 months ago by Guenni007.
    in reply to: kriesi.at #1026938

    go over the debugger of your developer tools of your browser.
    There was a kriesi.js with number animation script and : Principles picker
    the Rest is a lot of css and html code.

    in reply to: Easy Slider – YouTube Videos Now Showing Title #1026776

    if the copyright question was clarified, then you could download the video and upload it to Youtube yourself. If you have your own videos, you can choose not to show them.

    in reply to: google says" Your page is not mobile-friendly." #1026507

    i’m participant as you – so i do not see private area. But look under those message or klick on it – you will be redirected to a page where this can be initialized to proove. After that – i’m sure the page will be rated as mobile friendly – then there will be a link to report this result.

    in reply to: Easy Slider – YouTube Videos Now Showing Title #1026291

    i guess those videos you upload yourself to youtube – you have the opportunity to get rid of those ads
    but on public videos there is now no chance to get rid of i guess –
    as i said above on former times this “secret” attriubt does the trick like&rel=0 the &ecver=2 solves that problem

    both options seems to be erased the rel too

    • Sign in to YouTube.
    • In the top right, click your account icon > Creator Studio.
    • On the left, select Video Manager.
    • Select the video(s) where you want to turn ads off. You can select all your videos by clicking the checkbox at the top of the screen next to “Actions.”
    • Click Actions > More actions > Monetization.
    • Select Off.
    • Click Submit.
    in reply to: Easy Slider – YouTube Videos Now Showing Title #1026274

    on pause the video there are other films as link. On former times we could get rid of that by adding the ecver=2
    but today that does not work anymore. Fu… google advertising

    in reply to: Enfold 4.5 – Easy Slider bug #1026270

    Werbung so ein Quatsch – überleg mal was du da sagst. Das ist kostenfrei reingestellt für andere Teilnehmer, die danach fragten wie sie die Captions verändern können. Ich denke ich muss mir das nicht unterstellen lassen. Ich habe hier über 4000 Postings – meist sind es Hilfestellungen die ich gebe.

    PS: ausserdem nutzt du nicht den Einfachen Slider sondern den Vollbild Slider
    _______

    Advertising such nonsense – think about what you’re saying. This is free of charge for other participants who asked how they could change the captions. I think I don’t have to assume that. I have more than 4000 postings here – most of them are helpers I give.

    PS: besides you don’t use the Simple Slider but the Fullscreen Slider

    in reply to: Enfold 4.5 – Easy Slider bug #1026261

    weiss ich – ich hatte für alle Enfold Slider veränderte ALB erstellt, um bei den Captions die Auswahl zu haben welchen Tag die Überschriften haben.
    Ausserdem habe ich für den Einfachen Slider die Möglichkeit mit drin die Schriftgrößen anzupassen.
    Siehe hier: https://webers-testseite.de/edited-enfold-alb-elements/#sliders

    in reply to: Enfold 4.5 – Easy Slider bug #1026259

    Bist Du eventuell einer derer, die meine veränderten ALB nutzen um H-Tag auswahl bei den Captions zu haben?
    Es gibt neue Versionen : Download
    ich hatte bei dem einfachen Slider einen kleinen Fehler drin – sorry.
    Jetzt sollte es laufen.

    in reply to: google says" Your page is not mobile-friendly." #1026246

    Where was this displayed? At page speed insight or on another page?

    in reply to: Cann't upload the video directly to the site #1026245

    What is the size of that video? Maybe it is over the upload limitation.
    If that’s the case, I’d advise against self-hosting anyway. Videos of this size slow down your site and the loading process enormously.

    in reply to: A text in header, between Title and Breadcrumb. #1026026

    and what should happen if breadcrumb gets bigger than this in your screenshot

    in reply to: Icon Grid : Flip #1024328

    do you see that demo page of enfold: https://kriesi.at/themes/enfold-one-page-agency/#services

Viewing 30 posts - 7,291 through 7,320 (of 11,481 total)