Forum Replies Created

Viewing 30 posts - 24,751 through 24,780 (of 66,166 total)
  • Author
    Posts
  • in reply to: jump to anchor link not working on smartphone #1032403

    Hey bauchdenker,

    Thank you for using Enfold.

    It is scrolling at the very top of the section. I checked it in on Chrome Windows 8. Where are you testing it? Can you give us a screencast?

    Best regards,
    Ismael

    in reply to: Changes to font don't have any effect #1032402

    Hi,

    Are the file compression settings enabled? Please check it in the Enfold > Performance panel and disable it temporarily if it’s enabled.

    Best regards,
    Ismael

    in reply to: How to move the position of the Caption of a picture #1032401

    Hi,

    This css code should help.

    #top .av-caption-style-overlay.av-flex-size .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content-pos-content {
        display: table-cell;
        vertical-align: bottom !important;
    }

    Best regards,
    Ismael

    Hi,

    Did you remove the arrows? I can’t see it in the home page anymore.

    Best regards,
    Ismael

    in reply to: Form inside codeblock not dispaying properly URGENT PLEASE #1032398

    Hi,

    I would like to apologize for the late response. This css code should help decrease the spaces between the fields.

    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
        margin-bottom: 0 !important;
    }

    Best regards,
    Ismael

    in reply to: GUI-Sprache auf Deutsch wechseln #1032397

    Hi,

    The translation for that language is not available yet, unfortunately. You may need to set it to “Deutsch” to get the theme options translation.

    Best regards,
    Ismael

    in reply to: WooCommerce Advanced extra fees and reductions displaying #1032395

    Hi,

    I would like to test the css code but I can’t access the theme options panel. Please set the user role to admin. Have you tried disabling the Performance > File Compression settings?

    Best regards,
    Ismael

    in reply to: Enfold 4.5 Top / Child Menu Active States #1032393

    Hey pantoni,

    Thank you for using Enfold.

    Have you tried adding the actual page menu item instead of creating a custom menu? Those menu items are not getting the active state because they are custom menu items.

    Best regards,
    Ismael

    Hi,

    I would like to apologize for that. Please create a reCAPTCHA key here:

    // https://www.google.com/recaptcha/admin

    And then add this code in the functions.php file.

    // https://kriesi.at/support/topic/starting-to-receive-spam-enquiries-from-contact-form-on-website/#post-817676

    You have to add the reCAPTCHA public key on this line:

    var publickey = 'YOUR PUBLIC API KEY';
    

    Best regards,
    Ismael

    in reply to: TEC default styles and maps issue #1032389
    in reply to: Video doesn't worked #1031599

    Hi,

    Thanks for the update. I can’t figure out what’s going on there. Please set the builder to debug mode so that we can see the actual shortcode. Just add this code in the functions.php file:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
      return "debug";
    }

    Best regards,
    Ismael

    in reply to: Breadcrumbs not showing all grandparent/parent/child #1031597

    Hi,

    Thanks for the update.

    You can try this filter:

    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod_division', 5, 1 );
    function avia_breadcrumbs_trail_mod_division( $trail ) {
        if( is_single() )
        {
            global $post;
    
    		if( $post->post_type !== 'solutions' ) return $trail;
    
            $parentID = wp_get_post_parent_id( $post->ID );
    
    		if( $parentID == 0 ) return $trail;
    
            $parent = get_post( $parentID );
    
            if( ! empty( $parent ) )
            {
                $home = $trail[0];
                $last = array_pop($trail);
    
                $link = '<a href="'.get_the_permalink($parent->ID).'">'.$parent->post_title.'</a>';
                $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link);
                $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link);
                $link = '<span typeof="v:Breadcrumb">'.$link.'</span>';
    
    			$trail = array(0 => $home, 1 => $trail[1], 2 => $link, 'trail_end' => $last);
            }
    
            $grandparentID = wp_get_post_parent_id( $parent->ID) ;
    
            if( $grandparentID == 0 ) return $trail;
    
            $grandparent = get_post( $grandparentID );
    
            if( ! empty( $grandparent ) )
            {
                $home = $trail[0];
                $last = array_pop($trail);
    
                $link = '<a href="'.get_the_permalink($grandparent->ID).'">'.$grandparent->post_title.'</a>';
                $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link);
                $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link);
                $link = '<span typeof="v:Breadcrumb">'.$link.'</span>';
    
    			$trail = array( 0 => $home, 1 => $link, 2 => $trail[1], 3 => $trail[2], 'trail_end' => $last );
            } 
        }
        return $trail;
    }

    Best regards,
    Ismael

    Hi,

    I would like to access the dashboard but I got blocked by WordFence. Please disable the plugin temporarily. Where did you add the css code?

    Best regards,
    Ismael

    in reply to: .subtext #1031593

    Hi,

    Thanks for the update. That is the logo for the transparent header. Please go to the Enfold > Transparency Options panel and remove the “Transparency Logo” value.

    Best regards,
    Ismael

    Hi,

    Cool. Open a new thread if you need anything else. We’ll close this one now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blog post order reversed on Enfold 4.2 #1031558

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Enfold Update Failed – 404 Page Not Working #1031553

    Hi,

    Great! Glad it worked. Let us know if you need anything else. We’ll close the thread now.

    Have a nice day!

    Best regards,
    Ismael

    Hi,

    Did you import the “Poiret One” font in your css?

    // https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

    Best regards,
    Ismael

    in reply to: akkordeon slider "loading" animation #1031549

    Hi,

    Thanks for the update. Do you want to disable the animation of the accordion items on page load? If that is so, you can use this css code.

    #top .aviaccordion-preview-title-pos {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    Best regards,
    Ismael

    in reply to: mobile view #1031547

    Hi,

    Thanks for the info.

    You can actually set a particular page as footer on the latest version of the theme, so I don’t think you would be needing that shortcode anymore. Just set the page as footer in the Enfold > Footer > Default Footer & Socket Settings settings.

    Best regards,
    Ismael

    Hi,

    Do you want to remove the input identifiers such as “First name:”, “Last name:” etc? You can add more str_replace function like this:

    $message = str_replace('First name:', '', $message);
    $message = str_replace('Last name:', '', $message);
    // more str_replace code here
    

    Or create an array of texts that you want to remove:

    function avf_form_autorespondermessage_mod($message) {
        $excludes = array( "Your Message", "First name: ", "Last name:" );
        foreach( $excludes as $remove ) {
            $message = str_replace( $remove, '', $message );
        }
    
        return $message;
    }
    add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);
    

    Add the texts that you don’t want inside the $excludes array.

    Best regards,
    Ismael

    in reply to: How to add arrows to a tab section on mobile #1031539

    Hi,

    The css codes above add pseudo or fake arrows to the tab container. We can’t make it clickable, unfortunately.

    Best regards,
    Ismael

    in reply to: After Update to 4.5: Highlights are oversized! #1031535

    Hi,

    What do you see after adding the code? Can you give us a screenshot? You can use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: WP Crowdfunding plugin conflict #1031532

    Hi,

    I’m not really sure what’s causing that. Have you contact the plugin authors? Try to forward the errors to their developers.

    at wpneo_upload_image (crowdfunding-front.js?ver=1.8.6:153)
    at HTMLDocument.<anonymous> (crowdfunding-front.js?ver=1.8.6:177)
    

    Best regards,
    Ismael

    in reply to: Calendar Pro | single-event.php #1031529

    Hi,

    Thanks for the update. Try this script instead:

    add_action('wp_footer', 'ava_color_closed_event', 9999);
    function ava_color_closed_event() {
        ?>
        <script>
            (function() {
                let et = document.querySelector('.tribe-events-single-event-title');
                    et = et ? et : document.querySelector('.tribe-events-month-event-title a');
                if( ( et ) && ( et.textContent == 'Closed' || et.textContent == 'Library Closed' ) ) {
                    et.style.color = '#c20b1a';
                }
            })();
        </script>
        <?php
    }

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider – Image background has disappeared #1031527

    Hi,

    Thanks for the update.

    We’ll forward the issue to our developers. This script should fix it temporarily.

    add_action('wp_footer', 'ava_custom_script_full_background');
    function ava_custom_script_full_background(){
    	?>
    	<script type="text/javascript">
            (function($) {
               $('.av_slideshow_full').each( function() {
                   $(this).css({
                       'background-image': 'url(' + $(this).data('src') + ')',
                       'background-size': 'cover',
                       'background-repeat': 'no-repeat',
                       'background-position': 'center center'
                   });
               });
            })(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: Search function with plugin download monitor #1031520

    Hey!

    That filter returns the link of the search result item. You can use that filter to adjust the $link based on your conditions.

    Example:

    add_filter( "av_custom_url", function( $link, $post ) {
       $link = get_the_permalink( $post->ID );
       return $link;
    }, 10, 2 );

    Cheers!
    Ismael

    Hi,

    Great! Glad it’s fixed. Open a new thread if you need anything else. :)

    And when you have the time, please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Enfold Styling #1031512

    Hi,

    Thanks for the update.

    1.) Use this css code to remove the grayscale effect.

    .av-tab-section-image {
        filter: grayscale(0);
    }

    2.) Looks like you’ve already set the header to transparent.

    3.) Try to decrease the default padding and font size of the menu items.

    @media only screen and (max-width: 1024px) {
    .main_menu ul:first-child > li > a {
        font-size: 11px;
        padding: 0 8px;
    }
    }

    Best regards,
    Ismael

    in reply to: Problems after update to newest version and php #1031511

    Hi,

    Thanks for the update.

    You can adjust the right position of the header widget. Look for this css code and adjust the right property value from 0 to 10px.

    #header .widget {
        position: absolute;
        top: 0;
        right: 10px;
        bottom: 0;
        margin-top: 20px;
        z-index: -1;
    }

    Best regards,
    Ismael

Viewing 30 posts - 24,751 through 24,780 (of 66,166 total)