Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jeyjoo

Pages: 1 2 [3] 4
31
Not sure about the latest version, but previous versions you absolutely have to do some of the on-page SEO yourself.
The following rules are a good start:

- Use keyword rich image names (if your image is of a pink elephant, name the image "pink elephant")
- Use keyword rich image file names (if your image is of a pink elephant, name the image "pink-elephant") - note hyphen seperated
- Use keyword rich image descriptions
- Use the {image_name} and {image_description} calls throughout your  page (in Alt tags, H1-h4 tags, strong tags e.t.c.)


Hope this helps

Jeyjoo

32
This message has been deleted by Rembrandt as spam!

33
Feedback & Suggestions / Image Gallery helped my SEO
« on: July 25, 2011, 11:33:30 PM »
I used 4homepages to create an online image gallery more to fulfill a passion for photography. I added the gallery to the website for my Sheffield Web Design - http://www.jeyjoo.com.
However, In the end the gallery has really helped boost my website visitors (and this has a knock on effect on your Google ranking). I optimised my site for SEO, and am getting a hefty number of hits from search engines.

Very satisfied! :D

34
Budduke - my understanding is that you can put as many likes on one page as you like, though having lots of javascript calls may slow down page load though.

Comicart - Have you tried fascebooker linter to test your page. You can debug your URL here - http://developers.facebook.com/tools/lint/

Jeyjoo

35
Seriously, anyone any ideas here. It is not a massive amount of coding...

... but will help contribute to a way better user experience.

36
OK, I got this fully working.
a link to my image gallery home is http://www.jeyjoo.com/gallery/index.php

On my details page, when a user clicks like, a foto, page link, name and description are sent to facebook.

It is not totally clear from Budduke above, but in your header.html file, your final <HTML> statement should be:

1. <html dir="{direction}"  xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">

2. The fb meta tags really should be within the page header tags (in the header.html file).


37
I have created my download and rollover buttons, but need to modify the following code to include mouseover, mousedown mouseout e.t.c

<img src=\"".get_gallery_image("download.gif")."\" border=\"0\" alt=\"\" />

Much appreciated

38
Programming / Re: How to use Facebook Open Graph Protocol
« on: March 28, 2011, 12:12:10 AM »
Check1 - you need your insert your website name, in my case www.jeyjoo.com
Check 2 - you probably need the extension for your gallery - mine is simple called "gallery", so I add www.jeyjoo.com/gallery

In my case, the whole line of code reads <meta property="og:image" content="http://www.jeyjoo.com/gallery/{media_src}"/>

39
I am running version Version: 1.7.6
my gallery is http://www.jeyjoo.com/gallery/index.php

I have tried different mods on this thread, and each time broke my gallery and had to restore original settings.
I am trying to  give each URL as a simple http://mygallery.com/gallery/details.php?image_id=239, ie. remove all the url endings such as &mode=search.

Is there a way to do this?
Much appreciated

40
Programming / Re: How to use Facebook Open Graph Protocol
« on: March 27, 2011, 04:15:49 PM »
Thanks Jakarta, that's awesome. Here is an update of the full code to like an image.
I have also added a generic title, and the image description will be the name you have given to the image being liked.
STILL MISSING - the URL tag needs modifying to automatically pick up the actual link - I am working on this.

EDIT HTML TAG TO INCLUDE FOLLOWING:
<html dir="ltr"  xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">


INSERT IN HEADER TAG
<meta property="og:title" content="Jeyjoo Image Gallery"/>
<meta property="og:description" content="{image_name}"/>
<meta property="og:url" content="LINK TO LINK BACK TO"/>
<meta property="og:image" content="http://www.jeyjoo.com/gallery/{media_src}"/>
<meta property="og:type" content="company"/>
<meta property="fb:admins" content="INSERT YOUR FB ADMIN ID"/>

INSERT THIS BETWEEN BODY TAGS, WHERE YOU WANT THE LIKE BUTTON TO APPEAR
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<fb:like href="INSERT HERE THE URL TO LIKE - THE LIKE COUNT WILL BE APPLIED TO THIS SPECIFIC URL" layout="button_count" show_faces="false" width="40" font="trebuchet ms"></fb:like>

41
Programming / Re: How to use Facebook Open Graph Protocol
« on: March 26, 2011, 03:50:40 PM »
Thats what I would like to know. Leaving it image blank does not work either.
There is a mod here, but it would not work on my version of 4images.
http://www.4homepages.de/forum/index.php?topic=17912.0

Let me know if you have any success with this.

42
Mods & Plugins (Requests & Discussions) / Re: Twitter plugin
« on: March 24, 2011, 03:06:38 PM »
Seriously anyone any ideas on tweet button?
When the tweet button is clicked on any given page, I would like:

1. The page URL to be tweeted (ok done)
2. The Tweet count to increment by 1 (this is evading me!)

Help appreciated,
Mike

43
Programming / Re: How to use Facebook Open Graph Protocol
« on: March 24, 2011, 10:42:48 AM »
I hate to delude, but I have not "done it"... everytime a user like's or tweets a page, they are actually liking the same page every time (my search page, which shows latest images posted). Consequently, a user can only click like on my site once.
Anyway, the required code is below:

EDIT HTML TAG TO INCLUDE FOLLOWING:
<html dir="ltr"  xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">


INSERT IN HEADER TAG
<meta property="og:title" content="5-a-day images @ Jeyjoo Gallery"/>
<meta property="og:description" content="Surf and sand... the best beaches in England"/>
<meta property="og:url" content="INSERT URL TO LINK TO"/>
<meta property="og:image" content="INSERT IMAGE TO SHOW ON FACEBOOK"/>
<meta property="og:type" content="company"/>
<meta property="fb:admins" content="INSERT YOUR FB ADMIN ID"/>

INSERT THIS BETWEEN BODY TAGS, WHERE YOU WANT THE LIKE BUTTON TO APPEAR
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<fb:like href="INSERT HERE THE URL TO LIKE - THE LIKE COUNT WILL BE APPLIED TO THIS SPECIFIC URL" layout="button_count" show_faces="false" width="40" font="trebuchet ms"></fb:like>

Hope this helps,
Mike
www.jeyjoo.com

44
Programming / Re: How to use Facebook Open Graph Protocol
« on: March 03, 2011, 06:32:06 PM »
$url "http" . ((!empty($_SERVER['HTTPS'])) ? "s" "") . "://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];

Thanks. Tjhis is somehting like what I was looking for, though:
- where exactly do I place this code?
- how do I call it in the HTML e.g. is it [URL]?
- how do I create the img thumbnail call?

Much appreciated,
mike
p.s. my gallery is back up after a server issue yesterday!

45
Mods & Plugins (Requests & Discussions) / Twitter plugin
« on: March 01, 2011, 11:43:21 AM »
Hi,

FYI
I am using version 1.7.6
My gallery is at www.jeyjoo.com/gallery/index.php

Currently a user clicks tweet button, and the main search page is tweeted. Can I set up so each time an image page gets tweeted, the actual current page URL gets tweeted?
The tweet code toto tweek is below. I would need to change the url to be tweeted (data-url) to that of the current page url:

data-url="http://www.jeyjoo.com/gallery/search.php?search_new_images=1"

any ideas?
Thanks,
Mike

Pages: 1 2 [3] 4