Hello!, Just two questions:
1. How set up feeds to pull on facebook?.
2. How can I do to put bookmark under each post on threads?... Is Advisable??.
This is a discussion on Bookmarks within the General Discussion forums, part of the vBulletin SEO Discussion category; Hello!, Just two questions: 1. How set up feeds to pull on facebook?. 2. How can I do to put ...
Hello!, Just two questions:
1. How set up feeds to pull on facebook?.
2. How can I do to put bookmark under each post on threads?... Is Advisable??.
The world is ours... ° ÂLtø FøRø °
1. You can have feeds from your AdminCP for RSS, not sure about facebook specifically.
2. In your vbseocp.php find: Social Bookmarking and you need to set the first option to either of the second or third option in the drop down.
The Forum Hosting - Forum Hosting from the Forum Experts
I did it thanks!! I just want to add facebook bookmark on vbseo CP but I dont know what put on the field "custom bookmark"
Always talking VBSEO not vbulletin CP
The world is ours... ° ÂLtø FøRø °
Thanks! but donsn´t show!
look: Llegueeeeeeeee me extrañaron mucho????//http://www.facebook.com/share.php?u=%url%,images/misc/bookmarksite_facebook.gif,Compartí este mensaje en Facebook!
// Un-comment the patterns below (remove '//' at the beginning) to enable desired Bookmarking Services or add your own!
//http://www.spurl.net/spurl.php?title=%title%&url=%url%,images/vbseo/spurl.gif,Spurl este Post!,Spurl este Post!
//http://reddit.com/submit?url=%url%&title=%title%,images/vbseo/reddit.gif,Reddit!,Reddit!
//http://www.mister-wong.de/index.php?action=addurl&bm_url=%url%&bm_descriptio n=%title%,images/vbseo/mister-wong.gif,Wong este post,Wong este Post!
The world is ours... ° ÂLtø FøRø °
You need to uncomment that line. Remove the // in front.
The Forum Hosting - Forum Hosting from the Forum Experts
Thanks Micharl Now working good.
How can I change the order of icons and how can I do to put the icons on same level?...
![]()
The world is ours... ° ÂLtø FøRø °
That would require a code modification and I am no help there. I will flag this for one of the devs.
The Forum Hosting - Forum Hosting from the Forum Experts
Thank you again Michael, I´ll be wainting... you´re so gentile =D
The world is ours... ° ÂLtø FøRø °
Hello,
you can find the main icons in functions_vbseo_seo.php file:
you can reorder them if you want.PHP Code:if (VBSEO_BOOKMARK_FURL && !strstr($bmarkurlist, 'furl.net'))
array_unshift($vbseo_bmlist, array('http://www.furl.net/storeIt.jsp?u=%url%&t=%title%', 'images/vbseo/furl.gif', $vbphrase['vbseo_add_to_furl'], $vbphrase['vbseo_add_to_furl_post'], $vbphrase['vbseo_add_to_furl_blog']));
if (VBSEO_BOOKMARK_TECHNORATI && !strstr($bmarkurlist, 'technorati.com'))
array_unshift($vbseo_bmlist, array('http://technorati.com/faves/?add=%url%', 'images/vbseo/technorati.gif', $vbphrase['vbseo_add_to_technorati'], $vbphrase['vbseo_add_to_technorati_post'], $vbphrase['vbseo_add_to_technorati_blog']));
... etc
You can also add new bookmarking icons in vBSEO CP -> Social bookmarking.
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Thanks Oleg! Always answering me!.. the last... How to fit the icons on same line like the pic attached?
The world is ours... ° ÂLtø FøRø °
They should be on the same line by default (like here on vbseo.com).
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Well, I add this code:
Working... later changin the "vbphrases" but dont renognice the order....PHP Code:if (VBSEO_BOOKMARK_FACEBOOK && !strstr($bmarkurlist, 'facebook.com'))
array_unshift($vbseo_bmlist, array('http://www.facebook.com/share.php?u=%url%', 'images/misc/bookmarksite_facebook.gif', $vbphrase['vbseo_add_to_furl'], $vbphrase['vbseo_add_to_furl_post'], $vbphrase['vbseo_add_to_furl_blog']));
if (VBSEO_BOOKMARK_FURL && !strstr($bmarkurlist, 'furl.net'))
array_unshift($vbseo_bmlist, array('http://www.furl.net/storeIt.jsp?u=%url%&t=%title%', 'images/vbseo/furl.gif', $vbphrase['vbseo_add_to_furl'], $vbphrase['vbseo_add_to_furl_post'], $vbphrase['vbseo_add_to_furl_blog']));
if (VBSEO_BOOKMARK_TECHNORATI && !strstr($bmarkurlist, 'technorati.com'))
array_unshift($vbseo_bmlist, array('http://technorati.com/faves/?add=%url%', 'images/vbseo/technorati.gif', $vbphrase['vbseo_add_to_technorati'], $vbphrase['vbseo_add_to_technorati_post'], $vbphrase['vbseo_add_to_technorati_blog']));
if (VBSEO_BOOKMARK_DELICIOUS && !strstr($bmarkurlist, 'del.icio.us'))
array_unshift($vbseo_bmlist, array('http://del.icio.us/post?url=%url%&title=%title%', 'images/vbseo/delicious.gif', $vbphrase['vbseo_add_to_delicious'], $vbphrase['vbseo_add_to_delicious_post'], $vbphrase['vbseo_add_to_delicious_blog']));
if (VBSEO_BOOKMARK_DIGG && !strstr($bmarkurlist, 'digg.com'))
array_unshift($vbseo_bmlist, array('http://digg.com/submit?phase=2&url=%url%&title=%title%', 'images/vbseo/digg.gif', $vbphrase['vbseo_add_to_digg'], $vbphrase['vbseo_add_to_digg_post'], $vbphrase['vbseo_add_to_digg_blog']));
}
The world is ours... ° ÂLtø FøRø °
If you want to change the order, you should replace entries in the code (the entres at the top will be on the right side).
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!