Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)

Thank you for letting me know.

Not exactly, what I’m looking to do is change the author on the backend of the review – like with all cpts you can change the supports to include the author.

Yes, that’s perfect for the front end. However, when we poll our customers through email and they allow us to share their review – it’ll be through us adding it in manually in the admin dashboard. We’ll need to create a custom author for that so it doesn’t keep showing that I reviewed it for them.

thanks!

I bet that’s what it is.. Thank you!

Had this same problem could not find the setting in Yoast or WPSchema.

Hello,

It’s coming from the theme: https://core-security.com/wp-content/uploads/2023/10/Screenshot-2023-10-13-at-8.52.32-AM.png

It’s within the title slot but when you delete the title this happens: https://core-security.com/wp-content/uploads/2023/10/Screenshot-2023-10-13-at-8.54.48-AM.png

But when I changed the Block Head type from 13 to say 11 it’s gone.

Nate

Thanks for the quick response. I tried that but it didn’t work

Are there any updates?

Sorry, one more lol. The Module reviews are unhooked from Woocommerce reviews as well.

Thank you!!

Would you be able to share how we could display prices?

I added;

//Add Products to Category
function custom_post_type_cat_filter($query) {
if ( !is_admin() && $query->is_main_query() ) {
if ($query->is_category()) {
$query->set( 'post_type', array( 'product' ) );
}
}
}

add_action('pre_get_posts','custom_post_type_cat_filter');

and still can’t quite get it to filter.

Viewing 12 posts - 1 through 12 (of 12 total)