Forum Replies Created

Viewing 30 posts - 8,401 through 8,430 (of 11,489 total)
  • Author
    Posts
  • oh wow – i got a black out – that could not work – sorry
    i first have to go and drink some coffee

    your intention is to show the image slider on ipad air even on landscape mode – and not the video.
    now it shows the video on landscape !

    can you try this first – if it does not work the way you like:

    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (orientation: landscape) 
      and (-webkit-min-device-pixel-ratio: 2) {
      	 .page-id-40 #full_slider_1.wp_is_mobile {display: none};
      	 .page-id-40 #full_slider_2.av-desktop-hide {display: block};
    }


    to prove it you have to empty the safari cache

    or give this a try – but i don’t know how enfold manages it :
    there are two classes set
    .av-desktop-hide to your slider 2
    .wp_is_mobile to your slider 1

    so the condition to find for your ipad is the one thing – but the other will be to be more selective than enfold setting

    add_action('wp_footer', 'settings_for_ipad');
    function settings_for_ipad(){
    ?>
    <script type="text/javascript">
    (function($) {
    	$(document).ready(function($){
    		var deviceAgent = navigator.userAgent.toLowerCase();
    		if (deviceAgent.match(/(iphone|ipod|ipad)/)) {
    		  $('.page-id-40 #full_slider_1.wp_is_mobile').css( 'display' , 'none' );
    		  $('.page-id-40 #full_slider_2.av-desktop-hide').css( 'display' , 'block' );
    		}
    	});
    })(jQuery);
    </script>
    <?php
    }
    • This reply was modified 7 years, 3 months ago by Guenni007.

    what does your ipad show than now : both ?

    or you can try the media query from link above: Link

    Too embarrassing

    • This reply was modified 7 years, 3 months ago by Guenni007.

    yes – but you can set a custom class or take the page id into selector.

    Too embarrassing
    : sorry

    i would in this case not take the media-query via screenwidth only.
    if you like to handle this only via css than there will be some queries for devices: Link

    but i think via functions.php and jquery it would be more selective.

    for example this to functions.php of your child-theme:
    Can you have a look if it is influenced your ipad too?

    Too embarrassing : sorry

    • This reply was modified 7 years, 3 months ago by Guenni007.
    in reply to: Media images not importing with Posts #933883

    All images you can click to enlarge!

    yes and that is my favorit “cdn”
    the free account is still enough for 90% of all pages i managed.
    The embedding of cloudinary to WordPress is very good styled.
    since the cloudinary plugin is installed and registered (via api key) you can upload image directly from media library:

    There will be a mark that it is uploaded to cloudinary – and from that point you can insert it like all other media you have .

    there is a cloudinary media library to show you details about uploads :

    and on click to one image you can influence some settings too:

    the only thing that does not work is on ALB Textblock element to upload via the cloudinary button. Inserting via add media always did the trick:

    By the way : I receive no salary or commissions from cloudinary – but it is a very good fair free account !
    the Bandwidth is per month ! 20GB :lol – if i have that bandwidth – i will have the money to pay for it

    ist aber auch nicht nötig – siehe meinen letzten Beitrag !
    nimm diesen Code in die functions.php
    aber wie gesagt alle Checkmarks weglassen im Code-Block element

    ____________________

    Aber damit du custom css setzen kannst gibt es mittlerweile zwei möglichkeiten
    früher ging es nur via code in functions.php of child-theme:
    add_theme_support('avia_template_builder_custom_css');
    oder mittlerweile wenn du die aktuellen Versionen installiert hast, dann über Enfold Optionen / Layout Builder dort häckchen bei : Show element options for developers

    by the way – dear Mods : this will be a nice idea to have on codeblock element no padding-top / padding-bottom
    those who wants to show a code-block as code snippet can manage that alone.
    for those who likes to have that for placing a code.

    BTW : if you always want to set codeblock elements to padding 0 and has no min-height of 1px:

    let all checkmarks unchecked and

    function set_height_to_zero(){
    ?>
    <script>
    (function($){
       $('.avia_codeblock_section').closest('.content').css({"padding": "0px", "min-height": "0px"  });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'set_height_to_zero');

    ok there is a padding-top/padding-bottom

    du hattes Recht, ich dachte, dass es unten nicht so stören würde.

    setze deinen Code Block so an – gib ihm die custom class: zero-height (oder irgendwas anderes ) lass alle checkmarks weg – dann wird ein surrounding container geschaffen, dem wir über die functions.php des child-themes:

    function set_height_to_zero(){
    ?>
    <script>
    (function($){
     $('div.zero-height').closest('.content').css( 'padding' , '0px' );
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'set_height_to_zero'); 

    Was macht der code oberhalb: Er sucht nach dem Element mit der Klasse zero-height – wenn er das Element gefunden hat geht er soweit höher bis er das nächste Elternelement findet, mit der Klasse content und ordnet ihm das padding 0 zu.
    Da es quasi inline definiert ist, wird es auch ohne important wirksam sein – siehe die Beispiel Seite:
    die 1px distanz kommt von dem footer border-top und dem min-height siehe nächster Beitrag

    Warum der jQuery Code: es ist via css leider noch nicht Möglich Eltern Element zu selektieren ! Leider – würde manches einfacher machen.
    Selbst in CSS4 to come wird es einen parent-selector noch nicht geben – schade Link
    https://webers-testseite.de/a-post-with-a-popup/

    • This reply was modified 7 years, 2 months ago by Guenni007.

    Siehst Du in meiner Testseite ein Spalte unten?
    Das ist die Layoutseite des Beitrags den du siehst also mit dem kleinen Hilfebild darin drunter der Code Block

    so sieht es aus im Layout:

    Keinen Layerslider ALP nutzen sondern Code Block

    Der Codeblock kann unten sein – das macht nix für diese Popup Slider

    dort wo du die Layerslider machst, siehst du unten den shortcode.

    den kannst du auf die Seite mittels code block element setzen ( es reicht wenn du den ganz unten in deinem Layout platzierst)

    Klicken zum Vergrößern

    see here: https://webers-testseite.de/a-post-with-a-popup/

    • This reply was modified 7 years, 2 months ago by Guenni007.

    see here again https://kriesi.at/support/topic/problems-with-icons-and-buttons-after-enfold-update/
    Again those shortcodes messed up which are in subfolders now ! hr, buttons, icons (table, numbers, portfolio …)

    by the way :

    clean copy of the theme and overwrote the folder

    this could be a problem – because on the mentioned above.
    Sometimes developers had to change some names or hierachircal structures to take WordPress Updates into account.
    This could cause in the best case only some dead files.
    Don’t know why these subfolders are now on shortcodes but – there must be a good reason on it.
    If you will overwrite the folder via ftp the f.e. buttons.php will remain in shortcodes folder and the new subfolder buttons will come additionally to it.
    Don’t know if this could cause problems – but it might be.

    I rarely update live customer sites via WordPress update/dashboard. Only on my little testpages i do this way.
    On default i do it like you said.
    I have a child-theme allways.
    i rename the enfold-folder to enfold-old.
    upload the new enfold folder via ftp.
    Look if i have troubles. – if so i can rollback as you mentioned it by erasing enfold and rename the enfold-old to enfold.
    That is a vers secure way to be curious about new updates.
    All those “urgent-help-me” topics here on board could be solved by this.

    in reply to: Different header on different page #933691

    the most comfortable and the most flexible way might be to have two sites :lol
    if you like to have only one enfold installation you can reach that via multi-site installation – but this is more or less something for techy-guys.
    see here a customer of mine ( it would be possible to have on the one page a left navigation on the other a top one, different logos , different menus etc. pp) Espacially the backup of those pages is a bit more complicated than normal situtation. ( https://naturleben-rheinland.de )
    You will have on that case with one Enfold installation two pages with different Enfold Options to setup!

    So starting from a normal WordPress / Enfold installation there are different approaches to solve your problem.
    if you see this test-environment of mine : https://webers-testseite.de/ click on contact or impressum to see that you can have all kind of headers in one installation by this code if you only want some pages to be different:

    to functions.php of your child-theme

    add_filter('avf_header_setting_filter','av_change_header_style');
    function av_change_header_style($header)
    {
        if( is_page('332') ){
            $header['header_position'] = "header_right header_sidebar";
        }
        return $header; 
    }

    if you like to decide it for each page/post

    add_filter('avf_builder_boxes', 'register_meta_boxes', 10, 1);
    function register_meta_boxes($boxes){
        $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page' , 'post' , 'portfolio' ), 'context'=>'side', 'priority'=>'low');
    return $boxes;
    }
    add_filter('avf_builder_elements', 'register_meta_elements', 10, 1);
    function register_meta_elements($avf_builder_elements){
      $avf_builder_elements[] = array(
        "slug"  => "layout",
        "name"  => __("Menu and Logo Position", 'avia_framework'),
        "desc"  => __("You can choose various different logo and main menu positions here", 'avia_framework'),
        "id"  => "header_layout",
        "type"  => "select",
        "std"   => "",
        "subtype" => array( __('Logo left, Menu right', 'avia_framework')   =>'logo_left main_nav_header menu_right',
                  __('Logo right, Menu Left', 'avia_framework')   =>'logo_right main_nav_header menu_left',
                  __('Logo left, Menu below', 'avia_framework')   =>'logo_left bottom_nav_header menu_left',
                  __('Logo right, Menu below', 'avia_framework')  =>'logo_right bottom_nav_header menu_center',
                  __('Logo center, Menu below', 'avia_framework')   =>'logo_center bottom_nav_header menu_right',
                  __('Logo center, Menu above', 'avia_framework')   =>'logo_center bottom_nav_header top_nav_header menu_center',
                  ));
    
    return $avf_builder_elements;
    }

    ( comment: nav on top – logo under it – had to be corrected a bit with more css – the others will work immediately with given settings)

    you will than have on editor of page post on the left the choice to set up header style

    different colors are done via quick css
    differnet menu maybe Mikes Plugin will help you than

    how did you update Enfold from 4.2.4 to 4.2.6 ?
    that is only speculative now.
    i ask because all your troubles seems to concern to those alb elements which are now in a subfolder of config-templatebuilder/avia-shortcodes/

    so if you updated via ftp by overwriting files without erasing the whole enfold folder – there are than two f.e. buttons.php (icons, iconboxes, icon-lists etc.)
    maybe this generates a conflict.

    in reply to: Vertical alignment of Partner Logos #933677

    thanks vinay thats what i mentioned with:

    that will be the best start : try to give the images a unique Appearance.

    sorry for that bad english – its not what i try to say: try to give the pictures the same outer size.

    but sometimes the users not even have a good image processing program.
    It is allmost better to optimize the images for the intended use. ( on perfomance reasons too)

    in reply to: logotype in transparent header on multilanguage site #933673

    how do you have reached multilanguage site. What kind of plugin do you use?

    in reply to: Use two different menus on my website #933510

    if these are a lot of pages – quick css code might be extensive
    you can do it via functions.php of child theme too:

    function different_header_appearance() {
    	if( is_page( array( 42, 54, 6 ) ) ){
    	  echo '<style type="text/css">
    		.header_bg { background-color: #fff !important}
    		#avia-menu .avia-menu-text { color: #25604a}
    		.av_seperator_small_border .av-main-nav > li > a > .avia-menu-text { border-color: #25604a !important}
    	  </style>';
    	}
    }
    add_action('wp_head', 'different_header_appearance');

    how complex those if clauses can be see here:
    if ( is_singular( 'event' ) || is_search() || is_category() || is_page() && !is_page(1307) || is_singular( 'portfolio' ) ) etc. pp.

    in reply to: Vertical alignment of Partner Logos #933481

    that will be the best start : try to give the images a unique Appearance.

    on that page here i give to the partner-logo element a custom class
    first is sameheight – second is samewidth
    for the values it depends on the possibility to show the whole image – so on my example it makes no sense to give a width more than 20%
    otherwise the images can not show with proportional aspect ratio.

    https://webers-testseite.de/partner-logos/
    you have to adjust these values to your partner-logos and settings

    .samewidth .slide-entry-wrap {
        display: inline-flex;
    }
    
    .samewidth .slide-entry {
        margin-bottom: 0px !important;
    }
    
    .samewidth img {
        width: 220px !important;
        height: auto;
        position: relative;
        top: 50% !important;
        transform: translateY(-50%);
    }
    
    .sameheight img {
        height: 50px !important;
        width: auto !important;
    }

    on responsive case you see that same height option leeds to some special behavior – it depends on how you like to handle this case what we could do.

    in reply to: Demo Import – how to create such text-files #933126

    thanks – i will have a look to those plugins
    can be closed

    in reply to: Need the option of ID on buttons #932992

    By the way – i see that a fullwidth button gets the id of the title you give to the text of the button !
    See here: https://webers-testseite.de/8-columns/#click-me

    don’t know what happend if there were more than one click-me button

    • This reply was modified 7 years, 3 months ago by Guenni007.
    in reply to: Need the option of ID on buttons #932984

    maybe this is an alternative: i created a hr element with ID option ( in case of whitespace) – you can give the hr the height of 0 (Zero) and the function on the link will set the padding of the surrounding top parent-container to 0 (Zero)
    So you can use this even with sidebar as an anchor link:

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

    read the workaround on top ( for embedding child-theme shortcodes)

    in reply to: number of enfold licence #932936

    i think you can use those of the closed sites again.
    One site one license.

    By the way i believe too that a multi-site installation only needs one license – allthough there might be more than one site.

    in reply to: Use two different menus on my website #932882

    Well – first of all the landing pages and the other pages are transparent headers.
    So the contact page is the one to turn vice versa ?
    For transparent options on the other page you must have different rules again

    For the logo you had to have the invers logo and to know on what pages this logo and the css underneath you like to have
    for logo you can add this to functions.php of your child-theme:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if( is_page(21) ) {
        $logo = "http://www.domain.com/wp-content/uploads/logoforpage21.jpg"; 
            }
        elseif ( is_page( array( 42, 54, 6 ) ) ) {
        $logo = "http://www.domain.com/wp-content/uploads/logoforpage22.jpg"; 
            }
        return $logo;
    }

    you can do it with the whole bunch of conditional tags

    for css you had to specify this rules to the pages you want them to be changed:

    .header_bg {
        background-color: #fff !important;
    }
    #avia-menu .avia-menu-text {
        color: #25604a;
    }
    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
        border-color: #25604a !important;
    }

    or look on this nice page concerning Enfold: http://graphitivity.com/enfold/docs/logo/

    there is no ID on the topic: Overlap logo and page content – so search for it

    in reply to: Enfold theme add 2 x 1/5 columns with a 2/5 column #932841

    and if you don’t like that the grid-row element is a full-width layout element see here: https://kriesi.at/support/topic/grid-row-not-fullsize-how-to/
    there was a reason for doing it via an additional surrounding container. Making the grid-row smaller and positioning it in the center of the screen was easy – but it is hard to style than the background-color of the space left and right. (Mostly it will be no problem – a lot of users have white / white so no difference is seen. My workaround is for the other cases.

    you see the difference on the last grid-row. which is only styled via:
    https://webers-testseite.de/weber/aaaa/

    .page-id-569 #av-layout-grid-3 {
        max-width: 1310px;
        margin: 0 auto;
        padding: 0 25px;
    }

    if you got a main color different to white – you have the troubles than.

    on that link above you can see the nesting on the right grid as you like it.

    in reply to: Demo Import – how to create such text-files #932666

    are these two files only a combination of theme export from enfold dialog ( but here are widget-settings missing)
    and wordpress export of all data ( this is xml) ?

    in reply to: Demo Import – how to create such text-files #932663

    Yes this are the textfiles here : https://kriesi.at/documentation/enfold/downloads/
    Or is it the same ? i thought this only concerns to styling and quick css.

    Sorry that was misleading my link above
    the demo files included in the includes/admin/demo-files/
    php and xml files as pair for importing – how they were created ?

    in reply to: one Google map marker tooltip at a time #932459

    by the way Josues Code is brilliant – because if you click elsewhere on the map canvas the marker closes too.

    in reply to: Vertical align Title in IconBox #932457

    maybe – best will be to give a custom class to all these iconboxes (your account, services, operations, co-op …)
    i have set the selectivity for now via page id and color-section id

    .page-id-76 #after_section_1 .iconbox {
        display: inline-flex;
    }
    
    .page-id-76 #after_section_1 .iconbox .entry-content-header {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    on smaller screens set back to display: block or do insert to the headings some soft-hyphens with &shy and ;
    sorry board soft will immediatly change the entitie code even if placed in code so &shy with semicolon behind

Viewing 30 posts - 8,401 through 8,430 (of 11,489 total)