Forum Replies Created

Viewing 30 posts - 26,131 through 26,160 (of 67,534 total)
  • Author
    Posts
  • 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

    in reply to: Enlarge the field for image with hotspot #1031509

    Hi,

    You can make the text container bigger but it may go off the screen. The text are just too long. They don’t fit the screen even after adding this css code.

    body .av-tt-xlarge-width {
        width: 450px;
    }

    I think it’s better if the hotspot redirects user to another page or section. You can put a summary, add a text like “learn more” or “read more” and then add a link to another page or another section of the site.

    Best regards,
    Ismael

    Hi,

    The breaking point is still set to the first option when I checked. Did you test it? Is it OK if we set the cell’s breaking point when the screen width is equal or less than 1366px? That is the maximum screen width of an iPad Pro.

    @media only screen and (max-width: 1366px) {
    .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
    }
    }

    We can also disable the background’s fixed or parallax effect because that is not fully supported on iOS devices.

    @media only screen and (max-width: 1366px) {
    #top .flex_cell {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    }

    Best regards,
    Ismael

    in reply to: GRID ROW Target individual Column. #1031502

    Hi,

    That is possible with custom css but it’s not available as an option out of the box. You can still use own your css modification above and then try to adjust the color of the background elements like main body, container and html so that it’s the same color as the grid row background.

    Best regards,
    Ismael

    in reply to: Instagram Widget – Did not return 200/specify username #1031501

    Hey wescrete,

    Thank you for using Enfold.

    We are not really sure why this is happening but you can try the following steps to make it work.

    1.) Add this code in the functions.php file:

    add_filter('avf_instagram_activate_cron', 'avf_instagram_disable_cron', 10); 
    function avf_instagram_disable_cron() {
    	return false;
    }
    
    add_action('wp_head', function() {
    	delete_option('avia_instagram_widgets_cache');
    });

    2.) Delete all instagram widget. Refresh the page.

    3.) Go to the wp-content > uploads directory and delete the “avia_instagram_cache” folder. If you can’t see the folder, proceed to step 4.

    4.) After the folder deletion, remove the code from the functions.php file.

    5.) Refresh the dashboard page a few times.

    6.) Re-add the instagram widget.

    You have to follow the instruction step by step. Let us know if it helps. If it’s still not working after doing all of the above, you can use the Instagram Feed plugin temporarily.

    // https://wordpress.org/plugins/instagram-feed/

    Best regards,
    Ismael

    in reply to: Problem with the default Blog category #1031500

    Hi,

    I’m sorry for the late response. This filter should help exclude the pages post type from the archive pages.

    function ava_exclude_pages( $query ) {
        if ( is_admin() || ! $query->is_main_query() ) return;
    
        if ( $query->is_archive() ) {
            if ( array_key_exists( 'category', $query->tax_query->queried_terms ) ) {
                $query->set('post_type','post'); 
            }
        }
    }
    add_action( 'pre_get_posts', 'ava_exclude_pages' );

    Best regards,
    Ismael

    in reply to: problem with Google Maps #1031491

    Hi,

    I would like to apologize for the delay. I’m getting this error in the console.

    CMMRM_Tooltip is not defined
        at index.php?hm_custom_js_draft=1&ver=1541728952:38 index.php?hm_custom_js_draft=1&ver=1541728952:38 Uncaught ReferenceError: 
    

    What is CMMRM? Please deactivate it temporarily then purge the cache. You may need to upgrade to version 4.5 manually or via FTP, because the auto update is not going to function properly on version 4.4.1.

    // https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftp
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    P.S: Nice site. :)

    Best regards,
    Ismael

    in reply to: Vimeo video doesn;t work #1031490

    Hi,

    Thanks for the update. Do you have a test page? I can’t see the issue on the “ronnie” page.

    Best regards,
    Ismael

    in reply to: Hide all portfolio items from internal search results #1031489

    Hi,

    Thank you for the update.

    The following snippet should help. Just add it in the functions.php file:

    // exclude images from search results
    add_action( 'init', 'exclude_portfolio_from_search_results' );
    function exclude_portfolio_from_search_results() {
    	global $wp_post_types;
    	$wp_post_types['portfolio']->exclude_from_search = true;
    }

    Best regards,
    Ismael

    in reply to: Featured Image #1031488

    Hi,

    You are using a third party plugin (Thrive Architect) to create the content of the post. Is that what you’ve have used ever since the site was created?

    Best regards,
    Ismael

    Hi,

    Thanks for the info.

    This css code should resize the tab layout container on IE.

    .avia-msie .av-layout-tab  {
        max-width: 100vw !important;
    }

    Best regards,
    Ismael

    in reply to: Instagram Widget Not working in Footer #1031483

    Hi,

    Thanks for the update. The login credentials are not working though. Please check the it carefully. For the meantime, you can install third party plugins like Instagram Feed in place of the the default widget.

    // https://wordpress.org/plugins/instagram-feed/

    Best regards,
    Ismael

    in reply to: LayerSlider – How can First Slide appear only once? #1031481

    Hi,

    You can actually stop the first slide from re-appearing using the events callback but it will also hide the drone because it’s inside the slide.

    Best regards,
    Ismael

Viewing 30 posts - 26,131 through 26,160 (of 67,534 total)