UKBusinessLive
02-14-2009, 10:00 PM
https://vborg.vbsupport.ru/external/2009/02/70.png
UKBL ~ Selling on Ebay Link in Postbit
Want to allow members the choice of adding an ebay logo to their postbit?? prevent unindended spamming of threads with members ads??? Well now you can ;)
https://vborg.vbsupport.ru/external/2009/02/71.png
A simple to do Ebay logo in your Postbit so Members can advertise their ebay goods for sale
Just go to your admin cp and make a User Custom profile field Called "My ebay Sales"
and add this to the description = Add your Ebay user name below to show other members what you have for sale
Make a note of the field number as this is what we are going to add to our Code. For example, we'll use Field10 ;)
Your User CP should now have a Field like this
https://vborg.vbsupport.ru/external/2009/02/72.png
Add this template conditional, to prevent guest and non registered from seeing your link, Replace the X's with your UserGroup ID
<if condition="is_member_of($bbuserinfo, X, X, X)">
The Code goes here !!
</if>
So our code should look something along the lines of this, Remember you need to replace the Red parts with your own information
<if condition="is_member_of($bbuserinfo, 6, 7, 9)">
<if condition="$post['field10']">
<a href="http://shop.ebay.com/merchant/$post[field10]" target="_blank" rel="nofollow" title="Click to View my Sales">
<img alt="My Ebay Sales" border="0" src="http://www.yourforum.com/images/misc/ebay.png" border="0"/>
</if></if>
Then we need to Upload our ebay logo to our forums directory images/misc folder and replace the image url in the code with our own url.
https://vborg.vbsupport.ru/external/2009/02/73.png
Now to add our Code
In template postbit_legacy or postbit:
find
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]
and below it add your code
<if condition="is_member_of($bbuserinfo, 6, 7, 9)">
<if condition="$post['field10']">
<a href="http://shop.ebay.com/merchant/$post[field10]" target="_blank" rel="nofollow" title="Click to View my Sales">
<img alt="My Ebay Sales" border="0" src="http://www.yourforum.com/images/misc/ebay.png" border="0"/>
</if></if>
Thats all there is to it and now members can if they want add the ebay logo to their posbit and advertises their goods for sale, without spamming :D
Enjoy
Click installed if you use :p
UKBL ~ Selling on Ebay Link in Postbit
Want to allow members the choice of adding an ebay logo to their postbit?? prevent unindended spamming of threads with members ads??? Well now you can ;)
https://vborg.vbsupport.ru/external/2009/02/71.png
A simple to do Ebay logo in your Postbit so Members can advertise their ebay goods for sale
Just go to your admin cp and make a User Custom profile field Called "My ebay Sales"
and add this to the description = Add your Ebay user name below to show other members what you have for sale
Make a note of the field number as this is what we are going to add to our Code. For example, we'll use Field10 ;)
Your User CP should now have a Field like this
https://vborg.vbsupport.ru/external/2009/02/72.png
Add this template conditional, to prevent guest and non registered from seeing your link, Replace the X's with your UserGroup ID
<if condition="is_member_of($bbuserinfo, X, X, X)">
The Code goes here !!
</if>
So our code should look something along the lines of this, Remember you need to replace the Red parts with your own information
<if condition="is_member_of($bbuserinfo, 6, 7, 9)">
<if condition="$post['field10']">
<a href="http://shop.ebay.com/merchant/$post[field10]" target="_blank" rel="nofollow" title="Click to View my Sales">
<img alt="My Ebay Sales" border="0" src="http://www.yourforum.com/images/misc/ebay.png" border="0"/>
</if></if>
Then we need to Upload our ebay logo to our forums directory images/misc folder and replace the image url in the code with our own url.
https://vborg.vbsupport.ru/external/2009/02/73.png
Now to add our Code
In template postbit_legacy or postbit:
find
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]
and below it add your code
<if condition="is_member_of($bbuserinfo, 6, 7, 9)">
<if condition="$post['field10']">
<a href="http://shop.ebay.com/merchant/$post[field10]" target="_blank" rel="nofollow" title="Click to View my Sales">
<img alt="My Ebay Sales" border="0" src="http://www.yourforum.com/images/misc/ebay.png" border="0"/>
</if></if>
Thats all there is to it and now members can if they want add the ebay logo to their posbit and advertises their goods for sale, without spamming :D
Enjoy
Click installed if you use :p