Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #1433710

    See private content:

    • This topic was modified 2 months, 3 weeks ago by Webvriend.
    #1434082

    @guenter any update?

    #1434299

    Hi,

    I submitted your request on our private GitHub. We’ll let you know when there’s an update.

    Regards,
    Yigit

    #1435078

    Hey!

    Regarding #4, there is a function called avia_filter_wpseo_sitemap_urlimages, which extracts mage IDs from image or slider elements in the ALB, and push them to the wpseo_sitemap_urlimages filter for registration in the Yoast sitemap. To register more ALB elements such as sliders, you can use the avf_add_elements_wpseo_sitemap filter in the functions.php file:

    add_filter('avf_add_elements_wpseo_sitemap', function($elements, $postid) {
    	$image = array(
    		'image' => array(
    			'pattern' => '/\[av_image [^]]*]/',
    			'source' => 'src'
    		),
    		'accordion' => array(
    			'pattern' => '/\[av_slideshow_accordion(.+?)?\](?:(.+?)?\[\/av_slideshow_accordion\])?/sim',
    			'source' => 'sid'
    		),
    		'slideshow' => array(
    			'pattern' => '/\[av_slideshow(.+?)?\](?:(.+?)?\[\/av_slideshow\])?/sim',
    			'source' => 'sid'
    		),
    		'slideshow_full' => array(
    			'pattern' => '/\[av_slideshow_full(.+?)?\](?:(.+?)?\[\/av_slideshow_full\])?/sim',
    			'source' => 'sid'
    		),
    		'slideshow_fullscreen' => array(
    			'pattern' => '/\[av_fullscreen(.+?)?\](?:(.+?)?\[\/av_fullscreen\])?/sim',
    			'source' => 'sid'
    		)
    	);
    
    	return array_merge($image, $elements);
    }, 10, 2);
    

    Related thread: https://kriesi.at/support/topic/how-to-make-images-in-masonry-gallery-to-be-indexed-in-seo-yoast-sitemap/

    Thank you for your patience.

    Regards,
    Ismael

    #1435098

    See private content @ismael

    #1435115

    Hi!

    Thank you for the update.

    1.) The value “mainContentOfPage” is a valid schema.org item property for indicating the main content of a webpage. For more information on schema.org’s WebPage type and its properties, you can refer to the official documentation at https://schema.org/WebPage.

    2.) The theme doesn’t really impose strict limitations on how users build their pages, so they are not limited to elements that applies images as background. We recommend using elements that make use of HTML img tags, such as an Image element, rather than applying background images to Color Sections.

    3.) If you’ve experienced a decline in your site’s search engine ranking, it may be best to seek assistance from an SEO consultant. While the theme includes basic schema markup to help search engines understand the structure of your content, you may need more specific schema markup for certain types of content or data. You might want to look for a dedicated schema markup plugin or extension for a more accurate schema markup suited to your site.

    4.) We modified the filter a bit to make sure that it recognizes the value of the attachment attribute in the Image element.

    // https://pastebin.com/hpZ7V3pU

    With this modification, Yoast was able to recognize the Image, Gallery and Slider elements in the page as shown in the screenshots below. The page has 3 Image elements, a Gallery with 5 items, and an Easy Slider with 3 slides, total of 11 images: https://1drv.ms/f/s!AjjTfXSRbKTvgtxfLx7TxBKZnZrGyw?e=NgYxo2

    Cheers!
    Ismael

    #1435118

    See private content, @Ismael see replay

    • This reply was modified 2 months, 1 week ago by Webvriend.
    • This reply was modified 2 months, 1 week ago by Webvriend.
    #1435427

    Hi,

    1-2.) Unfortunately, this is beyond the scope of support. You may need to hire a freelance developer to help you with this customization. You can find freelancers by visiting our customization page.

    4.) We updated the Yoast config to include posts images to the sitemap. Please edit the enfold/config-wordpress-seo/config.php, remove everything, and then replace it with the content from the following link: https://pastebin.com/kRh3YKbh

    Best regards,
    Ismael

    #1435431

    Hey!

    UPDATE: Regarding 1 & 2, we registered the background image of the color section in the Yoast sitemap. Please update the enfold/config-wordpress-seo/config.php file with this code: https://pastebin.com/N3rmYPRW

    Best regards,
    Ismael

    #1435447

    @Ismael replay

    • This reply was modified 2 months, 1 week ago by Webvriend.
    #1435553

    Hi @Webvriend,

    Best regards,
    Günter

    #1435563

    Hi @guenter see replay

    • This reply was modified 2 months, 1 week ago by Webvriend.
    #1435567

    Hi,

    Best regards,
    Günter

    #1435582

    Hi @guenter, see replay

    #1435622

    Hi,

    I added filter avf_sc_section_before_close at line 1507ff.

    Complete file with modification:

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_6_10/avia-shortcodes/section/section.php

    Let me know if this helps you.

    Will be in next release.

    Best regards,
    Günter

    #1435826
    #1435882

    Hey,

    See the private content field.

    Regards,
    Yigit

    #1435963

    Hey,
    See the private content field.

Viewing 18 posts - 1 through 18 (of 18 total)
  • You must be logged in to reply to this topic.