Forum Replies Created

Viewing 30 posts - 7,321 through 7,350 (of 11,529 total)
  • Author
    Posts
  • in reply to: Easyslider H1 #1040193

    so that is the reason why i wrote on that tut:

    so all you have to do is to create a folder called : „shortcodes“ in your child-theme folder
    and upload the downloaded files to that folder

    the code that ismael gave you then makes sure that instead of the original elements they are taken.
    In general, you only have to replace 1:1. The sliders, however, have a central element, which additionally influences all sliders.
    But editing av-helper-slideshow.php these changes also require the new input fields for heading tag in all three sliders, so you can only replace them in the package.

    PS: using a child-theme is best practice for wordpress – with very few exceptions it is unnecessary to use a child theme. The advantages of using a child theme are great and help you to make minor changes yourself and these changes will not be lost on next parent update.
    You see that the child-themes folder of enfold should be a sibling to it ( see folder structure above)

    Enfold got a few features to help you to switch to a child-theme. Beginning with a predefined child-theme ( with at startup an empty child-theme functions.php ).. The functions.php file is a unique file-type in WordPress – because the existance of a child-theme functions.php does not replace the parent file but it adds new content to the existing parent functions.php. ( F.e. the header.php in child-themes folder will completely replace the original parent file).

    After uploading the unzipped child-theme folder to your installation ( bit.ly/enfold-child )
    go first to the enfold dialog : Import/Export – it will be a good advice to have a copy of the parent settings file. After that you can activate the child-theme on Appearance/Themes.
    Now you got on the dashboard : Enfold Child Options – go to import/export and choose : Import Settings from your Parent Theme
    on common this will be the trick.

    By the way – i think performance does not correlate in a direct way to expires.c
    this is a bad ranking factor on gtmetrix or pingdom tools – yes – but it does not decelerate your site.

    there must be other factors – or you just didn’t express yourself precisely enough upstairs in the intro topic.
    Is it the site of your avatar link ?

    don’t know if it is neccessary to set the “timeout” with a plus – my entries concerning to expires header are:

    # Browsercache
    <IfModule mod_expires.c>
     ExpiresActive On
     ExpiresDefault "access plus 1 month"
     ExpiresByType text/css "access plus 1 month"
     ExpiresByType text/javascript "access plus 1 month"
     ExpiresByType text/html "access plus 1 month"
     ExpiresByType application/javascript "access plus 1 month"
     ExpiresByType application/x-javascript "access plus 1 month"
     ExpiresByType application/x-font-ttf "access plus 1 month"
     ExpiresByType application/x-font-woff "access plus 1 month"
     ExpiresByType application/x-woff "access plus 1 month"
     ExpiresByType application/xhtml-xml "access plus 600 seconds"
     ExpiresByType application/pdf "access 1 month"
     ExpiresByType image/gif "access plus 1 month"
     ExpiresByType image/jpg "access plus 1 month"
     ExpiresByType image/jpeg "access plus 1 month"
     ExpiresByType image/svg+xml "access plus 1 year"
     ExpiresByType image/svg "access plus 1 year“
     ExpiresByType image/png "access plus 1 month"
     ExpiresByType image/x-icon "access plus 1 month"
    </IfModule>
    
    • This reply was modified 6 years, 8 months ago by Guenni007.
    in reply to: get body text bigger than 40pt #1033959

    by the way you can influence the p tag via advanced styling up to 80px

    or do you only want to change some text block elements – than you can use Yigits css to have it specific

    in reply to: get body text bigger than 40pt #1033956

    i guess the enfold options goes to : ID = color-default_font_size

    line 2541 in register-admin-options.php

    but this will only end up in css concerning to body tag like:

    body, body .avia-tooltip {
        font-size: 70px;
    }

    perhaps an !important is neccessary

    in reply to: VIDEO LIGHTBOX Not Working #1033933

    sorry wrong part. it goes about the video starting from your button.

    Hm that code worked on my enfold theme:

    https://www.youtube.com/watch?v=Y_dteRICqzs?autoplay=1&iframe=true

    • This reply was modified 6 years, 8 months ago by Guenni007.
    in reply to: how to address via jquery an element with attribute? #1033620

    yes but i did that by selecting the first-child.
    i’d like to select it via the label – if there is Date or Datum (german)

    so i thought i could do it this way:
    $('th[aria-label*="Dat"]').addClass('dateFormat-ddmmyyyy');
    but it does not work on jQuery
    per css i can select it this way to change color etc.
    th[aria-label*="Dat"]

    in reply to: Translation to Events Calender #1032195
    in reply to: Translation to Events Calender #1031880

    by the way the binding word is often defined as a separator string
    $sep or $separator – and on different cases the separator is defined individually.

    in reply to: Translation to Events Calender #1031877

    so now there is: Tapahtumat for marraskuu 2018?

    This is certainly a composite form in the source code.
    ( By this I mean that the word “event” is translated individually followed by a binding word and then the months are translated individually and the whole thing is just put together. )
    Therefore it would be unwise to replace the “for” with a hyphen in general. Then all occurrences of “for” on your whole website would be replaced.

    But you can try this in your functions.php of your child-theme:

    function my_text_strings ( $translated_text, $text, $domain ){
    switch ( $translated_text ){
    	case 'for tammikuu':  
    		$translated_text = __( '- tammikuu', $domain );
    	break;
    	case 'for helmikuu':  
    		$translated_text = __( '- helmikuu', $domain );
    	break;
    	case 'for maaliskuu':  
    		$translated_text = __( '- maaliskuu', $domain );
    	break;
    	case 'for huhtikuu':  
    		$translated_text = __( '- huhtikuu', $domain );
    	break;
    	case 'for toukokuu':  
    		$translated_text = __( '- toukokuu', $domain );
    	break;
    	case 'for kesäkuu':  
    		$translated_text = __( '- kesäkuu', $domain );
    	break;
    	case 'for heinäkuu':  
    		$translated_text = __( '- heinäkuu', $domain );
    	break;
    	case 'for elokuu':  
    		$translated_text = __( '- elokuu', $domain );
    	break;
    	case 'for syyskuu':  
    		$translated_text = __( '- syyskuu', $domain );
    	break;
    	case 'for lokakuu':  
    		$translated_text = __( '- lokakuu', $domain );
    	break;
    	case 'for marraskuu':  
    		$translated_text = __( '- marraskuu', $domain );
    	break;
    	case 'for joulukuu':  
    		$translated_text = __( '- joulukuu', $domain );
        break;
      }
      return $translated_text;
    }
    add_filter('gettext', 'my_text_strings', 20, 3);

    you have to do that for all 12 cases ( Month )
    maybe this could work

    • This reply was modified 6 years, 8 months ago by Guenni007.
    in reply to: Map not showing in Enfold 4.5. I have API key. #1031873

    Well i see that rule in your merged css:

    #top .av_gmaps_browser_disabled, #top .av-maps-user-disabled .av_text_confirm_link {
        display: none;
    }

    if i deaktivate it virtually on my developer tools i can see the button on hovering the field:

    in reply to: Map not showing in Enfold 4.5. I have API key. #1031739

    and by the way you have in your settings:

    #top .av_gmaps_browser_disabled, #top .av-maps-user-disabled .av_text_confirm_link {
        display: none;
    }

    this was set by a new feature since Enfold 4.4 concerning to GDPR.
    Open the Map Layout Element again and see:
    it is called conditional load
    click to enlarge:

    I guess you have choosen the “only open google maps in new window”

    in reply to: Map not showing in Enfold 4.5. I have API key. #1031737

    a few weeks ago they changed something at the billing informations. Try to log in to your Google Account and renew or update/ confirm billing information.
    The same thing happend to me when they did the trick

    in reply to: Social Icons in Footer #1031442

    if you like to see my result and social bookmark widget: https://kriesi.at/support/topic/social-bookmarks-widget-how-to/
    Then you can place the social icons of your Enfold Options Social Bookmarks – into the column you like to have.
    See here https://webers-testseite.de/#footer
    Left side is shariff – in the mid column it is that social bookmarks widget

    in reply to: Double Opt-In for Layer-Slider ????? #1031426

    ja – ich finde ohnehin das Standards wie Slider oder Masonry nicht übersetzt werden sollten.

    in reply to: Double Opt-In for Layer-Slider ????? #1031162

    there must be something wrong with your lang files – my testpage with 4.4.1 shows on German (Du) and formal German (Sie) only english and no translation.
    On Enfold 4.5 there are translated phrases for that field but you can see the results on top. These Translations are o.k.
    What kind of language you have choosen for your WordPress?
    Try to upload the lang folder again.

    Does it happen even if you activate a WP Standard Theme like twentyseventeen ?

    Let me understand you correctly; this is an existing page that you wanted to put on Enfold, and this leads to the problems.
    Maybe there are custom entries in the htaccess file.

    in reply to: Double Opt-In for Layer-Slider ????? #1030706

    i don’t know why you got this confusion of languages.
    on newest Enfold i got this in tranlation file ( but than description is german too):

    What version of Enfold do you have installed?

    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.

Viewing 30 posts - 7,321 through 7,350 (of 11,529 total)