Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Reviews cutting off


Guest

Recommended Posts

Posted

When sent to the reviews page, the reviews page only shows a sentence or two then is ended by "..." with no link or extension. thank you!

Posted
When sent to the reviews page, the reviews page only shows a sentence or two then is ended by "..." with no link or extension. thank you!

Click on the reviewer's name. If you've added the mod to drop the last name, I think it drops the link too (at least that's what it did the last time I tried it).

Posted
Click on the reviewer's name. If you've added the mod to drop the last name, I think it drops the link too (at least that's what it did the last time I tried it).

 

 

The reviewers name is unclickable :(

Posted
The reviewers name is unclickable :(

Have you modified the file?

Posted
Have you modified the file?

 

 

Modified what file? I don't think I've touched the reviews, it was just the standard files that came with OSC

Posted
When sent to the reviews page, the reviews page only shows a sentence or two then is ended by "..." with no link or extension. thank you!

What's your URL?

Posted
What's your URL?

Are you using Security Pro?

Posted
Are you using Security Pro?

 

 

Not sure what that is, haha. :huh:

Posted
Not sure what that is, haha. :huh:

For some reason, the link to the full review (for example, http://domain.com/...pri-131.html?reviews_id=9) lands you on the product page (http://domain.com/...p-131.html) instead of the review page. Not sure why. Note that the review link has pri in it but the product page has just p in it. I don't know what you're using that gives you that kind of path. Maybe someone else will recognize it (or you can tell us what it is).

Posted
For some reason, the link to the full review (for example, http://domain.com/...pri-131.html?reviews_id=9) lands you on the product page (http://domain.com/...p-131.html) instead of the review page. Not sure why. Note that the review link has pri in it but the product page has just p in it. I don't know what you're using that gives you that kind of path. Maybe someone else will recognize it (or you can tell us what it is).

 

I think it has something to do with the ultimate SEO addon I added.. converts links to html files for SEO ranking.

Posted

Ok so i figured a way to fix this... I changed the max characters in reviews.php and removed the '...'

 

$reviews_query_raw = "select r.reviews_id, left(rd.reviews_text, 5000) as reviews_text, r.reviews_rating, r.date_added, p.products_id, pd.products_name, p.products_image, r.customers_name from " . TABLE_REVIEWS . " r, " . TABLE_REVIEWS_DESCRIPTION . " rd, " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = r.products_id and r.reviews_id = rd.reviews_id and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' and rd.languages_id = '" . (int)$languages_id . "' order by r.reviews_id DESC";

 

 

Better than going to a new page TBH

Posted
Ok so i figured a way to fix this... I changed the max characters in reviews.php and removed the '...'

 

$reviews_query_raw = "select r.reviews_id, left(rd.reviews_text, 5000) as reviews_text, r.reviews_rating, r.date_added, p.products_id, pd.products_name, p.products_image, r.customers_name from " . TABLE_REVIEWS . " r, " . TABLE_REVIEWS_DESCRIPTION . " rd, " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = r.products_id and r.reviews_id = rd.reviews_id and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' and rd.languages_id = '" . (int)$languages_id . "' order by r.reviews_id DESC";

 

 

Better than going to a new page TBH

But if you go to the product listing and click on the Reviews button....you end up back at the product page.

Posted
But if you go to the product listing and click on the Reviews button....you end up back at the product page.

 

Yeah, that's what I'm trying to figure out now...

 

<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...