Forum Replies Created
-
AuthorPosts
-
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.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; }
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; }
June 9, 2017 at 11:01 am in reply to: Bug in Enfold Contact Form: Color Scheme "Light Transparent" #806002hm – i can not confirm this – on your site i can select with Chrome/OSX (also with firefox, safari, opera)
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 :­
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.
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; }
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
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)
so shortcodes will also work without snippet if i make a folder in this way? :
enfold-child/config-templatebuilder/avia-shortcodesJune 8, 2017 at 10:52 am in reply to: Choosing Sidebar left on Logo and Main Menu – Advanced Slider not Centered #805524ok 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.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.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
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 missingfind:
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.
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) : 31echo "<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.
June 7, 2017 at 12:48 pm in reply to: All pages are redirected to home page for the mobile device #805060June 7, 2017 at 12:40 pm in reply to: All pages are redirected to home page for the mobile device #805059but 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 ?
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-effectsHm – if it is solved things are suddenly not so urgent to comment!
ok – double posting of dvus4l https://kriesi.at/support/topic/hiding-comma-in-title-with-hidden-category/
and mike – i’m first with solution ;) :lolok – 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
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?
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.
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 laterBTW: what kind of alb is it ( content slider ?) and what blogstyle you use
-
This reply was modified 7 years, 8 months ago by
Guenni007.
can you please offer a link to a page with h1 – the bold heading in the image is a pixel based image ! – no font
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.
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%; }
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.
much easier to help with a real link. Impossible to help with only a screenshot
is it a secret link ? or can we take part of the solution?
May 31, 2017 at 8:51 am in reply to: contact form – how to restrict past dates in datepicker #801882and that little plugin comes with a settings option to choose the range of date and time which is possible
-
This reply was modified 7 years, 8 months ago by
-
AuthorPosts