Forum Replies Created

Viewing 30 posts - 4,141 through 4,170 (of 11,918 total)
  • Author
    Posts
  • in reply to: Footer Template not showing after update to 4.8.6.3 #1322760

    There are a lot of changes in the footer – ( curtain effect etc. ) – so if you got f.e. a child-theme footer.php this has to be updated too – to the new version.
    If so – you had to know – why you got a child-theme footer.php that you can transfer your wanted changings to the new footer.php

    in reply to: How delete some Arrows in Submenu #1322684
    .avia_mega_div > ul.sub-menu > li > ul.sub-menu > li > a > span.avia-bullet,
    .avia_mega_div > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu > li > a > span.avia-bullet { display: none }
    in reply to: Change Symbol in Submenu #1322682

    first : if you have no settings on a lot of shortcode settings – you can get rid of it:

    Zur Agentur reinsicht [av_font_icon icon='ue841' font='entypo-fontello' size='19px' position='right'][/av_font_icon]
    

    try that shortcode
    PS : you know how to find those numbers ? ue841 etc.

    • This reply was modified 4 years, 3 months ago by Guenni007.
    in reply to: how to make a table ignore existing css rules #1322681

    if it is realy a custom ID it will be:
    #portfolio-style {… } ( it is change anyway to not uppercase )
    .portfolio-style is a class

    in reply to: Header Extra Elements Phone Number Links #1322678

    now put this to your quick css:
    the first rule is extended – then the second instruction is added

    .phone-info a {
    	display: inline-block;
    	font-size: 14px;
    	font-weight: normal !important;
    	padding-left: 15px
    }
    
    .phone-info .av_font_icon {
    	position: relative;
    	top: -4px;
    	color: #eaac57;
    }

    and in the phone-info code get rid of separator “-”
    or replace with:

    <a href="tel:3109333123">[av_font_icon icon='ue854' font='entypo-fontello' size='20px' position='left' color='#eaac57' custom_class='phone'][/av_font_icon] (310)933 3123</a><a href="mailto: (Email address hidden if logged out) ">[av_font_icon icon='ue805' font='entypo-fontello' size='20px' position='left' color='#eaac57' custom_class='email'][/av_font_icon]  (Email address hidden if logged out) </a>
    
    • This reply was modified 4 years, 3 months ago by Guenni007.
    in reply to: How to Hide Submenu box #1322598

    Ist der Menupunkt denn noch ein Mega-Menu? – Sind denn da Untermenupunkte? Und warum – wenn du Sie doch ohnehin ausblenden möchtest?
    Hat der Menu-Punkt immer noch die gleiche ID (12984) ?

    Nächster Punkt. Das ist ja ohnehin auf display : none ! der hover style ist der, der interessiert – also versuche:
    __________
    Is the menu item still a mega menu? – Are there submenu items? And why – if you want to hide them anyway?
    Does the menu item still have the same ID (12984) ?
    The mega-menu is on default allready on display : none ! – the hover style is the one that interests – so try:
    ____________
    maybe try better:

    #menu-item-14445:hover .avia_mega_div {
       display: none !important;
    }
    in reply to: My theme stuck in 3.8.4 and I can not update newer version #1322594

    i would update such older Versions allways via ftp in this manner: https://kriesi.at/support/topic/some-hints-and-advice-to-update-enfold/#post-1056107 , because you will have a rollback enfold version if you had to go back.
    And make a complete Backup of your page ( f.e. with duplicator ).

    What about your php and Wordpess Versions? Are these allready on newest one?

    in reply to: how to make a table ignore existing css rules #1322592

    be more specific on your selectors.
    Maybe you give custom ID’s or custom classes to those table.

    in reply to: Youtube video not blocked properly #1322540

    Is it too complicated for you to implement?
    maybe this is better – ( as mentioned above – the second button had to be not an anchor link leading to an id of a color-section or something like this )

    function inline_popup_youtube_link() { 
    ?>
    <script type="text/javascript">
    (function($){
    $(window).on('load', function () {  
    	$('.custom-class').find('a[href^="#"]').addClass('no-scroll');
    	$('.custom-class').magnificPopup({
    		delegate: 'a[href^="#"]',
    		type:'inline',
    		midClick: true,
    	});
     });   
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'inline_popup_youtube_link', 9999);

    Borlabs can block iframes – see : Borlabs – Content Blocker – Youtube :

    This is the shorcode i put inside a div – and set for the div a class : mfp-hide
    This class is the magnificPopup class that is set to display: none
    With that code above – every anchor link that starts with “#” inside that custom-class ( you can have every other name for it ) will open in a lightbox. In this case it is that youtube film – blocked by borlabs cookie til you consent.
    The button itself is linking to manual #youtube-film ( this had to correlate with the div ID that you like to open )

    <div id="youtube-film" class="mfp-hide">[borlabs-cookie id="youtube" type="content-blocker"]<iframe width="100%" height="800" src="https://www.youtube-nocookie.com/embed/Uzjt3fvIlnY" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>[/borlabs-cookie]</div>
    
    in reply to: Header Extra Elements Phone Number Links #1322539

    and you realy replaced your code ( on phone-info input field ) with mine ???

    <a href="tel:3109333123">[av_font_icon icon='ue854' font='entypo-fontello' size='20px' position='left' color='#b02b2c' ][/av_font_icon] (310)933 3123</a> - <a href="mailto: (Email address hidden if logged out) ">[av_font_icon icon='ue805' font='entypo-fontello' size='20px' position='left' color='#b02b2c' ][/av_font_icon]  (Email address hidden if logged out) </a>
    
    in reply to: Centering buttons from a plugin #1322334

    try this in your quick css :

    .mb-center .mb-container {
      margin: 0 !important
    }
    
    .mb-center a {
      width: 100% !important;
      display: inline-table !important;
      padding: 0 10px;
    }
    
    /*** just a bit more space ***/
    .mb-center a .mb-text {
      line-height: 1.2em !important
    }

    if you come into conflict with desktop look – just wrap the code above in a media query:

    @media only screen and (max-width:767px) {
       /*** code goes here  ***/
    }

    Yes – i found that link too – but i thought that there is in the meanwhile a solution from firefox til now.
    See Date ot that topic: Opened 5 years ago Closed 5 years ago

    in reply to: Header Extra Elements Phone Number Links #1322331

    I’m trying to make the phone number and email clickable in the area above the header

    so i guess it is the area of the header_meta.
    You can insert content to that area by using the phone-info field. As far i can see – you have done this.

    Add that little css to your quick css. – just give it a try
    Copy & Paste this code to your phone-info input field ( replace the other entries )

    <a href="tel:3109333123">[av_font_icon icon='ue854' font='entypo-fontello' size='20px' position='left' color='#b02b2c' ][/av_font_icon] (310)933 3123</a> • <a href="mailto: (Email address hidden if logged out) ">[av_font_icon icon='ue805' font='entypo-fontello' size='20px' position='left' color='#b02b2c' ][/av_font_icon]  (Email address hidden if logged out) </a>
    
    in reply to: Need help with vertically aligning content #1322188

    dear mods, you no longer have to thank there – and certainly not so often :lol: ;)

    in reply to: Fullwidth Sub Menu not sticking to top of screen on mobile #1322186

    the values must be adjusted – f.e. if there is a header_meta – the code above goes to @oladigital_co

    in reply to: Audio player shortcake in classic editor #1322180

    But wait til a mod looks into that topic here again. There must be a reason to exclude the audio-player from mce.

    in reply to: Audio player shortcake in classic editor #1322174

    Go to
    enfold/config-templatebuilder/avia-shortcodes/audio-player have a look on audio-player.php arround line 79

    results in :

    in reply to: Logo link in translation is wrong #1322172

    can you try this in your child-theme functions.php:
    see : Link

    function av_change_logo_link_for_polylang_lang($link){
        if(pll_current_language() == 'en'){
            $link = "https://kriesi.at";
        }
        return $link; 
    }
    add_filter('avf_logo_link','av_change_logo_link_for_polylang_lang');

    on default we can try this too – i do not test it yet as if clause:
    if (get_locale() == 'en_GB') {

    in reply to: Audio player shortcake in classic editor #1322168

    dear Mods and Devs: may i ask you why in the audio-player.php that line is set?
    $this->config['tinyMCE'] = array( 'disable' => 'true' );

    if i comment that out – the audio is in that dropdown list and it works – are there any inconsistencies?
    is it because the element isn’t a self-closing one?

    in reply to: Youtube video not blocked properly #1322115

    well – borlabs offers an iframe option.

    • something like this placed on that page in a codeblock element:
      <div id="youtube-film" class="mfp-hide">[borlabs-cookie id="youtube" type="content-blocker"]<iframe width="100%" height="800" src="https://www.youtube-nocookie.com/embed/Uzjt3fvIlnY" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>[/borlabs-cookie]</div>
      The mfp-hide class will ensure that the div in the codeblock isn’t visible.
    • your button is linking to that ID: #youtube-film ( if you got more than one film – each got his own id ) for each a unique div with that id (could be in the same codeblock)
    • Give a custom-class to your button!
    • Then you had to make your own magnificPopup script to open that class in an inline popup ;)
      the custom-class as trigger with midclick=true, type= 'inline', delegate: 'a', as option

    Link
    maybe you include in that script outside that magnificPopup function
    $('.custom-class').find('a').addClass('no-scroll');

    PS: it will work – but with two buttons on that slider we had to find better selectors ! otherwise the second button will be triggered too.

    as mentioned above give a custom-class in this case to the slider

    
    function inline_popup_youtube_link() { 
    ?>
    <script type="text/javascript">
    (function($){
    $(window).on('load', function () {  
    	$('.custom-class').find('a[href*="youtube"]').addClass('no-scroll');
    	$('.custom-class').magnificPopup({
    		delegate: 'a[href*="youtube"]',
    		type:'inline',
    		midClick: true,
    	});
     });   
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'inline_popup_youtube_link', 9999);

    PPS: because the link isn’t really a youtube link ( remember the link goes to that div with ID: #youtube-film )
    if you like to use it on other places – the ID must have a string with “youtube” maybe you can name them #youtube-1, #youtube-2 etc.

    OR choose as selector: for the anchor : a[href^="#"] ( replace it on both lines ) – it means the link starts with #
    But then the second button in the slider must not be an anchor link of the page. This would also fall into the trigger.
    ________
    Das dort die Vorschaubilder von Youtube gezeigt werden in einer lokalen Version ( daher meine Frage oben ) – wird bei dir nicht der Fall sein !
    Es wird das Standard Borlabs Preview image gezeigt werden.
    Da habe ich ordentlich borlabs und youtube kenntnisse mit eingebracht und eigene Scripte geschrieben.

    in reply to: Header Extra Elements Phone Number Links #1322072

    And you did not test mine ?
    OK –

    Yes – but he is right even on the newest Enfold – the fixed background is not fixed in firefox browsers.

    in reply to: Header Extra Elements Phone Number Links #1322051

    yes you can do it this way too – if you like to have the icons inside the link ( click-active) :

    <a href="tel:3109333123">[av_font_icon icon='ue854' font='entypo-fontello' size='20px' position='left' color='#b02b2c' ][/av_font_icon] (310)933 3123</a> - <a href="mailto: (Email address hidden if logged out) ">[av_font_icon icon='ue805' font='entypo-fontello'  size='20px' position='left' color='#b02b2c' ][/av_font_icon]  (Email address hidden if logged out) </a>
    

    important to have the icons besides the concerning link : display: inline-block ( or -table )

    .phone-info a {
      display: inline-block
    }

    change the color to whatever you like.

    in reply to: Fullwidth Sub Menu not sticking to top of screen on mobile #1321963

    but you have to think of – if it is good to have the submenu open – in this case the content has only 1/6 height of the whole screenheight on f.e. mobile phones !
    So : why no second burger instead: https://webers-testseite.de/transparent-header/

    try:

    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all #header .container {
        width: 90%;
        max-width: 90%;
      }
       
      #header {
        position: fixed !important;
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
        background-color: transparent;
      }
      
      .responsive #top .av-logo-container ,
      .responsive #top .logo a,
      .responsive #top .logo img {
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .av-main-nav .menu-item-avia-special a {
        height: 80px !important;
        line-height: 80px !important;
      }
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 80px !important;
      }
    }
    

    ___________ off topic __________

    this is the only way i found to have sticky submenus on mobile and even with transparent header and sticky header !
    see: https://webers-testseite.de/transparent-header/
    https://kriesi.at/support/topic/how-to-make-the-submenu-sticky-on-mobile/#post-1225108

    But there is a lot to do: have some child-theme alb elements ( the menu.js and to ensure loading the child-theme menu-js – the menu.php too )
    and this is the reason for the trouble in menu.js:

    if( burger_menu.is(":visible") ){
    	this.css({top: 'auto', position: 'absolute'}); fixed = false;
    	return;
    }
    in reply to: sticky submenu in mobile #1321961

    this is the only way i found to have sticky submenus on mobile and even with transparent header and sticky header !
    see: https://webers-testseite.de/transparent-header/
    https://kriesi.at/support/topic/how-to-make-the-submenu-sticky-on-mobile/#post-1225108

    But there is a lot to do: have some child-theme alb elements ( the menu.js and to ensure loading the child-theme menu-js – the menu.php too )

    and this is the reason for the trouble in menu.js:

    if( burger_menu.is(":visible") ){
    	this.css({top: 'auto', position: 'absolute'}); fixed = false;
    	return;
    }
    in reply to: Need help with vertically aligning content #1321960

    the column that is the first in your row – ( 2/5) edit and go to : Row Settings – Row Layout
    choose equal height and middle:
    ( click to enlarge )

    in reply to: exclude images from srcset responsive react. #1321952

    Can be closed – guess Guenter found a better solution (for the slider)

    • This reply was modified 4 years, 4 months ago by Guenni007.
    in reply to: print icon for page #1321951

    you can use the shortcode whereever you like even in widgets or text-alb element
    If it is in child-theme functions.php you can have comments in one-liner by //
    or in more lines by /* your text */
    or like i do for my snippets – give the function a meaningfull name – i think “print_button_shortcode” is unique enough to remember what function it is.

    f.e.

    // shortcode for print page button
    function print_button_shortcode($atts){
    return '<a class="print-page" href="javascript:window.print()">Print This Page</a>';
    }
    add_shortcode( 'print_button', 'print_button_shortcode' );
    in reply to: print icon for page #1321907

    Well a print page button is easy to get – as shortcode by this snippet in child-theme functions.php:

    function print_button_shortcode($atts){
    return '<a class="print-page" href="javascript:window.print()">Print This Page</a>';
    }
    add_shortcode( 'print_button', 'print_button_shortcode' );

    class “print-page” is for styling that button – usage is via shortcode: [print_button]
    Styling may contain an image than a Text to show

    But: there are a lot of print plugins – where you can influence the parts of your page to print ( f.e. by class )
    Print-O-Matic f.e.

    in reply to: exclude images from srcset responsive react. #1321867

    there are two instances of $img_tag = Av_Responsive_Images()->make_image_responsive( …
    arround line 412 and arround line 789 first i tried only the 789

Viewing 30 posts - 4,141 through 4,170 (of 11,918 total)