Forum Replies Created

Viewing 30 posts - 7,381 through 7,410 (of 11,690 total)
  • Author
    Posts
  • so now you are talking about woo ( this function is ruled too – on woocommerce itself ! )

    this is the look for portfolio entries – you can see that only the classic status is hidden:

    with the last code i provided the list view on my test is:

    in reply to: Updating to 4.41 requires server upgrade at GoDaddy. #1050017

    I can’t imagine. Most of the time it is the other way around; that if an older PHP is used by the provider a fee is due. This is because they ensure that security updates are still executed for older versions that are no longer supported.

    maybe try this in your functions.php of your child-them

    add_filter('display_post_states','remove_ALB_post_state',999,2);
    function remove_ALB_post_state( $post_states, $post ) {
    	if("! has_blocks( $post->ID )") {
    		unset($post_states['wp_editor']);
    	}
    	if("!= Avia_Builder()->get_alb_builder_status($post->ID)") {
    		unset($post_states['avia_alb']);
    	}
    return $post_states;
    }

    and if you want only get rid of classic :

    add_filter('display_post_states','remove_CLASSIC_post_state',999,2);
    function remove_CLASSIC_post_state( $post_states, $post ) {
    	if("! has_blocks( $post->ID )") {
    		unset($post_states['wp_editor']);
    	}
    return $post_states;
    }
    

    well – this seems to be a part for Günter – because on class-avia-gutenberg.php there are those additional settings. But the “Classic Editior” state comes not from enfold.

    see from line 611 ( public function handler_display_post_states( array $post_states, WP_Post $post ) )

    for example – you can get rid of the ALB info on that list by:

    add_filter('display_post_states','remove_ALB_post_state',999,2);
    
    function remove_ALB_post_state( $post_states, $post ) {
    if("!= Avia_Builder()->get_alb_builder_status($post->ID)") {
    unset($post_states['avia_alb']);
    }
    return $post_states;
    }

    Well i think this will only work if you go over the WP filter display_post_states
    this is how f.e. woocommerce does include their “shop” or “cart” status. So it might be possible to get rid of those state info by a new function via add_filter

    add_filter( 'display_post_states', 'modify_post_states', 10, 2 );
    function modify_post_states( $post_states, $post ) {
        if ( … ) {
            …
        }
      
        return $post_states;
    }

    but as I can influence it now in particular, my programming knowledge is not sufficient for that.

    you can proove that add_filter method by adding this to your child-theme functions.php
    add_filter('display_post_states', '__return_false');
    this will completely remove the post state – but then all quick edit options are gone too!

    in reply to: Menus' custom links not working #1049683

    did you declare the menu on dashboard – appearance – menus on menu-settings as enfold main menu ( enfold-child main menu) ?

    what link do you mean on your page?

    • This reply was modified 6 years, 9 months ago by Guenni007.
    in reply to: CSS + IMAGE OVERLAY + Z-INDEX w/ WORKABLE BUTTON #1049677

    i see that you are using the boxed-layout – maybe this and your “flakes” come into conflict with it.
    these “flakes” got a z-index of 999999 – sometimes it helps if you give to those pngs an overflow : visible (maybe an important is neccessary)

    Can you please insert the overlay image again – and i will see on your site then the source code what happens?

    • This reply was modified 6 years, 9 months ago by Guenni007.
    in reply to: CSS + IMAGE OVERLAY + Z-INDEX w/ WORKABLE BUTTON #1049651

    hm – you see on my testsite that i used an own overlay image – i do not know why there should be a difference what image i take.
    See testpage again
    ?

    in reply to: TITLE & ALT for span class="logo" image #1049648

    ah by the way you can do it in one line:

    function custom_logo_attriubtes(){
    ?>
    <script>
    (function($){
    	$('.logo img').attr({ title:"custom_title", alt:"custom_alt" });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_logo_attriubtes');
    in reply to: TITLE & ALT for span class="logo" image #1049647

    both has to go to the image!
    there was a filter to change the alt attribut for logo but not the title ( this comes to your child-theme functions.php )

    add_filter('avf_logo_alt', 'avf_change_logo_alt');
    function avf_change_logo_alt($alt) {
       $alt = "New Alternate Text Here";
       return $alt;     
    }

    to influence the title attribut too you can do it with jQuery at oncedelete the other code then ( this comes to your child-theme functions.php ):

    function custom_logo_attriubtes(){
    ?>
     <script>
    (function($){
    	$(".logo img").attr("title", "your_custom_title");
    	$(".logo img").attr("alt", "your_custom_alt");
    })(jQuery);
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_logo_attriubtes');
    in reply to: CSS + IMAGE OVERLAY + Z-INDEX w/ WORKABLE BUTTON #1049639

    hm – can not reproduce your problem.
    You can see here that there is a background-image of the color-section with an overlay image ( and even with an opacity of 0.8) the button stayes active.: https://webers-testseite.de/ostler/justin/

    you see the source code has content in av-section-color-overlay-wrap container – but the overlay image concerns to av-section-color-overlay container which is before the container with content.

    Edit : ok – i did not see that you have set it to parallax.
    I will see what happens.

    Edit edit: it is still clickable that button.

    in reply to: Social media icons in widget #1048988

    and you like to have the icons under each other?

    First – you don’t need to have here list tags
    if you take for example a span tag these icons are beside each other.
    I added a class to adress all icons at once:

    <span class="social_bookmark social_bookmarks_twitter av-social-link-twitter social_icon_2"><a target="_blank" href="https://twitter.com/DTB050" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Twitter"><span class="avia_hidden_link_text">Twitter</span></a></span>
    <span class="social_bookmark social_bookmarks_instagram av-social-link-instagram social_icon_3"><a target="_blank" href="https://www.instagram.com/detekstenbakkerij/" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Instagram"><span class="avia_hidden_link_text">Instagram</span></a></span>
    <span class="social_bookmark social_bookmarks_facebook av-social-link-facebook social_icon_1"><a target="_blank" href="https://www.facebook.com/DeTekstenbakkerij" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook"><span class="avia_hidden_link_text">Facebook</span></a></span>

    then do this to quick css:

    #footer .social_bookmark a {
        width: 40px;
        height: 40px;
        font-size: 30px;
        padding: 5px;
        display: inline-block;
        text-align: center;
    }

    looks this way: https://webers-testseite.de/ostler/#footer

    in reply to: Layout of search results on Ajax Search #1048943

    These things can be achieved with Enfold funds – everything else freelancers must arrange in a paid version for you.
    Excuse me – but even my time for the community is limited.

    in reply to: Add own script.js file to avia-footer-scripts.js #1048800

    hm then Günter has forgotten to fix the bug- he said ( Link ) that he will do that next update

    Sorry i didn’t control that.

    So please Mods tell Günter to set this on a todo list.

    in reply to: Layout of search results on Ajax Search #1048797

    i try to get the excerpt now besides the image

    Edit : here is the edited php file: https://pastebin.com/dl/xPGfrSFJ
    see results here : https://webers-testseite.de/ostler/?s=Full

    this is the css for quick css:

    .search-result-image {
        display: inline-flex;
    }
    
    .search-result-image img {
        width: 300px;
    }
    
    .search-result-image {
        float: left;
        margin-bottom: 20px;
        padding-right: 30px;
    }

    put the edited php file into child-theme/includes folder – that is all

    in reply to: Layout of search results on Ajax Search #1048621

    look here – maybe this is a solution for you: https://kriesi.at/support/topic/show-featured-images-in-search-results-page/#post-805253 and the following answer.

    on newest Enfold 4.5.2. it is now on line 33

    in reply to: Animated changing color background on image #1048541

    sorry – i’m Participant as you are – so i can not see Private Message Area.

    in reply to: Animated changing color background on image #1048493

    you see how it works : the keyframe is the base for the animation.
    you have start point and some interstage points and the end point. If you like you can do more here – or set an 80% style etc. pp.
    on the animation then you take this custom defined keyframe for it.

    in reply to: Animated changing color background on image #1048492

    this seems to be only a png file:
    you can do it with pseudo content.
    insert an image from alb elements and give it a custom class ( i took : animated-button )

    then we create the before content:

    .animated-button .avia_image::before {
        content: "";
        background-color: rgba(255,255,255,1);
        border-radius: 50%;
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        animation: pulse 3s ease-in-out 0s infinite
    }

    to have not the overlay effect on enfold images and to see the scale effect :

    .animated-button .image-overlay {
        display: none !important;
    }
    
    .animated-button .avia_image {
        overflow: visible !important;
    }

    now the animation keyframe for it:

    @keyframes pulse {
      0% {
          transform: scale(1.05);
          opacity: 1
      }
      50% {
          transform: scale(1.25);
          opacity: 0.3
      }
      100% {
          transform: scale(1.05);
          opacity: 1
      }
    }

    see result : https://webers-testseite.de/accordion/
    you can change it to your needs?
    In my case it is a dark background image so – it is a white pulsating thing.

    in reply to: Animated changing color background on image #1048489

    maybe this effect of enfold standard behavior of a standalone icon (right side of the example ) could be an alternative:
    https://webers-testseite.de/button-link/
    but this is only on hovering the “button” – you can have a link on the icon and an optional Caption.
    The animation effect is called: sonarEffect

    in reply to: Add own script.js file to avia-footer-scripts.js #1048488

    i would load my custom script via the enqueue a script file:

    the custom.min.js file has to be in the child-themes/js Folder

    Each goes to child-theme functions.php

    function custom_js_script() {
        wp_enqueue_script( 'Custom-JS', get_stylesheet_directory_uri().'/js/custom.min.js', array('jquery'), '1.0', true );
    }
    add_action( 'wp_enqueue_scripts', 'custom_js_script' );

    after that you can try to force to include it by the filter : avf_force_include_asset
    this filter isn’t listet in the hooks and filter list here: https://kriesi.at/documentation/enfold/hooks-and-filters/
    but it is present in : asset-manager.class.php

    add_filter('avf_force_include_asset', 'avia_force_include_files', 10, 1);
    function avia_force_include_files($force_included) {
    	$force_include_js = array('Custom-JS');
    	$force_included['js'] = array_merge($force_included['js'], $force_include_js);
      return $force_included;
    }
    in reply to: Layout break – Icon Grid Flip Box #1048357

    ich schreib das mal gerade auf deutsch:

    du kannst zB für diesen link die word-wrap Eigenschaft setzen, oder wenn es nicht so häufig vorkommt softhyphens setzen:
    click to enlarge:

    so kannst du “Sollbruchstellen” im Text anlegen. Der Link bleibt ja davon unberührt.

    das &shy; ist dann das Zeichen was du brauchst

    in reply to: Layout break – Icon Grid Flip Box #1048341

    Update to newest Enfold – the gridbox bug with firefox is fixed there
    see here concerning topic: https://kriesi.at/support/topic/flip-box/

    to your second link – i can’t find the page you are having that problem.
    to have not that problem you can make a link with a button f.e. and a keyword and not the url.
    or try to have a wordbreak definition for that long url

    is the contact form on a page which you use as footer?

    If not: Can you make a screenshot of the ALB layout you use?

    so no chance to get it over the content this way. You had to set up the contact form on that page itself

    in reply to: Layer Slider overlay #1047867

    yes, that’s right – but that’s the behavior of the standard level – and I think she/he knows that.
    But – I don’t know if the above is a new feature – it was definitely missing on earlier versions. Now this “background” described above is not reloaded every time a slide changes. These “static” layers are not animated between slide changes (only at the starting point of the slider).
    This was also new for me. And used in the kitchen slider.

    in reply to: Special Header #1047202

    Yes indeed the font-size option is only available when selecting the modern style.
    On default it is set to default size- but you can select different sizes here.

    in reply to: Little line underneath menu items #1047197

    you got this in your source code – mayby in your quick css:
    because of the merged file i could not locate it where you got it.

    .av_minimal_header .avia-menu-fx {
        display: none;
    }

    so get rid of that rule – and the underline on hover will work as you like

    in reply to: Wie funktioniert der Support? #1047194

    ja – genau so ist es. Hier wird dir auf jedenfall geholfen. Wobei ich mir nicht im klaren bin, wie das mit dem Support Stop funktionieren soll ;)
    Da du ja hier keine Seriennummern bei der Registrierung angiebst, endet der Support demnach nicht nach 6Monaten – auch die Downloads kannst du jederzeit bei Envato wiederholen.
    hier ist eine sehr schöne Dokumentation: https://kriesi.at/documentation/enfold/
    Dort kann man zunächst schauen ob es nicht schon triviale Lösungen für dein Problem geben sollte.

Viewing 30 posts - 7,381 through 7,410 (of 11,690 total)