Forum Replies Created
-
AuthorPosts
-
By the way: Auch Texte sind teilweise copyright geschützt ! Lieber umformulieren – gibt weniger Ärger mit den Anwälten
Texts are copyright protected too! Better reformulate – gives less trouble with the lawyers :lol
Try these entries in your wp-config.php :
the normal entries on WordPress are:
define('DB_COLLATE', ''); define('DB_CHARSET', 'utf8');
try first :
define('DB_COLLATE', ''); define('DB_CHARSET', '');
and see what happens
second: you can try to insert in your htaccess file:
AddDefaultCharset UTF-8
i guess you are copying your content from f.e. word. or from pdf’s
very often there are the ü in this way you got.
you can avoid that on copying it to text input not to preview mode of editor field.Dies ist bei mir der häufigste Fall !
Seltener sieht man sowas anstatt der Umlaute:ü
statt ü
dann muss das nachfolgende machen:schaut mal hier : http://www.limawellness.de/wp-content/uploads/2017/07/lima-folder-web.pdf
Wenn man da über die Umlaute geht sieht man immer dass es zwei Zeichen sind beim Aktivieren.Typisch pdf
Or it is if you are comming from an old database version to this here:
look my trials on that here: https://kriesi.at/support/topic/german-umlauts-and-icons-arent-shown-correctly/#post-853104
-
This reply was modified 7 years ago by
Guenni007.
by the way if you got only an image alb solo and have lightbox link on that:
function change_lightbox_size() { return "full"; } add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);
well – you can influence the image is taken on galleries or masonries by adding some code to functions.php of your child-theme:
function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $link = wp_get_attachment_image_src($attachment->ID, "full"); return $link; } add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4); function avia_change_masonry_thumbnail_link($size){ return "full"; } add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_masonry_thumbnail_link', 10, 1);
-
This reply was modified 7 years ago by
Guenni007.
can be closed !
a small note in advance : are you shure you are loading a 7360px wide image?
if so – it is completely unnecessary to load such sizes. Even if gallery does load full size images. On default i think Enfold would load the “large” one.
Your dimensions will be ok for 2.6m x 1.7m Screensok – my test page goes to normal mode again ! its a week ago
it is working !
this is an elegant method – indeed – but i’m allways looking for child-theme solutions.by the way allthough it is on display:none it is the first logo so this might work too:
menu2.insertAfter(logo_container.find('.logo:first'));
maybe this will be something to have in avia.js on default, that only the first logo gets that.
February 17, 2018 at 9:22 am in reply to: Still want to use anchor link on mobile when color section is hidden #913585so now – next day : this will determine if hr has any id , and if so the next parents (.content) padding is set to 0px.
and set the class attributes as we want it.
So you do not have to look on which place of the DOM ( if its after section 1, 2 etc.) you used the hr with idThe function name is changed because this is more meaningfull – and we don’t need another class (nopadding) because we can set the css directly here.
function add_class_to_parent_of_hr_with_id(){ ?> <script> (function($){ $('div.hr[id]').closest('.content').css( 'padding' , '0px' ); })(jQuery); </script> <?php } add_action('wp_footer', 'add_class_to_parent_of_hr_with_id');
! we could give to those hr’s with id’s the height 0 in this code – but sometimes you can use the hight to correct scroll down position.
i use this hr like you like to use for anchors to scroll to, and because we can use this with sidebars too it is nice to have-
This reply was modified 7 years ago by
Guenni007.
February 16, 2018 at 6:57 pm in reply to: Still want to use anchor link on mobile when color section is hidden #913343if it is not to often you can do this in functions.php of your child-theme
function add_class_to_hr_id(){ ?> <script> (function($){ $('#custom-id').closest('.content').addClass('nopadding'); $('.nopadding').css( 'padding' , '0px' ); })(jQuery); </script> <?php } add_action('wp_footer', 'add_class_to_hr_id');
i want to do the code to proove first if hr has any id – and if so get the id and and – but i’m in a hurry now
you must replace the custom-id with the id you have setted.i hope in css4 will be a parent selektor ! that would make such things definitly better
February 16, 2018 at 2:57 pm in reply to: Adding button to mute/unmute audio on fullscreen background video #913283But please report about solution.
so if i want to have all the advantages of having class logo to second and third logo – i have to live with that – and set the additional burgers to display none
I can live with that:
.main_menu:not(:first-of-type) { display: none !important; }
-
This reply was modified 7 years ago by
Guenni007.
sorry ismael – i don’t adress this to you but to the code of enfold.
i guess it will be much easier to change the mark on meta-box ( to have hidden title_bar ) than trying to get rid of that transparency check.
What is the worst case could happen : A user set the transparency option and has perhaps on Enfold global options : show title bar.
When he looks to his page – he will check the mismatch – goes to editor again an set the whole thing to hidden_title bar.
So maybe it would be a better idea to not have the transparency check at all._____________
But on that topic here i remembered the change position code ! i i tried to position the header completely to the bottom:
function change_position(){ ?> <script> (function($){ $('#main').each(function () { $(this).insertBefore($(this).prev('#header')); }); $('#header_main').each(function () { $(this).insertBefore($(this).prev('#header_meta')); }); })(jQuery); </script> <?php } add_action('wp_footer', 'change_position');
https://webers-testseite.de/weber/
nice and even the hamburger and “drop-down” menu will go on working :lol
on ipad and an old iphone4s it works –
only the chrome browser has a little time shift on loading the page.-
This reply was modified 7 years ago by
Guenni007.
Where is your logo ? i thought – because there wasn’t from the beginning one – that you like to have none at all.
Or do you plan now to set one. Then we would have been able to save the whole, because a separate logo would have displaced the Enfold logo.February 16, 2018 at 12:11 am in reply to: Still want to use anchor link on mobile when color section is hidden #913028i created a customised hr.php : it shows the field for custom-id only when a whitespace is used.
you can read all here – on top how to make it with download optionhttps://webers-testseite.de/edited-enfold-alb-elements/#custom-id
well it is on basis no magic –
that is the skewed section:
#color-section-skew { -webkit-clip-path: polygon(0 10vw,100% 0,100% calc(100% - 10vw),0 100%); clip-path: polygon(0 10vw,100% 0,100% calc(100% - 10vw),0 100%); margin-bottom: -10vw; }
and this is how the css is build:
click to enlarge
the only thing to know is that on webpages down means + values ; up means – values
first point x is 0 and y is 10vw down
second point x is 100% and y is 0
etc.February 15, 2018 at 10:12 pm in reply to: How to change the font color of a contact form element? #912965Thanks for info
i know that as well – but all my customers i tell that i do not allways update immediately- because there might be bugs in newest updates. Only the most important security relevant updates i do as fast as possible.
i have even the wordpress automatic updates disabled (via wp-config) – that was ok for me last time because 4.9.3 WP has some bugs.
The most important thing is to have good database backups and f.e. one Backup per month of the WP installation.
( a shaduled Backup Software on this is nice to have.)
Your customers may be impatient if they see an update ad, but if the site is offline for more than two days they will be angry.see here a solution – but values must be adjusted – thats why i like to see your page:
https://kriesi.at/support/topic/results-from-search-box-and-search-results-page-are-different/
i disabled that ajax search – i never liked it
February 15, 2018 at 8:38 pm in reply to: e-mail address is clipped on page on Iphone portrait #912907try this – maybe it is enough place:
.page-id-1257 .el_after_av_one_half { margin-left: 4%; } .page-id-1257 .avia-icon-list .iconlist_icon { margin-right: 20px; }
that is why i posted the display : none on the logo img
.logo img, .responsive .logo img { display:none !important; }
and please remove this
span.logo { display:none; }
because that is the container. If you set the container to display:none it will cause some height problems of the header
February 15, 2018 at 6:28 pm in reply to: Results from Search Box and Search Results Page are different #912854yes – thanks – thats it.
yes – but i can not see one
February 15, 2018 at 5:30 pm in reply to: e-mail address is clipped on page on Iphone portrait #912837yes now i see. but it is in footer too.
so i guess if you don’t like the word-wrap and don’t like to have 2/5 3/5 columns layout (instead of 1/2 1/2)
you only can take this to a 3-linerE-Mail: (Email address hidden if logged out)
but please do the display : none to the img
if you do it to logo – container you will have troubles on preserving the height for hamburger menu.make your browser-window very small ! The logo is still there
header_meta – see here:
February 15, 2018 at 5:11 pm in reply to: How to change the font color of a contact form element? #912825and something important to Firefox
all placeholders have transparency – to avoid this:::-moz-placeholder { opacity: 1 !important; }
February 15, 2018 at 5:07 pm in reply to: How to change the font color of a contact form element? #912822you must replace pink than with #fff :lol
to change it globaly: it is on Enfold Options Dialog: Main Content secondary font color
the rest will work with attribute selektor
#top .main_color input[type="text"], #top .main_color input[type="input"], #top .main_color input[type="password"], #top .main_color input[type="email"], #top .main_color input[type="number"], #top .main_color input[type="url"], #top .main_color input[type="tel"], #top .main_color input[type="search"]
depends on the field you like to change
-
This reply was modified 7 years ago by
-
AuthorPosts