Forum Replies Created

Viewing 30 posts - 25,381 through 25,410 (of 67,534 total)
  • Author
    Posts
  • Hi,

    Have you tried to add the suggested code above? You have to put it in the wp-config.php file.

    Best regards,
    Ismael

    in reply to: Code Error Message #1052305

    Hi,

    Sorry I missed that information. You can’t update from that version automatically because it’s still using the deprecated version of the update script, so you have to do it manually via FTP. Here’s how:

    // https://kriesi.at/documentation/enfold/install-enfold-theme/#reinstall-or-update-using-ftp

    A short read about updating:

    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    in reply to: Duplicate markup generate by Enfold #1052302

    Hi,

    Great! Glad they were able to help. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Transparent Color Section #1052301

    Hi,

    It is possible with a parallax effect, but that too is disabled on mobile devices because it lowers the performance rate of the page. And in my own personal opinion, when it comes to mobile devices, you should be worrying more about the content of the page instead of the moving image or background behind it.

    Best regards,
    Ismael

    in reply to: 2 things: spam contact form + Update 4.4.1 to 4.5 #1052296

    Hi,

    You need to download the whole snippet library and copy the plugin folder manually.

    // https://github.com/KriesiMedia/enfold-library

    Click the green “Clone or download” > “Download ZIP” button.

    Best regards,
    Ismael

    in reply to: Fullwidth Sub Menu jumping off screen #1052290

    Hi,

    I modified the code a bit and it seems to be working now. Please remove the browser cache prior to checking the page.

    #top .av-submenu-container.av-sticky-submenu {
        max-width: 100%;
    }
    
    .html_boxed #main {
        position: relative;
        overflow: hidden;
    }

    Best regards,
    Ismael

    in reply to: wp_link_pages #1052287

    Hi,

    I just reviewed the function’s documentation and it says that it has to go inside the loop, so you have to add it in the includes > loop-page.php file, right after the content around line 26:

    //display the actual post content
                    echo '
    <div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';
                        the_content(__('Read more','avia_framework').'<span class="more-link-arrow"></span>');
                    echo '</div>
    ';
    

    // https://codex.wordpress.org/Function_Reference/wp_link_pages

    Best regards,
    Ismael

    in reply to: Hotspot Full stretch in three fifth column #1052283

    Hi,

    Thanks for the update. You can use the grid row element for that. Add the hotspot element inside the cells or apply the image as the cell background.

    Best regards,
    Ismael

    Hi!

    I do understand what you’re trying to say and I’m not trying to argue. I’m actually enjoying this because I’m learning a lot, but I’m still confuse on where you get the “deindexing” thing. I think that’s the whole point of your reply above. You’re saying that we should not add the “nofollow” attribute to the search link because the crawlers won’t be able to get to the search results page and Google won’t be able to “deindex” the duplicate content. Is that correct? Now, I’m searching for the “deindexing” keyword but I can’t find it anywhere. Have you read any documentation about that?

    Regards,
    Ismael

    Hi!


    @goldengate415
    : You have to remove the first filter and use that one instead. Regenerate the thumbnails afterwards. If you’re using the following plugin, you’ll notice that after adding that code the theme’s thumbnail are going to be removed from the list of thumbnails in the plugin’s panel.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    @Gitte: Thank you for the info. He doesn’t want to use a plugin, so we’re suggesting the filter.

    Cheers!
    Ismael

    in reply to: Problem between page and layout #1052231

    Hey!

    You don’t need to close a line break or br tag.

    // https://www.w3schools.com/tags/tag_br.asp

    Again, you forgot to close the strong tag in the “strategie-ikea” page.

    < strong > MEUBLE TON BUSINESS COMME IKEA
    

    Please be careful with the html tags because unclosed tags can break existing elements in the builder.

    Best regards,
    Ismael

    in reply to: How to edit product-category in Woocommerce #1052226

    Hey Zuzana,

    Thank you for using Enfold.

    You need to translate it manually because the translation for that particular language is probably still incomplete. Use this plugin.

    // https://wordpress.org/plugins/loco-translate/

    Best regards,
    Ismael

    in reply to: Uploading Picture to Media Library Error #1052224

    Hey Zuzana,

    Thank you for using Enfold.

    You have to upgrade WordPress to version 5.0.2 and the theme to version 4.5.2. Let us know if you still experience the issue after the update.

    Best regards,
    Ismael

    Hi!

    @Istoudenmire: Thanks for the info. We would be happy to hear about your findings.

    @Hokuspocus: Thanks for the clarification. Yes, it’s all clear that you have to use “noindex” if you don’t want bots to index this and that page and “nofollow” if you want to prioritize other content or you don’t want crawlers to go that way and prioritize other content instead. One question though. How would the crawlers index the page where the link is supposed to redirect if they can’t follow it? And according to Yoast, you should not index the search results page, so why would it hurt your ranking if you’re telling the crawlers not to follow unwanted content, which is why that change is created in the first place.

    // https://yoast.com/blocking-your-sites-search-results/

    And adding the “nofollow” link makes much more sense, if you take into consideration the crawl limits Google imposed for every sites they crawled.

    // https://yoast.com/crawl-budget-optimization/
    // https://www.seroundtable.com/google-drops-crawl-limits-in-search-console-25262.html

    Nofollow now also prevents the deindexing of existing content because the crawl is aborted: The crawl ends here because the crawler can no longer follow the page structure.

    I see your point about deindexing though. Do you have any resources about that?

    Again, as stated, we are not SEO experts, so what we provide here comes from third party resources or from the documentation itself. Please feel free to correct us, if we are wrong. ;)

    Best regards,
    Ismael

    Hey MikeSole,

    Thank you for using Enfold.

    Have you tried using the full or absolute url plus the anchor instead of just the “#display-popup” anchor link?

    Best regards,
    Ismael

    in reply to: Code Block Buttons not adjusting to smaller screens #1052199

    Hi,

    Thanks for the update. You can try this css code:

    @media only screen and (max-width: 767px) {
    .c-buttons li {
        float: left;
        width: 48%;
        clear: none;
        margin: 0 0 0 1%;
        font-size: 13px;
    }
    
    .c-buttons li a {
        padding: 0;
    }
    }

    Best regards,
    Ismael

    in reply to: Exclude category in blog posts #1052194

    Hey peterolle,

    Thank you for using Enfold.

    Are you using the grid layout? Have you tried to unselect the “food” category and leave the “fruit” category selected from the blog posts element? Please provide a link to the actual page with the blog posts element.

    Best regards,
    Ismael

    in reply to: page speed fell down after update #1052192

    Hi,

    You may need to re-do the optimizations. Did you add more elements to the page or install any plugins before the update?

    Best regards,
    Ismael

    in reply to: Instagram Widget Problems … #1052190

    Hi,

    I’m sorry but I don’t know what else to tell you aside from the fact that the theme’s instagram widget is not working properly with your server. And I’m not really sure why it’s not working. Do you have any other sites using Enfold?

    Best regards,
    Ismael

    in reply to: Frontpage Image Issues #1052187

    Hi,

    The current minification or caching configuration is probably not compatible with your site or server, so you have to find another set of plugins or play around with the options more until you find the configuration that works best. This article should help:

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: How to add link to colour section background image #1052183

    Hey Huan_Rimington,

    Thank you for using Enfold.

    That option is not available by default but this script should help.

    add_action('wp_footer', 'ava_add_link_to_home_section');
    function ava_add_link_to_home_section(){
    ?>
    <script type="text/javascript">
    (function() {
    	const hm = document.querySelector('#home');
    
    	if( hm ) {
    		hm.addEventListener( 'click', (event) => {
    			event.preventDefault();
    			window.location.href = "http://www.google.com";
    		});
    	}
    })();
    </script>
    <?php
    }
    

    This script will redirect you to another page when you click on the “home” section.
    Add this css code to change the mouse cursor.

    #home {
        cursor: pointer;
    }

    Best regards,
    Ismael

    in reply to: Margins on Mobile and tables are too wide #1051921

    Hi,

    Thanks for the update.

    I adjusted the css code a bit.

    @media only screen and (max-width: 768px) {
    .responsive #top #wrap_all .flex_column.social-columns:nth-child(1), .responsive #top #wrap_all .flex_column.social-columns:nth-child(5) { display: none !important;
    }
    
    .responsive #top #wrap_all .flex_column.social-columns {
       width: 33.33%;
       float: left;
    }
    }

    Don’t forget to set the “Equal Height Columns” settings to the first option.

    Best regards,
    Ismael

    in reply to: Problem between page and layout #1051918

    Hi,

    Do you have a copy of the content? It was removed after adding the text block. The post is breaking because of the heading.

    < strong > SI VOUS ETIEZ LE PROCHAIN ?
    

    You forgot to close the strong tag.

    Best regards,
    Ismael

    in reply to: Site Width Randomly Changed. . . #1051917

    Hi,

    Can we access the file server? Please post the FTP details in the private field.

    Best regards,
    Ismael

    Hi,

    Thanks for the update. This filter works on my end.

    add_filter('avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1);
    function avf_modify_thumb_size_mod($size) {
        $size = array();
        return $size;
    }

    Best regards,
    Ismael

    Hi,

    A “nofollow” on the search link really doesn’t meet any of those criteria

    I think it does make sense when you want to prioritize other content or redirect the crawlers. By adding the “nofollow” attribute to the search link, we are telling the crawlers not to follow, and in turn not index, the items on the search results page, which is reported to be causing duplicate contents. That is the whole intention of that modification. We are by no means SEO expert, so any suggestions from other users are welcome.

    Under “3. Crawl prioritization”:

    Using nofollow on these links enables Googlebot to crawl other pages you’d prefer to see in Google’s index.

    =======================================================================================

    If duplicate content is the issue, then I would think that a noindex would be the correct way to handle.

    Thanks for the suggestion. Like I said, the search results page is already set to “noindex, follow”, but it’s still generating duplicated contents as reported by other users.

    If you really want to change that attribute, edit the functions-enfold.php file, look for this code around line 124:

    <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>
    

    Best regards,
    Ismael

    in reply to: Google Maps API Key just wont work #1051810

    Hi,

    Did you delete the project? The error says that the project has been deleted.

    js?v=3.30&key=APIKEYHERE&callback=aviaOnGoogleMapsLoaded:54 Google Maps JavaScript API error: DeletedApiProjectMapError
    https://developers.google.com/maps/documentation/javascript/error-messages#deleted-api-project-map-error

    Please create another project and regenerate a new API key. Refer to the documentation above for more info.

    Best regards,
    Ismael

    in reply to: 2 things: spam contact form + Update 4.4.1 to 4.5 #1051808

    Hi,

    Yes, some users reported the same issue and installing a security plugin usually stops the problem. Let us know if the reCAPTCHA plugin helps.

    Best regards,
    Ismael

    in reply to: Google events enfold button #1051804

    Hi,

    Thanks for the update. Post the script on pastebin.com and we’ll try to modify it.

    Best regards,
    Ismael

    Hi,

    Thanks for the info. I adjusted the code a bit. Clicking on the button will play or pause the video and set the volume to 1 or 100%. I also adjusted the button’s position, so it doesn’t cover the video.

    add_action('wp_footer', 'ava_custom_vimeo_api');
    function ava_custom_vimeo_api(){
        ?>
        <script src="https://player.vimeo.com/api/player.js"></script>
        <script type="text/javascript">
            document.addEventListener( "DOMContentLoaded", () => {
                let player = null;
                const slide = document.querySelector('.av-video-slide'); 
                let iframes = slide.getElementsByTagName('iframe'); 
                const button = slide.querySelector('.avia-slideshow-button');
    
                button.classList.add('paused');
    
                for (var i = 0; i < 1; i++) { 
                    player = new Vimeo.Player(iframes[i]);
                }
    
                player.on('play', () => {
                    console.log('played');       
                    player.setVolume(1);
                    button.classList.replace('paused', 'playing');   
                });
    
                player.on('pause', () => {
                    console.log('paused');   
                    button.classList.replace('playing', 'paused');       
                });
                
                if( slide ) {
                    button.addEventListener( 'click', (e) => {
                        e.preventDefault();
                        if( button.classList.contains('playing') ) {       
                            button.textContent = 'Play Video';
                            player.pause();
                        }
    
                        if( button.classList.contains('paused') ) {                       
                            button.textContent = 'Pause Video';
                            player.play();
                        } 
                    });
                }  
            });      
    	</script>
    	<?php
    }

    CSS code:

    .avia-slideshow-button.paused, .avia-slideshow-button.playing {
        position: absolute;
        right: 0;
        bottom: -50px;
    }

    Best regards,
    Ismael

Viewing 30 posts - 25,381 through 25,410 (of 67,534 total)