Questions tagged [review]

For questions about systems that implement reviews, such as an e-commerce platform that has a reviews component. DO NOT use this tag for questions about code reviews.

For questions about systems that implement reviews, such as an e-commerce platform that has a reviews component. DO NOT use this tag for questions about code reviews.

628 questions
-1
votes
1 answer

Class behavior based on given data

I am receiving an IFormFile from a controller. What I want to do next is to process it and get its content. I expect to get .docx, .txt or .pdf file and I want a single class to process any of these files based on extension given. I created and made…
Bookuha
  • 13
  • 5
-1
votes
1 answer

Code Review Assistant tool(Devart) is not opening/working

after installing when I try to open review assistant board in getting below error. command "View.ReviewAssistant.ShowReviewAssistantBoard" is not valid. steps tried: Reinstalled visual studio reinstalled review assistant
amutamil
  • 35
  • 4
-1
votes
1 answer

Fetching WordPress.org reviews via API

I want to fetch a plugin review from wordpress.org via API, is it possible? I tried using https://api.wordpress.org/plugins/info/1.0/{slug}.json but no luck? Is there anyone available for help?
Amimul Ihsan
  • 136
  • 1
  • 8
-1
votes
1 answer

WooCommerce: Get average rating from multiple products

I've a custom loop to get a list of products based on a list of product IDs. Now I try to get the total ratings and average rating of all the products within that loop. The total count of ratings isn't the problem. My problem is that I don't get the…
Cray
  • 5,307
  • 11
  • 70
  • 166
-1
votes
1 answer

woocommerce reviews are not showing but the review form is working perfectly okay

I am working in e-commerce website, i made my own theme and I installed the woocommerce plugin. but there is a problem displaying the products reviews. the code below is in the woocommerce/single-product/tabs/tabs.php
zero cool
  • 9
  • 5
-1
votes
1 answer

Google play console rejects production release reviewing an old version

I have published a new version of production with an apk file. But Play Store Console Keep rejecting with an old version review. The old version hasn't even been released for production. Maybe it has released for a testing. The reason was the…
-1
votes
1 answer

If you use bootstrap 5 icon in star rating then there is problem of half star

If you use bootstrap 5 icon in star rating then there is problem of half star CSS /* The star of the show */ .rate > label:before { display: inline-block; font-size: 2rem; padding: .3rem .2rem; margin: 0; cursor: pointer; …
Prem Singh
  • 320
  • 2
  • 16
-1
votes
1 answer

How to exclude/ignore owner's review vote(+2) to submit in Gerrit patchset

I want to stop patchset's owner to review and vote on their patchset in Gerrit. Currenlty i am using the follwoing code - sum_list([], 0). sum_list([H | Rest], Sum) :- sum_list(Rest,Tmp), Sum is H + Tmp. add_category_min_score(In, Category, Min, …
i_am_beginner
  • 119
  • 3
  • 11
-1
votes
1 answer

How can i export app reviews of an app from Apple App Store?

I am trying to extract / export App reviews of my App on Apple App Store from my iPhone 11 pro. What are the steps to extract the reviews.
iamtester
  • 119
  • 1
  • 5
-1
votes
1 answer

Facebook sdk script not working on reload

In my index.php I'm loading the content of a html section with a jquery function when clicking on a link: $('#link').click(function(e) { e.preventDefault(); page = "page"; linkClick(page); }); function linkClick(page) { if…
tienow
  • 171
  • 12
-1
votes
1 answer

iOS screenshot submission. Simulator screenshot have simulation name. Does it matter?

I have a screenshot of an iOS taken from the simulator. I am not a graphic designer and not sure so I just upload the whole screenshot with background and upload to the App Store. I only upload 6.5 inch and 12.9 inch screenshot and it uploads fine.…
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
-1
votes
1 answer

Review stars for store appcelerator android / ios

I need a module to allow people to rate the app inside of it. I've founded this link for ios : https://github.com/hansemannn/titanium-review-dialog looks good, can i find the same for android ?! Or any suggestions to open alertDialog with rating.
KbZuhn
  • 57
  • 1
  • 7
-1
votes
1 answer

Bug in star rating under product title

I'm seeing this star rating problem on my site: https://goldenshop.be/product/golds-gym-strength-stringer-goud/ As you can see, the first star seems to have a duplicated half star in the background. How can I remove this bug? Thanks in advance for…
-1
votes
1 answer

reviews extraction based on given links from csv data python?

I am a very newbie in python. I want to extract all reviews details of each hotel based on given links from csv file, named hotel_FortWorth.csv, there are 3 columns: order, name, link. hotel_FortWorth.csv example: name link 1 …
Julie
  • 151
  • 1
  • 1
  • 8
-1
votes
1 answer

Why does this code only show 1 ID

I am having a problem. I know I am using deprecated MySQL, but I am working on a website for school and security is not necessary(as long as it works). I am trying to get all the Id's from a table called Reviews. This should be stored in a array.…