submit for review issue

I have installed WordPress on my linode vps and it was running without a problem till today. Today I realized I dont have admin rights to post a page in wp-admin. It doesn’t show me submit button, it shows me “submit for review” button instead. It is very odd because I am logged in with … Read more

WooCommerce showing star rating review instead of text review string

On my WooCommerce site I am trying to output the star rating for a product that is reviewed. Instead, it outputs this: Rated 3.38 out of 5 based on 8 customer ratings What am I missing with the following code? $rating_count = $product->get_rating_count(); $review_count = $product->get_review_count(); $average = $product->get_average_rating(); echo wc_get_rating_html( $average, $rating_count ); When … Read more

Let private posts stay in status “private” after edit through “editors”

I’m using some private posts for intern purposes. When an editor changes something on these posts, its status turns to pending “review” and I have to publish it again as a private post. When an editor changes something on a normal page/post – that has already been published for public – the status doesn’t change, … Read more