Forum Replies Created

Viewing 30 posts - 8,851 through 8,880 (of 11,481 total)
  • Author
    Posts
  • in reply to: When will it be – the update #894681

    it is the often discussed bug for video-background on color-section since enfold 4.2
    the starting of the video is a bit buggy til the fix works
    The fix i used was your advice:

    .mejs-layer {
        z-index: 1;
        width: 100% !important;
    }
    
    div .avia-video .mejs-container, div .avia-video .mejs-container video {
        height: 100%!important;
        width: 100% !important;
        position: absolute;
    }

    make the browserwindow wide but not so high ( panorama format )

    • This reply was modified 7 years, 5 months ago by Guenni007.
    in reply to: Multisite Migration Tool ? #893521

    Well i decided to get updraftplus premium unlimeted licences!
    it is not so expensive – and has good renewal bargains. It has all features i like including sheduled backups on remote places (ftp or clouds )
    Can be closed

    in reply to: Multisite Migration Tool ? #893492

    btw : 500 Internal Server Error

    Nevetheless – thanks Basilis – but i’m looking for a tool with fair costs.
    I don’t like those things with yearly costs

    sorry Ismael – for late reply.
    i was afraid of that.

    Nevertheless Thread can be closed. I managed for that specific webpage now a Multisite Solution. And that makes some settings obsolete.
    f.e. the request to have different main menus on some pages etc.

    Thanks as always

    in reply to: Language files not working #892638

    yes the lang files of wordpress itself is fi (WP Locale is the focus for ) too : https://make.wordpress.org/polyglots/teams/?locale=fi

    in reply to: Kriesi.at certificate is … #892635

    hm – i did not see that warning –
    but i can not realy believe that a web page like this one – I assume with a good sales amount is using a lets encrypt cert.
    Ok – for some private websites this might be an acceptable solution. But for the reputation of kriesi and for enfold an ev cert (Comodo EV SSL for 140Euro/year or comodo postiveSSL EV for 68Euro/year) should be not too expensive i guess. These got green adress bars and are nearly a 100% browser and mobile browser compatible, and your siteconstruction even on your demosites there is not even a wildcard cert needed. All is under kriesi.at/

    in reply to: Remove Kriesi graphic link in Blog side bar #891816

    Goto Dashboard – Enfold (child) – Social Profiles … delete the entries of kriesi

    in reply to: Adding a shadow or something #891815

    but with your very dark background it will be better to have a somewhat glooming with light “behind” it:

    #wrap_all {
        box-shadow: 0 0 50px #fff;
    }

    ok a black shadow will look good too!

    #wrap_all {
        box-shadow: 0 0 100px #000;
    }
    in reply to: Enfold – Enable previous and next post navigation #891812

    do you have more than one post ?
    do you use on top a slider ( full-width ) alb element?
    on that last case – it is not there because slider navigation should not be disturbed by post navigation prev/next
    – but you can reactivate it by this snippet in your functions.php of your child-theme:

    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings){
      $settings['is_fullwidth'] = false;
      return $settings;
    }
    in reply to: Divide page into more than 1/5 ths #891810

    you can mimic it by having a 1/5 th grid layout and put in each a 1/5 comlumn thats 25 “columns” only but you will see that this won’t look good
    https://webers-testseite.de/test-2/

    • This reply was modified 7 years, 6 months ago by Guenni007.
    in reply to: how tho switch header_right to header_left for specific pages #891539

    yes – but i only want to change the header_position from header_left to header_right.

    so i put in:

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

    this works – but i have to make a lot of style adjustments ( f.e. .avia-post-prev and .avia-post-next – the position) etc. pp
    how can i get it that on change the rest will work as if i set it up in enfold options dialog.

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

    hm don’t know where my fault was. it now works as expected. % – )

    maybe there was a fault by transfering the php-file name manually ;)

    can be closed

    in reply to: Video background embed #890955

    by the way – is it a video with audio ? i do not here on my solution any audio ???

    in reply to: Video background embed #890951

    for responsive case on very small screens you have to find yourself a solution – maybe not to display the video
    or to shrink content of the color section beneath etc.

    in my case to have full-width video:

    @media only screen and (max-width: 767px){
    .responsive #top.page-id-30380 #wrap_all .container_wrap_first .container{
        max-width: 100% !important;
        width: 100% !important;
        padding: 0
    }
    }

    but there must be a solution than for color-section content – as you can see on my test page above

    in reply to: Video background embed #890942

    on advanced layout builder first place a code element on top
    after that a color-section with your headings or something else (other alb elements)
    to get not in conflict with the video control elements do not choose the 100% height !
    but another height will do the job. ( i can not see to avoid that control elements will come to front on video click or hovering)

    in the code block – do not mark any of the checkboxes ( it is your code with right exclamation marks):

    <script src="https://fast.wistia.com/embed/medias/ucj8qub19k.jsonp" async></script>
    <script src="https://fast.wistia.com/assets/external/E-v1.js" async></script>
    <div class="wistia_responsive_padding" style="padding:56.25% 0 0 0;position:relative;">
    	<div class="wistia_responsive_wrapper" style="height:100%;left:0;position:absolute;top:0;width:100%;">
    		<div class="wistia_embed wistia_async_ucj8qub19k videoFoam=true" style="height:100%;width:100%"> 
    		</div>
    	</div>
    </div>
    the code to have now the full-width option is (in this case to be more specific i do infront the page-id):
    .page-id-30380 .container_wrap_first .container {
        max-width: 100%;
        padding: 0
    }
    .page-id-30380 .container_wrap_first .content {
        padding: 0;
    }
    
    .page-id-30380 #av_section_1 {
        position: absolute;
        top: 0;
        background-color: transparent !important;
    }

    see result here: https://webers-testseite.de/wistia/

    in reply to: is there a way to hide some menu-items onclick a button #890932

    Das ist ja nett.
    ich sende dir mal die Login Daten via deinem SSL Kontaktformular zu.

    Du siehst dann ja – die beiden Buttons oben, die zu jeweils den Hauptseiten der Sparte führen.
    Je nachdem sollen die Menupunkte Naturleben bzw. theater alle ausgeblendet werden.

    Danke zunächst.

    in reply to: is there a way to hide some menu-items onclick a button #890853

    But i see now – it does not stay on that status if i click on a theaterpage
    so i have to read about your $(event.target)

    in reply to: is there a way to hide some menu-items onclick a button #890846

    Please do not rate my knowledge in javascript too high. – Can you explain it a bit more please!

    You can see it here on a prebuild page: Link
    see both buttons above the logo – but if i want to open a page (left button landing page – right button Theater Page) i do not really now how to optain it.

    hm ? i tried it but only :

    add_filter( 'avf_register_custom_backend_styles', 'my_include', 10, 1 );
    function my_include(){
    	$path = get_stylesheet_directory().'/includes/register-backend-advanced-styles.php';
        	return $path;
    }

    works than for me – in the manner that it does not append it totaly replaces parent file – this will be ok for me. !
    So i made a copy of the original file and uploaded an edited file to child-theme includes folder

    in reply to: is there a way to hide some menu-items onclick a button #890779

    how does a setup for active state or current state work?
    When click on a link the new page is loaded – how than can be a new class come to the active or current state.
    This seem to be similar to my request.

    so i do create a folder on child-theme ( maybe : includes) –
    i make a file f.e: register-custom-advanced-styles.php and upload it to that child-theme/includes folder

    content is f.e.:

    <?php
    $advanced['blockquote'] = array(
    	"id"			=> "blockquote", //needs to match array key
    	"name"			=> "<blockquote>",
    	"group" 		=> __("HTML Tags",'avia_framework'),
    	"description"	=> __("Change the styling for all <blockquote> tags",'avia_framework'),
    	"selector"		=> array("#top [sections] blockquote"=> ""),
    	"sections"		=> true,
    	"hover"			=> false,
    	"edit"			=> array(	'font_family' 		=> array('type' => 'font', 'name'=> __("Font Family",'avia_framework'), 'options' => $google_fonts),
    								'font_size' 		=> array('type' => 'size', 'range' => '8-80', 'name'=> __("Font Size",'avia_framework')),
    								'line_height' 		=> array('type' => 'size', 'range' => '0.7-2', 'increment' => 0.1, 'unit' => 'em',  'name'=> __("Line Height",'avia_framework')),
    								'font_weight' 		=> array('type' => 'select', 'name'=> __("Font Weight",'avia_framework'), 'options' => $weight),
    								'text_transform' 	=> array('type' => 'select', 'name'=> __("Text Transform",'avia_framework'), 'options' => $transform ),
    								'color' 			=> array('type' => 'colorpicker', 'name'=> __("Font Color",'avia_framework')),							
    								)
    );

    so what do i do now ?

    in reply to: is there a way to hide some menu-items onclick a button #890685

    yes i know the function – but
    there are Two Buttons

    • the one should open parent-page of all Menu-items A – and should hide menu-items B
    • the other one opens parent-page of all Menu-items B – and should hide menu-items A

    I want to start by showing first Menu-items A and hide B.
    So it is hard to setup the starting point – because on page load of parent-page B it will reset it again.

    in reply to: WPML flags next to social media icons in the footer socket #890627

    you don’t have to name that extra menu “socket” you can take what you want.
    but you have to synchronize the name with the wpml menu you set in menu-language-switcher

    in reply to: WPML flags next to social media icons in the footer socket #890626

    hm ? i tested that procedure: (click on the images to enlarge)
    1)

    2)

    3)

    in reply to: Code I want to remove in Source Code #890625

    thanks Rikard – but Question from 29.11. – i do expect a response of niallbyrne.

    in reply to: Google Webmasters – Search Appearance – HENTRY errors #890624

    no this was meant for niallbyrne in a different thread – it seems that on getting a solution – no response was set. – and i’m a bit disappointed

    in reply to: autoplay video background #890623

    did you try to set the autoplay option?

    because i only see: //player.vimeo.com/video/247134175?portrait=0&byline=0&title=0&badge=0&loop=1&autopause=0&api=1&rel=0&player_id=player_14_302329182_1434181973&color=cf1b15

    autoplay=1

    try to position it in front like:

    //player.vimeo.com/video/247134175?autoplay=1&loop=1&autopause=0&rel=0&portrait=0&byline=0&title=0&badge=0&api=1&player_id=player_14_302329182_1434181973&color=cf1b15

    yes what i thought if we can redefine the path to it

    in register-admin-options.php there is that include('register-backend-advanced-styles.php');

    yes i can change it here by manual typing – but than it will be lost on updating the parent theme.
    but maybe there is a way to change the edit array of a given setting via hook

    i changed to have the option to set for blockquote the font-family (which is missing on default) f.e. :

    $advanced['blockquote'] = array(
    	"id"			=> "blockquote", //needs to match array key
    	"name"			=> "<blockquote>",
    	"group" 		=> __("HTML Tags",'avia_framework'),
    	"description"	=> __("Change the styling for all <blockquote> tags",'avia_framework'),
    	"selector"		=> array("#top [sections] blockquote"=> ""),
    	"sections"		=> true,
    	"hover"			=> false,
    	"edit"			=> array(	
    		'font_family' 		=> array('type' => 'font', 'name'=> __("Font Family",'avia_framework'), 'options' => $google_fonts),
    		'font_size' 		=> array('type' => 'size', 'range' => '8-80', 'name'=> __("Font Size",'avia_framework')),
    		'line_height' 		=> array('type' => 'size', 'range' => '0.7-2', 'increment' => 0.1, 'unit' => 'em',  'name'=> __("Line Height",'avia_framework')),
    		'font_weight' 		=> array('type' => 'select', 'name'=> __("Font Weight",'avia_framework'), 'options' => $weight),
    		'text_transform' 	=> array('type' => 'select', 'name'=> __("Text Transform",'avia_framework'), 'options' => $transform ),
    		'color' 			=> array('type' => 'colorpicker', 'name'=> __("Font Color",'avia_framework')),							
    								)
    );
    in reply to: Google Webmasters – Search Appearance – HENTRY errors #890202

    and by the way – sometimes it will be nice to have a response to your requests if the answers work and if the thread can be closed:
    https://kriesi.at/support/topic/code-i-want-to-remove-in-source-code/

    And you are shure that you have clicked the second tab above pages window “show all” – (sorry the screenshot is of a german translation wp) ?

Viewing 30 posts - 8,851 through 8,880 (of 11,481 total)