Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1356191

    Hi,
    Is there a way to keep Avia dynamic links from showing up in reports? We have a client who is working through fixing links and the /uploads/avia_posts_css folder keeps showing up with various post ilnks. We do have Yoast premium installed on the website and it is already set to keep Avia Framework from showing up in search results. However, the dynamic links keep showing up in the broken links reports. An example for this website has been added in private content. Thanks.

    #1356359

    Hey GWS,

    Thank you for the inquiry.

    Have you tried excluding the /uploads/avia_posts_css folder from search? This can be done via robots.txt file.

    // https://developers.google.com/search/docs/advanced/robots/create-robots-txt

    There is also the option to disable the posts css files completely using this filter in the functions.php file.

    function custom_avf_post_css_create_file( $create ) {
    	return false;
    }
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
    

    This will prevent the theme from generating dedicated stylesheets for each posts and pages, and add the custom styles inline.

    Best regards,
    Ismael

    #1356409

    Thank you for the suggestions. We will give it try. Please consider this ticket closed.

    #1356458

    Hi,

    Thanks for the update, I’ll go ahead and close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Avia Post CSS showing up in broken links report’ is closed to new replies.