PhotoPost Photo Gallery Sales PhotoPost Sales Toll Free Phone Number
Mon-Fri 9am-4pm EST
  PhotoPost Photo Sharing Photo Gallery    Visualize community tm
| | | | | | | | |

Go Back   PhotoPost Community > PhotoPost Support > ReviewPost Pro Support Forums > ReviewPost How do I...?

ReviewPost How do I...? Wondering how to do something in ReviewPost?

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old February 21st, 2008, 09:50 AM   #1 (permalink)
Junior Member
 
Join Date: Feb 2008
Location: UK
Posts: 20
spacing - paragraph issue

I've read elsewhere on the forum about an issue with the spacing/paragrah of the text on the review page.

I changed the code within the showproduct.php file and it fixed the problem but not fully.

I've found that the issue is still there with the product description but not the reviews which was more noticable as these are usually bigger.

My site is a private members site and you will need access to view the script, I can give you a username/password to see.

I also have a problem that I think might be cookie related.

I use reviewpost combined with VB3(.6.8) and as I mentioned it is private members site, when I log into the site and go straight to the reviewpost script I get a standard page with no categories. If I go to the forum page and then back again to the reviewpost I see the categories.

Any suggestions for the cause. It's only working properly after I have been onto other pages on the site.

thanks
Lee
ljwonline is offline   Reply With Quote
Old February 21st, 2008, 09:54 AM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
what spacing issue are you talking about and what hack have you done?
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 22nd, 2008, 09:59 AM   #3 (permalink)
Junior Member
 
Join Date: Feb 2008
Location: UK
Posts: 20
Quote:
Originally Posted by Chuck S View Post
what spacing issue are you talking about and what hack have you done?
This is what my review pages looks like.

The spacing between the paragraphs was like this

here here here

They should have been like this

here
here
here

There is a hack on this forum, I can not find it now but it forced the paragraph to display,.

This is fine within the review but in the product description is it still not working.

Lee
Attached Images
File Type: jpg spacing-exaple.jpg (96.1 KB, 8 views)
ljwonline is offline   Reply With Quote
Old February 22nd, 2008, 10:06 AM   #4 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
I need to know what you did to comment really as I can type paragraphs without issue so if you find it let me know.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 23rd, 2008, 08:29 PM   #5 (permalink)
Junior Member
 
Join Date: Feb 2008
Location: UK
Posts: 20
Right, I found it.

This was the solution I found, New line chars removed?
and from that thread I did your suggested code change of:

if ( VB3_COMMWYSIWYG == "off" ) $reviewtext[$itemnum] = convert_returns($reviewtextline);
else $reviewtext[$itemnum] = $reviewtextline;

hth
Lee
ljwonline is offline   Reply With Quote
Old February 23rd, 2008, 08:47 PM   #6 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
those things are age old. Our current code uses this and thats correct we can convert_returns for non vb3 installs which is exactly what those 3 yr old posts do.

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 23rd, 2008, 08:57 PM   #7 (permalink)
Junior Member
 
Join Date: Feb 2008
Location: UK
Posts: 20
Quote:
Originally Posted by Chuck S View Post
those things are age old. Our current code uses this and thats correct we can convert_returns for non vb3 installs which is exactly what those 3 yr old posts do.

Code:
Content visible to verified customers only.
Chuck,

If I take out the code and revert it to the original I get no spacing / paragraphs on the page.

Lee
ljwonline is offline   Reply With Quote
Old February 23rd, 2008, 09:18 PM   #8 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
Try this then and you can also change that one little phrase for desc variable as well.

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 26th, 2008, 06:28 PM   #9 (permalink)
Junior Member
 
Join Date: Feb 2008
Location: UK
Posts: 20
Quote:
Originally Posted by Chuck S View Post
Try this then and you can also change that one little phrase for desc variable as well.

Code:
Content visible to verified customers only.
I tried this chuck

I get the same result, the review spacing seems OK but the original product is not.

this is what I get,

Description: The extensive leisure facilities at Cromer Country Club makes this resort a lively, family destination. The children will enjoy swimming in the pool while parents supervise from the luxury of the pool-side whirlpool. The busy bar serves a range of snacks and bar meals while the quieter, elegantly decorated restaurant offers a more formal choice of menu. Apartments are equipped with all practical and modern conveniences and are furnished to a very comfortable standard.


When I click on the edit review button it shows me the correct formatted text like this

The extensive leisure facilities at Cromer Country Club makes this resort a lively, family destination.

The children will enjoy swimming in the pool while parents supervise from the luxury of the pool-side whirlpool. The busy bar serves a range of snacks and bar meals while the quieter, elegantly decorated restaurant offers a more formal choice of menu.

Apartments are equipped with all practical and modern conveniences and are furnished to a very comfortable standard.
ljwonline is offline   Reply With Quote
Old February 26th, 2008, 08:17 PM   #10 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
Correct please reread my last post basically you will see the same type of code for the $desc variable in that file as well and you change the line in the same file.

Code:
Content visible to verified customers only.
to this

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 27th, 2008, 05:35 AM   #11 (permalink)
Junior Member
 
Join Date: Feb 2008
Location: UK
Posts: 20
Quote:
Originally Posted by Chuck S View Post
Correct please reread my last post basically you will see the same type of code for the $desc variable in that file as well and you change the line in the same file.

Code:
Content visible to verified customers only.
to this

Code:
Content visible to verified customers only.
Many thanks

This sorted the problem.

Lee
ljwonline is offline   Reply With Quote
Old February 27th, 2008, 08:05 AM   #12 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
enjoy glad to assist.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Paragraph Formatting CGMathis Classifieds Bug Reports 4 December 18th, 2006 08:23 AM
Paragraph Formatting CGMathis ReviewPost How do I...? 10 December 17th, 2006 03:11 PM
spacing issue Smoothie Photopost Pro Bug Reports 1 August 9th, 2006 05:18 PM
Photopost Spacing Issue Below Annoucement nuguru Photopost Pro How Do I...? 4 August 9th, 2006 08:39 AM
Double Spacing Issue SteveSteve ReviewPost Suggestions 0 July 6th, 2006 11:25 PM


All times are GMT -5. The time now is 07:42 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0