Forum Replies Created

Viewing 30 posts - 9,271 through 9,300 (of 11,187 total)
  • Author
    Posts
  • in reply to: Site slow? www.olieshop24.nl #806528

    i think Rikard is right – W3TC is one of those mighty tools – but sometimes for users a bit too mighty – means a lot of settings which can confuse normal users.
    So if i gave the admin role to my customers – i often install wp super cache and in combination with bwp minify.
    Very rarely there are problems with advanced layerslider – this could be solved by excluding the scripts of advanced layerslider from BWP MInify influence.

    in reply to: Change color of a single menu item? #806024

    or you do it by counting the mainmenu points:
    this code will colorize the 3rd menu-point

    .main_menu #avia-menu li:nth-child(3) .avia-menu-text {
        color: #900;
    }
    in reply to: Change color of a single menu item? #806021

    Yes – i think the easiest way is to give each Menu Point his own class

    (you can click every image to enlarge)

    Goto Menu and have a look on top of the window (red arrow – press the button)

    the slideing out gives you many oportunities – mark that Classes square

    now open the menu-point you like to give a class and input a classname in the concerning field:

    now you can select that menu point with the class you gave.

    in my example :

    li.special-color .avia-menu-text {
        color: #090;
    }

    hm – i can not confirm this – on your site i can select with Chrome/OSX (also with firefox, safari, opera)

    in reply to: Soft Hyphens in eine bestimme Überschrift einfügen #805971

    you mean a ­ i think this soft-hyphen as html-entity does not work on headings in Enfold – but there are a lot of analogons
    try the unicode-dezimal : &#173 with a smicolon after the 3 !!! – the bord soft changes it directly to a space

    _______

    Entschuldige ich übersah die gemeinsame Sprache.
    Also ich habe das mit dem unicode-dezimal code gemacht:

    Beispielseite: https://webers-testseite.de/ikom/beispiel-seite/

    PS: leider ist es nach dem Speichern auch nicht mehr zu sehen – hat aber Einfluss. Selbst im Quellcode sieht man das nicht mehr wirklich

    PPS: im Textfeld von Enfold funktioniert übrigens auch das ­ – auch bei dort eingefügten h1. Ich stellte es nur einmal fest, als ich es auch in dem Inhaltselement “Spezielle Überschrift” brauchte ging das html-Entity nicht

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: different logo for logo an main menu sidebar left #805923

    ok allthough this works – i did it now in a different way:
    this seems to be faster – and for the sidebar logos i have the array method)

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if( is_page(21) ) {
        $logo = "path to url1"; 
         }
      
        elseif ( is_page( array( 42, 54, 6 ) ) ) {
        $logo = "path to url2"; 
         }
    
        elseif ( is_page() && !is_page(1307) )  {
        $logo = "path to url3";  
         }
    
        return $logo;
    }
    in reply to: Site slow? www.olieshop24.nl #805613

    you allways can do that! Its up to you – there are some good beginners deals – but most are associated with costs. Alot of good caching tools have integrated such settings for cdn.

    But before all that i would do all the other trick before. Enable gzip for the most of my files (see htaccess) etc. pp

    in reply to: Change page title in footer #805562

    by the way – i alway make a new menu for the footer menu.

    because marking both for one menu – will result in double IDs on one page . – this is not valid code (it works but w3c rules says ID means ID

    this will be a good idea not to have here a multible choise (only one or the other)

    in reply to: new shortcodes or edited shortcodes in child-theme #805537

    so shortcodes will also work without snippet if i make a folder in this way? :
    enfold-child/config-templatebuilder/avia-shortcodes

    ok in this case you should do following:

    on Layerslider there is a tab called “slider settings” on the right side of that window you can mark : show advanced settings.
    disable : fit to screenwidth – thats all.

    in reply to: Add Extra Info to Header – Left and Right #805475

    ah – now i see that you like to have phonenumber.
    so make the extra-info top left and the secondary menu top right.

    a telephone link looks like <a href="tel:55 …</a> so if you insert in menu tel: followed directly with your number (no space) the phonenumber will be a klickabel phonenumber.

    in reply to: Site slow? www.olieshop24.nl #805301

    Well here is your gtmetrix results: https://gtmetrix.com/reports/olieshop24.nl/rUyyBHTp

    some images may be optimized but the real thing seams to be minify and caching
    so my first advise could be : use bwpminify (plugin) ( set the caching intervall to 14 or 28 days)

    and than prepare your htaccess file – here on board are some good hints for entries in your htaccess file:

    insert it to your htaccess file but not in between these lines from wordpress itself:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    …
    </IfModule>
    # END WordPress

    my standard entries for wordpress are:

    # Deny from
    <files wp-config.php>
    order allow,deny
    deny from all
    </files>
    
     
    # Directory Browsing
    Options All -Indexes
    
    # Keep-Alive
    <ifModule mod_headers.c>
       Header set Connection keep-alive
    </ifModule>
     
    # Gzip
    <IfModule mod_mime.c>
        AddType application/javascript          js
        AddType application/vnd.ms-fontobject   eot
        AddType application/x-font-ttf          ttf ttc
        AddType font/opentype                   otf
        AddType application/x-font-woff         woff
        AddType application/x-woff              woff
        AddType image/svg+xml                   svg svgz 
        AddEncoding gzip                        svgz
    </Ifmodule>
     
    # GZip Kompression
    <IfModule mod_gzip.c>
     mod_gzip_on       Yes
     mod_gzip_dechunk  Yes
     mod_gzip_item_include file      \.(html?|txt|css|js|svg|php|pl)$
     mod_gzip_item_include handler   ^cgi-script$
     mod_gzip_item_include mime      ^text/.*
     mod_gzip_item_include mime      ^application/x-javascript.*
     mod_gzip_item_exclude mime      ^image/.*
     mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
    </IfModule>
    
     
    # 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 image/gif "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>
    
     
    # Deflate by FileType
    <IfModule mod_deflate.c>
     AddOutputFilterByType DEFLATE text/plain
     AddOutputFilterByType DEFLATE text/html
     AddOutputFilterByType DEFLATE text/xml
     AddOutputFilterByType DEFLATE text/css
     AddOutputFilterByType DEFLATE text/javascript
     AddOutputFilterByType DEFLATE image/svg+xml
     AddOutputFilterByType DEFLATE application/javascript
     AddOutputFilterByType DEFLATE application/xml
     AddOutputFilterByType DEFLATE application/xhtml+xml
     AddOutputFilterByType DEFLATE application/rss+xml
     AddOutputFilterByType DEFLATE application/atom_xml
     AddOutputFilterByType DEFLATE application/x-woff
     AddOutputFilterByType DEFLATE application/x-font-ttf
     AddOutputFilterByType DEFLATE application/x-font-woff
     AddOutputFilterByType DEFLATE application/javascript
     AddOutputFilterByType DEFLATE application/x-javascript
     AddOutputFilterByType DEFLATE application/x-shockwave-flash
    </IfModule>
     
    # ETag
    Header unset ETag
    FileETag None
    in reply to: Show featured images in search results page #805258

    if you like to have both a counter number and than a featured image above the title same line
    big advantage – if there is no featured image – counter is still there – and only image is missing

    find:

    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
    

    replace with:

    
    $searchimage = get_the_post_thumbnail( $the_id, 'large' );
    echo "<span class='search-result-image'>{$searchimage}</span>";
    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";

    you see the line stays in the code but two lines are added before

    then you only have to style the featured image size f.e.:

    .search-result-image img {
        width: 300px;
    }
    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Show featured images in search results page #805253

    well look to find the loop-search.php in enfold/includes
    make a copy of it and upload an edited version to your child-theme subfolder includes. (commonly it is: enfold-child/includes )

    how to edit :
    look to line (version Enfold 4.0.7) : 31

    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
    

    and replace it with:

    $searchthumb = get_the_post_thumbnail( $the_id, 'large' );
    echo "<span class='search-result-counter {$counterclass}'>{$searchthumb}</span>";

    and add this to quick css:

    .search-result-counter {
        padding: 0;
    }
    
    .search-result-counter img {
    	width: 100%;
    	height: 100%;
    	border-radius: 100px;
    }
    • This reply was modified 7 years, 8 months ago by Guenni007.

    in your source code there are some elements which are definitly not from enfold
    the container <div id="fb-root"></div> is by default one of the last containers before body tag is closing ?

    click to enlarge:

    but please proof it on pc too. On my end here firefox / OSX Sierra all tested links goes to home too!

    have a look if there is maybe a redirect in your htaccess file – or do you have a redirect plugin installed ?

    in reply to: Add Extra Info to Header – Left and Right #805048

    well on Enfold Options – Header – Extra Elements – you can activate both areas by choosing f.e. phonenumber/extra-info to the left and secondary menu to the right.

    Then you can insert in phonenumber text you like to have
    on menu – don’t forget to mark it as secondary menu – you can add dead links – and with a bit css you can hide pointer-events and hover-effects

    in reply to: Paragraph Font varies on different pages #803960

    Hm – if it is solved things are suddenly not so urgent to comment!

    in reply to: Hiding bread crumb title , can't hide comma #803472

    ok – double posting of dvus4l https://kriesi.at/support/topic/hiding-comma-in-title-with-hidden-category/
    and mike – i’m first with solution ;) :lol

    in reply to: Hiding comma in title with hidden category #803357

    ok – i think it is in loop-index.php (enfold/includes)

    on line 168 change it to:
    $cats .= get_the_term_list($the_id, $taxonomy, '', ' ','').' ';

    do a copy to child-theme/includes

    in reply to: Hiding comma in title with hidden category #803355

    i think it has to do with this line found on different shortcodes (postslider.php, loop-index.php etc):

    $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';

    but i can not recreate your output on my demo shop. Which settings i have to make to show under the content the meta infos?

    in reply to: Why does Enfold ignore my advanced stying for H1? #803151

    this: http://mmsmail.com/services/printing-services/large-format-printing/

    edit : oh sorry that little small one

    i can see this:

    #top #wrap_all .main_color h1 {
        color: #666;
        font-family: Alice,"Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-transform: none;
    }

    and this is not what you want?
    What is the thing you like to have? color, font-size, font-family, font-weight, letterspacing etc. ?

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Hiding comma in title with hidden category #803127

    hm looks as if it comes from the postslider.php.
    im no pro – maybe a mod could help you here – (but isn’t it necessary to have a small separator here?)

    edit: no it seems to be something with woocommerce plugin and addon.
    i try to install a demo shop and have a look later

    BTW: what kind of alb is it ( content slider ?) and what blogstyle you use

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Why does Enfold ignore my advanced stying for H1? #803105

    can you please offer a link to a page with h1 – the bold heading in the image is a pixel based image ! – no font

    in reply to: Paragraph Font varies on different pages #803099

    well i am not shure – if you are basing on a demo setup – if the settings of advanced styling are transfered to the other languages.
    All other languages got the same font. Only your initial installed got the other one.
    So have a look on your english version if there are entries in advanced layout settings.

    If so you can export them and by changing the language import this english settings to the other language (you have to do it for each lang.

    in reply to: Unterschiedliche breiten der Sidebar #802801

    get familiar with using developer tools – they give you the source code of your pages
    the id of that page above is in your case: page-id-7111 so:

    .page-id-7111 .container .av-content-small.units {
        width: 70%;
    }
    in reply to: Why does Enfold ignore my advanced stying for H1? #802796

    what do you like to obtain?
    Or what did you set and was ignored?

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Hiding comma in title with hidden category #802795

    much easier to help with a real link. Impossible to help with only a screenshot

    in reply to: Header & Footer stretched, content boxed #802459

    is it a secret link ? or can we take part of the solution?

    and that little plugin comes with a settings option to choose the range of date and time which is possible

Viewing 30 posts - 9,271 through 9,300 (of 11,187 total)