Forum Replies Created

Viewing 30 posts - 24,601 through 24,630 (of 66,745 total)
  • Author
    Posts
  • 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

    Hi,

    [5 themes tested]

    Which themes are you using aside from Enfold?

    I have disabled the security you should be able to access it

    I can’t login using the password above. Did you change it?

    Best regards,
    Ismael

    in reply to: Mobile issues #1051747

    Hi,

    1.) I forget to change the value “none” to “block”. Please adjust the css code.

    2.) You can create another table that is specifically sorted for mobile view. Use the elements’ Screen Options to toggle their visibility.

    Best regards,
    Ismael

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

    Hi,

    I am still quite confuse myself but I’m glad that it is working properly now. Let us know if you need anything else.

    Best regards,
    Ismael

    in reply to: Transparent Color Section #1051743

    Hi,

    The css background attachment “fixed” is not or partially supported on iOS devices and it is completely disabled on Android devices, which is why it’s not working. Are you checking it on an iOS device?

    // https://caniuse.com/#feat=background-attachment

    Firefox does not appear to support the local value when applied on a textarea element.
    Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.
    iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details

    Best regards,
    Ismael

    in reply to: Transparent & Sliding Navigation? #1051739

    Hi,

    The password for the username “julia” is incorrect. Please check it carefully. The site is also on maintenance mode, so we can’t check it without logging in.

    Best regards,
    Ismael

    in reply to: Preview function not working #1051736

    Hi,

    Can we have access to the site? Please post the login details in the private field. We’ll check the page editor.

    Best regards,
    Ismael

    in reply to: Maintenance mode no more wokring #1051733

    Hi,

    Ismael, this is working on some websites and not on others

    The more reason to check if it’s a plugin conflict. Are the sites running the same plugins?

    Best regards,
    Ismael

    in reply to: Load Only Used Elements is it truly active? #1051732

    Hi,

    Can we access the dashboard? Are you using other cache or minification plugin? Please post the login details in the private field.

    Best regards,
    Ismael

    in reply to: Embed video from server #1051730

    Hi,

    It’s probably not working properly because the site is still running on an old version of the theme, 4.2. You have to upgrade to version 4.5.2 manually.

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

    Best regards,
    Ismael

Viewing 30 posts - 24,601 through 24,630 (of 66,745 total)