ThemeForest

SOFA - One Page Folio

  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
LikeIllustration says
Purchased

Thanks for the quick reply. I’ve been taking a closer look at how my site performs on my computers (all Apples running Safari) and as near as I can tell, the image viewer breaks when first opening the page.

If I close the page (but don’t quit the browser) and reopen it, that seems to remedy the problem.

My website is www.likeillustration.com

Thanks again for your help!

Posted 8 months ago
Author
feeleep feeleep replied

I wasn’t able to detect any problem with Colorbox on Mac Safari and Chrome. Please have a look at the screenshots:
http://sofarider.com/images/Chrome11-all-ok-on-first-open.png
http://sofarider.com/images/Safari505-all-ok-on-first-open.png
Do you get any error message(s)? Are there any screengrabs that might help me better understand the problem? I would really like to help you out mate but not sure how to get to the point where the problem persist.

Posted 8 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
LikeIllustration says
Purchased

Oh, and I have no additional plugins installed. I even deleted Jetpack.

Posted 8 months ago
Author
feeleep feeleep replied

OK, now I am sure there’s no plugin conflict.

Posted 8 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
LikeIllustration says
Purchased

No error messages.

It seems to be related to how the page refreshes though.

Sometimes the problem occurs on startup, but it always occurs when I refresh the page.

Perhaps it’s something I’m doing wrong? Like forgetting to fully quit out of Safari?

Anyway, this is what it looks like when the image viewer breaks:

http://i1190.photobucket.com/albums/z459/nightshiftnurse1/screenshot.jpg

For what it’s worth, everything seems a lot more stable now than it did a day or two ago – so I’m sure it is some error I’ve been making.

Posted 8 months ago
Author
feeleep feeleep replied

That’s very, very strange, I’m literally stuck with it. No error messages, no signs of problems on my laptop…nothing. OK, What I’m gonna do right now is a theme update that will include the latest Colorbox plugin version and the latest jQuery library. It’ll take time (I guess a couple of hours) for Themeforest staff to review theme and approve it. Once approved, you’ll be able to download the latest package and make an update. Hopefully that’s gonna help, I really don’t know what else I can do mate!

Posted 8 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
LikeIllustration says
Purchased

Thanks! I really appreciate all your help!

Posted 8 months ago
Author
feeleep feeleep replied

You welcome!

Posted 8 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
mcintosh101 says
Purchased

Hi! Great theme, looks amazing although short codes are not working.. I’m trying to insert a contact forum. How do I get these to work?

I have disabled all plugins and still get this error.

All it does is display the shortcode text in the actual text box instead of the element that should of been loaded.

kind Regards, Alex.

Posted 6 months ago
Author
feeleep feeleep replied

Essentially, this theme displays multiple pages on one single page in one big loop. So the code is kinda non-standard.

Anyway, if you try the following, your goal could work…
1) open “index.php” for edit
2) perform find-replace on index file
find each occurrence of “echo wpautop(...);”
...and replace with “echo do_shortcode (wpautop(...));”
For example, the line #28 reads:

echo wpautop( $service_content );
...so you need to replace it with:

echo do_shortcode( wpautop( $service_content ) );
3) be sure all of wpautop(...) are wrapped with do_shortcode, save “index.php” and re-upload to server if file edit on local machine.

Hopefully it’s gonna work!

Posted 6 months ago
  • Has been a member for 4-5 years
  • Bought between 1 and 9 items
Daboss07 says
Purchased

Hello Felleep,

Great theme! I am having some trouble getting the theme to scroll up and down properly. also, what does the shortcode look like. I have no clue on how to get the contact page up and I couldn’t find any documentation. Any help will be greatly appreciated.

The site I am working on is www.daryl-williams.com

Thanks,

Daboss07

Posted 6 months ago
Author
feeleep feeleep replied

OK, no need to be concerned with shortcodes if you don’t really need it. This theme was made long before WP introduced shortcodes anyway. Contact page is defined by using Custom Fields. It should use:
page_type – contact
...as custom fields name – value pair.
It has been documented in theme manuals, you probably overlooked that part.

As for that page scrolling issue, try the following:
1) open “header.php” and go to line #39. it reads:

jQuery('img[src$=.png], #sidebar, .project-description li, .article li, #rssfeed, .contact .widget, #sidebar .widget, #mainnavig, #myselfblock img').ifixpng();
2) remove the first argument from jQuery expression by changing it to:

jQuery('#sidebar, .project-description li, .article li, #rssfeed, .contact .widget, #sidebar .widget, #mainnavig, #myselfblock img').ifixpng();
3) save “header.php” and re-upload to server if edit on local machine

The above expression (img[src$=.png]) is no longer recognized without using quotes since jQuery 1.5: http://api.jquery.com/category/selectors/attribute-selectors/

Posted 6 months ago
Purchased
Default-user Daboss07 replied

Thank you for your quick response. The scrolling worked perfect! Also, sorry about not seeing the documentation. I read through it and I can’t find where to update the custom fields in my dashboard. I would assume it would be on the page your editing but there is nothing there. Sorry for the questions, I am a novice. :)

Posted 5 months ago
Author
feeleep feeleep replied
It seems like you are missing Custom Fields panel and can’t setup required name – value pair…
Have a look here, hopefully it helps:
http://sum.mx/bz49wq
Posted 5 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
vanpersie23 says
Purchased

dear feeleep, please take a look at my site at http://blue-ex.com/fajrweb/

the scrolling effect seems to be broken. i have just installed the theme about an hour ago and created 5-6 pages, please tell me how to restore the scrolling effect.

Posted 5 months ago
Author
feeleep feeleep replied
I’ve replied to your email mate, did you get it? Anyway, here it is once again…
1) open “header.php” for edit. This file can be found in root folder of your theme
2) go to line #39. You can read the following code there:

jQuery('img[src$=.png], #sidebar, .project-description li, .article li, #rssfeed, .contact .widget, #sidebar .widget, #mainnavig, #myselfblock img').ifixpng();
3) now, copy this:

jQuery('#sidebar, .project-description li, .article li, #rssfeed, .contact .widget, #sidebar .widget, #mainnavig, #myselfblock img').ifixpng();
...and paste to exactly the same line number (#39)
4) save “header.php” and re-upload to server (FTP) if edit on local machine
Posted 5 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
vanpersie23 says
Purchased

yes feeleep, thanks its working well now.

Posted 5 months ago
Author
feeleep feeleep replied

I’m glad to read that!

Posted 5 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
contentengine says
Purchased

Hi – great theme, I’ve got a quick question.

I’ve set up almost everything but can’t figure out how to set up the Contact page.

In fact, the Contact template doesn’t show up. I’ve change themes back and forth, but that hasn’t worked.

I even put the following code at the beginning of the contact.php file:

<?php /* Template Name: Contact */ ?>

Any advice?

Posted 4 months ago
Author
feeleep feeleep replied

Not sure what might be wrong but you shouldn’t comment that part of code, WordPress will not recognize it as custom template!
Feel free to create a temp Admin account for me, send login details by email and I’ll take a look. No worries, it can be fixed.

Posted 4 months ago
  • Has been a member for 1-2 years
  • Exclusive Author
  • Bought between 10 and 49 items
raul_ruiz says
Purchased

Is there a way to make a Project Image into a colorbox-link to display a video on Vimeo (or Youtube) within the light box? I`m trying to figure out how to do so, since you don’t get to assign the classes nor the href to the project images within the wp-editor. I’ll appreciate any help in this matter. Thanks.

Posted 4 months ago
Author
feeleep feeleep replied

Have a look at the following examples, hopefully it’s gonna give you idea on how to do it for your website: http://goo.gl/ptsw

Posted 4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
contentengine says
Purchased

I would like to have an image that links to an external website, but upon click, it pops up the lightbox with the message “Request unsuccessful: error”

Any suggestions?

Posted 4 months ago
Author
feeleep feeleep replied

WordPress allows you to link images to: none, attachment page and a larger view. You can see these three buttons at “Add an Image” lightboxed screen. Otherwise, you’ll have to kinda manually workaround that problem. However, even if you do so, with this theme images will tend to open in Colorbox (as a large view image) simply because this is how things work with both : colorbox plugin and images handling within the system itself.

Posted 4 months ago
  • Has been a member for 3-4 years
  • Exclusive Author
  • Bought between 10 and 49 items
  • United States
Vyrtue77 says
Purchased

Not sure if you’ve already answered this already, but for some reason the form is not really working on the site. Even when all the forms are filled in, it still says “Message not sent! Input fields marked with ’*’ are mandatory! Try again?”

Not sure what needs to be activated, but please advise!

Thanks so much!

Posted 3 months ago
Author
feeleep feeleep replied

I can take a look if you like! Some servers require different settings so it might be an issue. URL to your web site would be appreciated. If you want me to fix it up – don’t forget to provide an access to WP Admin.

Posted 3 months ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
sinoun says
Purchased

Where do I go to change the contact email for the contact form??

Posted 1 month ago
Author
feeleep feeleep replied
Contact form results are sent to an email address used by WP installation. If you want to change recipient email address you should edit “contact.php”.
1) open “contact.php” and scroll down to line #27
2) replace:

$to = $owner->user_email;
...with…

$to = 'another@email_address.com';
3) save “contact.php” and re-upload (FTP) to server if edited on local machine
Posted 1 month ago
Purchased
Default-user sinoun replied

Thank you!!!! :)

Posted 1 month ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
ryancardoza says
Purchased

feeleep,

Great job on this theme!

Where you able to help solve danny_p with his question about changing the page jump points from #page_xx to #about

Thanks,

Ryan

Posted 21 days ago
Author
feeleep feeleep replied

OK, try the following:

1) open “header.php” for edit and go to line #39
2) paste the following code there:
jQuery(#sidebar, .project-description li, .article li, #rssfeed, .contact .widget, #sidebar .widget, #mainnavig, #myselfblock img').ifixpng();
3) save “header.php” then refresh website and see whether it works. For a case not – drop me a private message and I’ll fix it up.
Posted 20 days ago

You must sign in or sign up to purchase this item.

$25Regular Licence

$25

Regular Licence a website (commercial, personal, client), or intranet site project - Details

$1250Extended Licence

$1250

Extended Licence a template for a Web Service such as WPMU, or as part of a Software Package for sale - Details

265 Purchases 114 Comments

Buyer Rating
12345 ( 43 ratings )
feeleep

feeleep

  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 1 and 9 items
  • Referred between 10 and 49 users
View Portfolio
Created 20 November 09
Columns 2
Compatible Browsers IE7, IE8, IE9, FireFox 2, FireFox 3, Firefox 3.5, Firefox 3.6, Firefox 4, Safari 4, Safari 5, Opera, Chrome 4, Chrome 5
Software Version Wordpress 3.0, Wordpress 2.9, Wordpress 2.8, Wordpress 2.7
Documentation Well Documented
Layout Fixed
ThemeForest Files Included Layered PSD, CSS Files, JS Files, PHP Files
Widget Ready Yes
by
by
by
by
by