Forum Replies Created

Viewing 30 posts - 25,321 through 25,350 (of 66,745 total)
  • Author
    Posts
  • Hi,

    I would like to apologize for the late response. If you have a test page, we’ll try and check the issue.

    Best regards,
    Ismael

    in reply to: z-index on side navigation #1032418

    Hi,

    Thanks for the info.

    You should increase the z-index value of the section where the navigation is located. That is the “company” section.

    #company {
     position: relative;
     z-index: 1000;
    }

    Best regards,
    Ismael

    in reply to: Google api #1032416

    Hi,

    Did you disable the map element/script before? You got this code in the functions.php file:

    add_filter('avf_load_google_map_api_prohibited', 'avf_load_google_map_api_prohibited_true', 10, 1);
    function avf_load_google_map_api_prohibited_true($prohibited) {
    	$prohibited = true;
    	return $prohibited;
    }

    Please disable it temporarily.

    Best regards,
    Ismael

    in reply to: Nested Subpages #1032415

    Hi,

    That is not available in the theme but you can find the sidebar navigation function in the functions-enfold.php file. Look for the “avia_sidebar_menu” function. Maybe, you can modify the function for your custom posts.

    Best regards,
    Ismael

    in reply to: Change position of scroll to top button #1032414

    Hi,

    Thanks for the update. That is the default style of the testimonial slider. You can use this css code if you want to recreate the “speech bubbles” style.

    #top .av-large-testimonial-slider .avia-testimonial-meta {
        background: #fcfcfc;
        border: 1px solid #e3e3e3;
        padding: 0 30px 20px 30px;
    }
    
    #top .av-large-testimonial-slider .avia-testimonial-arrow-wrap {
        display: block;
        bottom: -10px;
        top: auto;
    }

    Best regards,
    Ismael

    in reply to: Floating frame breaks masonry & scrolling & other usability #1032412

    Hi,

    Did you remove the “Boek afspraak” button? I can’t find it anywhere in the site. Do you want to open the widget inside a lightbox?

    Best regards,
    Ismael

    in reply to: PHP warning message in admin panel after 4.5 update #1032410

    Hi,

    Glad it’s fixed. We’ll close the thread now.

    Have a nice day! :)

    Best regards,
    Ismael

    Hi,

    he primary problem persists: No button hover WITH diagonal section border / No diagonal section border WITHOUT background overlay.

    Where can we see that issue? Can you give us a screenshot? Please use imgur or dropbox.
    For additional inquiries, please open a new thread.

    Best regards,
    Ismael

    in reply to: Extra page elements on bbPress forums page #1032407

    Hi,

    Looks like the large blank space on top of the section has been removed. Are there any layout issues left?

    Best regards,
    Ismael

    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

Viewing 30 posts - 25,321 through 25,350 (of 66,745 total)