Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    Hi @dantianhealth,
    Is that an error or a warning?
    Also, leave a screenshot of the test tool.

    Please note, that wpDiscuz rating doesn’t provide with all tools to configure Local Business page and schema. wpDiscuz is a comment plugin not a Local Business page builder. All missing components should come from your page not from the rating section and comments. Are you sure your page is a Local Business page and it has all necessary components for the Local Business? A simple page o post cannot be set as Local Business page.

    There maybe some missing components that you should ignore or use wpDiscuz comments on page which is created by some Local Business builder plugin. Try to search for some plugin which allows you to create pages for Local Business, and this plugin will have all options to add Local Business attributes like image address and so on. After all these steps you can enable wpDiscuz and wpDiscuz rating for your Local Business page and manage missing components in the settings of the Local Business plugin.

    Thread Starter Jason Chong

    (@dantianhealth)

    It throws an error.
    Here is a screenshot
    You will observe that even with LocalBusiness schema being set elsewhere and being picked up correctly without errors, the section for LB Schema from WPDiscuz is throwing an error due to no image being attached.
    Is there a way to modify the php snippet to set the image attribute for Local Business?

    • This reply was modified 4 years, 5 months ago by Jason Chong.
    • This reply was modified 4 years, 5 months ago by Jason Chong.
    Plugin Support gVectors Support

    (@gvectorssupportmember)

    Hi @dantianhealth,

    As we already mentioned in the post above the wpDiscuz rating does not provide all tools to configure Local Business page and schema. You should manually configure the advanced options.

    Thread Starter Jason Chong

    (@dantianhealth)

    Hi
    I’m not asking for all the tools. I’m merely trying to find a way for the conversion to local business schema that you offer to be valid.
    As stated I have located business schema configured elsewhere, this section from your plugin however registers the error. I have no idea what you are referring to by telling me to manually configure my advanced options
    All it needs to do is set the image to be the site logo, that wouldn’t require any user input as it could be set in the php code. Is there anyway to pass it into the modification code you provide.
    It just needs something to validate that field which throws an error as opposed to a warning which you see in most of the other schema transitions you offer.

    Plugin Author gVectors Team

    (@gvectors-team)

    Hi @dantianhealth,
    The wpDiscuz rating section cannot be responsive for the whole page and turn it to a page a LocalBusiness page. Most of LocalBusiness schema properties (including the image) should come from your page schemas. So let’s understand how are you creating your LocalBusiness pages.

    1. Do you use a plugin?
    2. Are the pages just simple pages and you want make them LocalBusiness?

    If so, then you should use plugins like this:
    https://www.ads-software.com/plugins/schema/
    https://www.ads-software.com/plugins/schema-and-structured-data-for-wp/

    Or some dedicated themes.

    The Rating part cannot provide you any options to add the page specific image, this is a dynamic image and not one for all LocalBusiness pages so it should have some tool in the page editing screen to allow you manage. In other words you should only use the wpDiscuz Rating on pages, which are built for LocalBusiness and have all necessary LocalBusiness attributes. wpDiscuz only adds rating attribute it doesn’t turn your page to LocalBusiness, so it’s not correct to only use wpDiscuz and expect all LocalBusiness properties to be ready.

    Again, wpDiscuz Rating is only designed to add rating info, it compliments with rating properties, it doesn’t convert your page to LocalBusiness and it doesn’t cover all LocalBusiness properties because it’s a comment plugin not a LocalBusiness builder plugin. Even if the missing attribute is just one image you still need a dedicated solution for creating LocalBusiness pages.

    • This reply was modified 4 years, 4 months ago by gVectors Team.
    Thread Starter Jason Chong

    (@dantianhealth)

    As I explained I already have the local business properties set on the page.
    As explained it is the section of local business schema created by this plugin with the ratings which throws an error.
    I already have an image set from the local business schema set elsewhere. It does not pick that up in this section however.
    Once again I am not asking for wpdiscuz to write my whole local business schema. I am only trying to find a solution for the single attribute of image in the section created by your plugin.
    Wpdiscuz creates the rating section of schema. In doing so that section of code requires an image. It does not provide that.
    Your responses seem to be directed at a request which I am NOT making

    Plugin Author gVectors Team

    (@gvectors-team)

    @dantianhealth,
    Ok, then I need to see your page, please leave some URL to allow us debug it.

    Thread Starter Jason Chong

    (@dantianhealth)

    Sure. Hopefully this helps you see what I am referring to. I appreciate you taking the time to help me with this
    https://www.dantianhealth.com.au/cost-acupuncture/
    https://search.google.com/structured-data/testing-tool/u/0/#url=https%3A%2F%2Fwww.dantianhealth.com.au%2Fcost-acupuncture%2F

    Thread Starter Jason Chong

    (@dantianhealth)

    OK I have manage to figure out the solution
    If your suggested local business conversion code is changed to:

    add_filter('wpdiscuz_rating_schema', function ( $rating_schema, $key, $postid ){
        $sitelogo=get_theme_mod( 'custom_logo' );
    	$sitelogoSrc = wp_get_attachment_image_src( $sitelogo , 'full' );
    	$sitelogoSrc_url = $sitelogoSrc[0];
    	$my_rating_schema = 'LocalBusiness';
            $rating_schema = str_replace(__('Article Rating', 'wpdiscuz'), $my_rating_schema . ' Rating', $rating_schema);
    	$rating_schema = str_replace('aggregateRating', "image' itemscope itemtype='https://schema.org/ImageObject'><img style='display:none' data-no-lazy='1' src='" . $sitelogoSrc_url . "' itemprop='url'></div><div itemprop='aggregateRating", $rating_schema);
        return preg_replace( '|schema\.org\/Product|i', 'schema.org/' . sanitize_text_field($my_rating_schema) , $rating_schema);
    },11, 3); 

    then it pulls the site logo as set in customizer and the schema validates correctly. The data-no-lazy is essential as a lazy load plugin rewrites the url and leads to invalidated schema.
    This may not be the perfect answer, but it seems to be working for me!

    • This reply was modified 4 years, 4 months ago by Jason Chong.
    • This reply was modified 4 years, 4 months ago by Jason Chong.
    • This reply was modified 4 years, 4 months ago by Jason Chong.
    • This reply was modified 4 years, 4 months ago by Jason Chong.
Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Rating – Local Business’ is closed to new replies.