Forum Replies Created

Viewing 30 posts - 8,311 through 8,340 (of 11,187 total)
  • Author
    Posts
  • in reply to: german language not well displayed #914497

    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

    in reply to: german language not well displayed #914490

    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

    in reply to: german language not well displayed #914486

    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.
    in reply to: PROBLEMS WITH ENFOLD LIGHTBOX #914479

    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);

    see here: https://webers-testseite.de/gallery-and-masonry/

    in reply to: PROBLEMS WITH ENFOLD LIGHTBOX #914455

    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.
    in reply to: Position Title Bar below first element #914222

    can be closed !

    in reply to: PROBLEMS WITH ENFOLD LIGHTBOX #914163

    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 Screens

    in reply to: Vollbild-Slider als Hintergrundbild #913702

    ok – my test page goes to normal mode again ! its a week ago

    in reply to: social media from header_meta to main_nav #913698

    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.

    so 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 id

    The 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.

    if 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

    But please report about solution.

    in reply to: social media from header_meta to main_nav #913271

    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.
    in reply to: Position Title Bar below first element #913248

    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.
    in reply to: Removign Enfold logo #913166

    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.

    i 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 option

    https://webers-testseite.de/edited-enfold-alb-elements/#custom-id

    in reply to: Diagonal Background Image #912999

    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.

    in reply to: How to change the font color of a contact form element? #912965

    😇 😂

    in reply to: hard to write code on enfold text-block element #912962

    Thanks for info

    in reply to: neverending layoutslider story #912961

    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.

    in reply to: PNG Logo over Fullwidth Easy Slider #912951

    see here a solution – but values must be adjusted – thats why i like to see your page:

    https://kriesi.at/support/topic/displace-logo/#post-912381

    in reply to: Instant search results are wrong #912938
    in reply to: e-mail address is clipped on page on Iphone portrait #912907

    try 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;
    }
    in reply to: Removign Enfold logo #912903

    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

    yes – thanks – thats it.

    in reply to: Removign Enfold logo #912848

    yes – but i can not see one

    in reply to: e-mail address is clipped on page on Iphone portrait #912837

    yes 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-liner

    
    E-Mail:
     (Email address hidden if logged out) 
    in reply to: Removign Enfold logo #912832

    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:

    in reply to: How to change the font color of a contact form element? #912825

    and something important to Firefox
    all placeholders have transparency – to avoid this:

    ::-moz-placeholder {
      opacity: 1 !important;
    }
    in reply to: How to change the font color of a contact form element? #912822

    you 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

Viewing 30 posts - 8,311 through 8,340 (of 11,187 total)