Amari
Forum Replies Created
-
Forum: Plugins
In reply to: [WebberZone Top 10 β Popular Posts] Is There A “Callback” Option?I left a message on their support forum, and it seems they’ll be working on it being added to their next update!
Forum: Plugins
In reply to: [WebberZone Top 10 β Popular Posts] Is There A “Callback” Option?I’ll check with them! Thank you so much for your response π
Forum: Plugins
In reply to: [WebberZone Top 10 β Popular Posts] Trying to show top posts for an authorNo, I was using the widget. I’m not seeing a filter for specific authors in the shortcode. Just whether to show the current author’s or not.
Forum: Plugins
In reply to: [LuckyWP Table of Contents] Having Table of Contents Show In SidebarI use TagDiv if that helps?
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaInformation sent.
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaI believe there is one last thing needed, how do I add description?
add_filter(‘site-reviews/schema/Movie’, function ($schema) {
$postId = get_the_ID();
$schema[‘itemReviewed’] = get_post_meta( $postId, ‘schema_itemReviewed’, true );
$schema[‘description’] = get_post_meta( $postId, ‘schema_description’, true );
return $schema;
});Isn’t working as that’s under “Thing.” Should I change the base to Thing in order to get this?
The issue at hand is my excerpts are not showing up in Google now and it is either my author bio, or any text but the excerpt. I know certain things are beyond site reviews but it does show work for articles, I just don’t know how to get it to work for everything else.
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaAwesome. Now, for “Invalid object type for field “itemReviewed”” is there anyway to fix that? Am I missing something? Is that associated with anything in the site_reviews_form?
Following the above link, I tried this:
add_filter(‘site-reviews/schema/Review’, function( $schema ) {
$postId = get_the_ID();
$schema[‘itemReviewed’] = get_post_meta( $postId, ‘schema_itemReviewed’, true );
return $schema;
});add_filter(‘site-reviews/schema/Review’, function( $schema ) {
$postId = get_the_ID();
$schema[‘itemReviewed’] = get_post_meta( $postId, ‘schema_itemReviewed’, true );
return $schema;
});add_filter(‘site-reviews/schema/AggregateRating’, function( $schema ) {
$postId = get_the_ID();
$schema[‘itemReviewed’] = get_post_meta( $postId, ‘schema_itemReviewed’, true );
return $schema;
});Should I just leave well enough alone?
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaJust to check, since I don’t do code, is this alright?
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaFirst, let me thank you again for your patience.
–
I tried it and it worked!Now, in terms of automation, I was wondering, do you think I should make the default “CreativeWork” and then specify in each post what it specifically is?
Also, I do categorize everything. The breakdown is Movies, Books, TV Series, a few others, like Character Guides and Collected Quotes, I’m not sure if I should leave under creative work or make articles
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaQuestion #2: Are you using Site Reviews to allow your readers to review the films and TV series that you have written review articles about?
If yes, then you should use the βFilmβ and βTVSeriesβ schema types as your custom schema type as suggested previously.
–
How much of this can be automated or do I manually have to enter the fields from Schema.org?Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaI’m even seeing “Missing field “author” on some.
Note: My Default Schema Type is set to Custom with the type I’m looking for being “Review” though I don’t know if I should put Article instead or if the Custom Schema Type entry is just text and doesn’t generate anything.
I should also note, this seems to only affect the aggregate rating options so I don’t know if I should require title and author in order to fix these issues.
- This reply was modified 6 years ago by Amari.
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaNew question: Is there a way for the “Assigned To” to copy over to the Title within “All Reviews”
Also, is there a way to fix the invalid object type for field “itemReviewed” error in Review Snippets?
It pops up for some, like: https://wherever-i-look.com/movies/weather-with-you-2020-review-summary
but not for others, like: https://wherever-i-look.com/tv-series/insecure-season-4-episode-7-lowkey-trippin-recap-review-with-spoilers
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of Schema1. It’s Kinsta’s cache
2. Noted and changed
3. I use an ad manager, Ad Inserter to be specific, to create shortcodes that input the code above. Do you think that may or is causing issues at all?Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaHopefully, you don’t mind me just posting a new question here, but one last thing: Is there a way to have the plugin trigger a clearing of the cache? I’ve noticed it doesn’t update [site_reviews_summary] unless the cache is cleared.
Few other questions:
-Is the way the code is done below good?-
[site_reviews_form title=”How Would You Rate This?” hide=”content,email,name,terms,title” assign_to=”post_id”]
[site_reviews_summary assigned_to=”post_id” labels=”Recommended, Worth Watching, On The Fence, Divisive, Skip” rating=”1″ schema=”true” title=”Overall Community Rating”]
-Can you use an ad manager and make this into a shortcode and it work properly or do you need to put it directly into a post?-
Sorry about all the questions but, like most, I’m trying to set something in place and then not have to touch it for a long time. So I’m just trying to cross my Ts and dot my Is.
Forum: Plugins
In reply to: [Site Reviews] Trying To Get “Review” to show up in Product section of SchemaI think I fixed my issue. Formerly, I was reliant on the “Product” schema since the review schema didn’t calculate my AggregateRating correctly. It was have the rating count be how many items I noted for my review and use the rating value from that.
However, I tinkered a bit and with using:
[site_reviews_form title=”How Would You Rate This?” hide=”content,email,name,terms,title” assign_to=”post_id]
[site_reviews_summary assigned_to=”post_id” rating=”1″ title=”Overall Community Rating” labels=”Recommended, Worth Watching, On The Fence, Divisive, Skip” schema=”true”]
It now shows the right reviewcount and rating value. Granted, it still shows the way listed in the first paragraph, but I think I finally got it.
Edit: Donated to you for all your help. I hope the “Review statistics” feature is coming along. I’d love to easily show off what’s the top-rated or recently rated. Right now I’m not 100% sure that can be done in a cut and dry way a la WP Review Pro, or a similar plugin.