Forum Replies Created

Viewing 30 posts - 27,931 through 27,960 (of 67,565 total)
  • Author
    Posts
  • in reply to: Opensans woff2 file requested twice #993860

    Hey profumopuntoit,

    Thank you for using Enfold.

    Did you install any font plugin? Please post the login details in the private field so that we can check the dashboard.

    Best regards,
    Ismael

    in reply to: LayerSlider WP inserts malicious code #993850

    Hey runtimespl,

    Thank you for using Enfold.

    I can’t reproduce the issue on my local installation. The plugin doesn’t generate a new file after editing the sliders. Please install the Sucuri plugin and scan your installation.

    // https://wordpress.org/plugins/sucuri-scanner/

    Best regards,
    Ismael

    Hey Britta,

    Thank you for using Enfold.

    You can use this css code to change the default colors of the dark transparent button.

    #top .avia-button.avia-color-dark {
        color: #000;
        border: 3px solid #000;
        color: rgba(0,0,0,0.6);
        border-color: rgba(0,0,0,0.6);
        background: transparent;
    }

    Best regards,
    Ismael

    Hey Cayton556,

    Thank you for using Enfold.

    Set the page’s “Layout” > “Header visibility and transparency settings” to “Transparent & Glassy Header”. You can then use a few css modifications to adjust the opacity of the header background.

    Best regards,
    Ismael

    in reply to: No thumbs in media-library #993844

    Hey MarcusJeroch,

    Thank you for using Enfold.

    The media library requires the “medium” thumbnail when it is set to grid, and the smallest “thumbnail” when list view is enabled. Enable the “medium” thumbnail but set it to be as small as possible, so the generated thumbnails won’t take a lot of space.

    Best regards,
    Ismael

    in reply to: Enfold and Gutenberg #993842

    Hey Stegemueller,

    Thank you for using Enfold.

    Yes, the builder is not compatible with the new editor yet. The development team will probably release a fix once the new editor is officially included in the WordPress core.

    Best regards,
    Ismael

    in reply to: Mailchimp sign up form not working #993841

    Hey HeadStudiosWeb,

    Thank you for using Enfold.

    I can’t reproduce the issue. The form redirects to the “message sent” page after submission.

    Best regards,
    Ismael

    in reply to: Remove white spaces below Fullscreen masonry #993840

    Hi,

    Did you enable the css/js compression from the Performance panel? Please disable it first and then purge the browser cache.

    Best regards,
    Ismael

    in reply to: mobile tezt color – extra element #993836

    Hi,

    We adjusted the css code a bit. Please try it again.

    @media only screen and (max-width: 767px) {
    .phone-info a span, .phone-info a font {
        color: #000000 !important;
    }
    }

    Best regards,
    Ismael

    in reply to: Blog Posts Page not showing Excerpts or Titles #993833

    Hi,

    Alright. Let us know when you need anything else.

    Thank you for using Enfold. :)

    Best regards,
    Ismael

    Hi,

    Yes, that’s possible with the animation-delay property.

    -webkit-animation: avia_appear_fade 1s ease-in 2s;
     animation: avia_appear_fade 1s ease-in 2s;
    

    That last value “2s” is the delay.

    Best regards,
    Ismael

    Hi,

    The theme doesn’t filter the posts content or remove backslashes specifically. Check the includes > loop-index.php file. This template renders the single post pages. We’ll wait for the dev site.

    Best regards,
    Ismael

    Hi,


    @crunchybuzz
    : You can try the layer slider’s video background option.

    Best regards,
    Ismael

    Hi,

    Thanks for the info.

    The header.php and footer.php files in the child theme folder are outdated. Please update those files and then disable the “blockusers_init” function in the functions.php file temporarily.

    Best regards,
    Ismael

    in reply to: Show excert in all post for magazine element #993822

    Hi,

    Did you follow my instructions? You need to fix the structure of the shortcode files in your child theme as instructed above. We can’t do it ourselves because we don’t have access to your file server.

    Best regards,
    Ismael

    in reply to: Remove white spaces below Fullscreen masonry #993820

    Hi,

    Thanks for the update.

    Replace the previous css code with this one.

    #after_masonry.container_wrap, #after_horizontal_gallery {
        position: absolute;
        top: -1px !important;
        z-index: -1;
    }

    You can now replace the generic anchors (‘#full_slider_2’ and ‘#full_slider_3’) with their actual names (#about, #contact).

    Best regards,
    Ismael

    in reply to: Images with links #993819

    Hi,

    Looks like you manage to fixed the issue with the footer columns. If it’s not fixed yet, try to insert the “template-page” selector right after the “#wrap_all” selector.

    
    .responsive #top.page-id-3650 #wrap_all .template-page .flex_column.av_one_fourth {
       width: 24%;
       margin-left: 1%;
    }

    Decrease the font size of the team member name for smaller devices.

    .team-member-name {
        font-size: 11px;
    }

    There are two version of that section, called “blog-grid” and “blog-grid-hd”. Why is that? The images look fine on both galleries, so I’m not really sure what the issue is.

    Best regards,
    Ismael

    in reply to: Missing icons #993818

    Hi,

    I would like to test it, but I get the following error when I try to access the site.

    The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
    

    Did you transfer the site?

    Best regards,
    Ismael

    in reply to: Always on Hamburger Menu – Top Left #993817

    Hi,

    Thanks for the update.

    Use this css code to move the burger menu to the left.

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
        left: 0;
        right: auto;
    }
    }

    Best regards,
    Ismael

    in reply to: Different styles of categories #993816

    Hi,

    Thank you for using Enfold. The previous script has to be adjusted, so it applies the correct color even when there are multiple categories.

    // custom script
    add_action( 'wp_footer', 'ava_custom_script' );
    function ava_custom_script() {
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('.blog-categories a').each(function() {
    			 var text = $(this).text();
    			 switch(text) {
    						case 'Fitness':
    								link.css('color', 'red');
    								break;
    						case 'Karate':
    								link.css('color', 'green');
    								break;
    						case 'Danza':
    								link.css('color', 'blue');
    								break;
    						default:
    								return null
    				}
    		});
    	}
    
    	a();
    })(jQuery);
    </script>
    <?php
    }

    `

    Best regards,
    Ismael

    in reply to: Demo Upload Issues #993815

    Hi,

    Thanks for the update.

    We can upload the images but we need access to the file server. Please provide the FTP details in the private field. I’ll check the demo pages.

    Best regards,
    Ismael

    Hi,

    The site is running on an old version of the theme, 4.2.3. Please upgrade to version 4.4.1 and then test the image dropdown again.

    Best regards,
    Ismael

    in reply to: Entry Slider / Event Calender #993808

    Hi,

    Thanks for the update.

    I adjusted the filter query a bit and it’s now displaying events from the specified categories.

    You need to edit the config-templatebuilder > avia-shortcodes > postslider > postslider.php file around line 629 to display the start date. It is currently displaying the published date, which is how it’s supposed to work by default.

    $meta .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    

    Replace the default date function with “tribe_get_start_date”.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I got the following error when I activated the theme and it looks like the theme files are incomplete. Please upgrade from version 4.4 to version 4.4.1.

    
    Fatal error: Uncaught Error: Call to protected avia_superobject::__construct() from invalid context in /home2/rocksop1/public_html/wp-content/themes/enfold/framework/avia_framework.php:96 Stack trace: #0 /home2/rocksop1/public_html/wp-content/themes/enfold/functions.php(141): require_once() #1 /home2/rocksop1/public_html/wp-settings.php(426): include('/home2/rocksop1...') #2 /home2/rocksop1/public_html/wp-config.php(52): require_once('/home2/rocksop1...') #3 /home2/rocksop1/public_html/wp-load.php(37): require_once('/home2/rocksop1...') #4 /home2/rocksop1/public_html/wp-admin/admin.php(31): require_once('/home2/rocksop1...') #5 /home2/rocksop1/public_html/wp-admin/themes.php(10): require_once('/home2/rocksop1...') #6 {main} thrown in /home2/rocksop1/public_html/wp-content/themes/enfold/framework/avia_framework.php on line 96
    

    I tried to access the file server but the FTP details are invalid.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I can now see that the border radius changes when you move down the sub menu items. Please look for this css code.

    .main_menu ul:first-child > li > a:hover {
        color: #56882d!important;
        background-color: white!important;
        border-radius: 15px;
    }
    

    Move the hover state to the list items instead of the link.

    .main_menu ul:first-child > li:hover > a {
        color: #56882d!important;
        background-color: white!important;
        border-radius: 15px;
    }

    It’s inside this particular css media query.

    
    @media only screen and (min-device-width: 990px)
    
    }

    Best regards,
    Ismael

    in reply to: Comments – Styling #993798

    Hi,

    Thanks for the update.

    I forgot to add the comment form’s field. Please try it again.

    add_filter( 'comment_form_fields', 'avf_default_comment_fields', 10, 1);
    function avf_default_comment_fields($fields)
    {	
        $fields   =  array(
            'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
                        '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" maxlength="245"' . $aria_req . $html_req . ' /></p>',
            'email'  => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
                        '<input id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30" maxlength="100" aria-describedby="email-notes"' . $aria_req . $html_req  . ' /></p>',
            'url'    => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label> ' .
                        '<input id="url" name="url" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" maxlength="200" /></p>',
            'comment' => '<p class="comment-form-comment"><label for="comment">' . __( 'Comment' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label><textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required="required"></textarea></p>'
        );
    
    	return $fields;
    }
    

    Best regards,
    Ismael

    in reply to: Google maps API – billing #993795

    Hi,

    Thanks for the update.

    Can I have access to one of the sites where the API key is not working? You should add http referrers to restrict the usage of the API key because it is visible on the frontend, and it might be used to load maps for other websites.

    Best regards,
    Ismael

    in reply to: Enfold Law, footer template and polylang? #993242

    Hey perler,

    Thank you for using Enfold.

    Do you want to create a different footer page for each language? You may need to edit the footer.php file to do that.

    // https://kriesi.at/support/topic/select-page-as-footer-and-polylang-not-working/#post-983910

    In the footer.php file, look for this code around line 59.

    $post = get_post( avia_get_option( 'footer_page', 0 ) );
    

    Change the value of the $post variable based on the current language.

    Example:

    
    $lang = pll_current_language('locale');
    switch ($lang)
    {
        case 'en_GB':
        $post = get_post(42);
        break;
        case 'de_DE':
        $post = get_post(78);
        break;
    }

    Change the get_post value to the id of the pages that you want to set as footer per language.

    Best regards,
    Ismael

    Hi,

    Thanks for the update. I can’t reproduce the issue though. Where can I see the issue? I’ve tried it on a lot of pages and they’re all the same. The sub menu items turn green on hover.

    Best regards,
    Ismael

    in reply to: Help needed for a "magazine style" page #993232

    Hi,

    Use this additional script to adjust the height of the slider based on the height of the masonry element, on browser resize. Put it on the functions.php file.

    add_action('wp_footer', 'ava_resize_blue_slider', 9999);
    function ava_resize_blue_slider() {
        ?>
        <script>
            $(document).ready(function () {
                function resizeSlider() {
                    var slider = $('#blue_section .flex_column .avia-slideshow');
                    var next = $('#blue_section .flex_column .av-masonry');
                    
                    setTimeout( function() {
                        slider.animate({'height':next.height()}, 100);
                    }, 700)	
                }
                
                $(window).on('debouncedresize', resizeSlider );
    	    });
        </script>
        <?php
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 27,931 through 27,960 (of 67,565 total)