Recent Posts

haikuwu
aliasCooked Bread
pronounsThey / Him
623written posts
Toastyearned bits
offlinecurrently
Toasty
Part of the Furniture
Toasty Avatar
>w<
Hi y'all! I have finally completed with the setup of my site. With that, I need to start advertising, and since I suck at creating graphics, I knew where to go~ :>

Graphic Type: Advertisement and Affiliate
Dimensions: For the advertisement I do not care, and for the affiliate I would like the standard dimensions. Correct me if I'm wrong but I think it's 88x31
Text: Wherever The Wind Blows
Sub-text (optional): A Mixed Animanga Roleplay with a Twist
Images: This will mostly be up to your creative freedom, but here is a reference to the structure of the city. Feel free to use it if you want, but please cut out the "Boston 2076" flag <3
Theme: I would like a soft, vintage vibe with lots of blues and browns, if possible.

Thank you very much if you take on my request!
haikuwu
aliasCooked Bread
pronounsThey / Him
623written posts
Toastyearned bits
offlinecurrently
Toasty
Part of the Furniture
Toasty Avatar
>w<
Sharp Avatar
I hope this helps, I apologize if I misunderstood or if this isn't helpful. I would guess your last custom field is hobby or something which is pulling the word "writer" into your link field and proboards will read that as an empty value and produce your current page. An if statement should help to pick out the right custom field. The way i've seen link wrapping done is with two if statements: one to open the link and another to close it, which is ideal when you don't want the object to go away when the custom field is empty.


//Check each custom field. If one is called Application, open up the beginning of a link to wrap around your span/div/whatever. If not the code will skip this statement.

{foreach $[user.mini_custom_field]}{if $[user.mini_custom_field.name] == "Application"}<a href="$[user.mini_custom_field.value]">{/if}{/foreach}  


//Create the contents coded in the class around the word Application. This will populate even if the statement above it is not true, but it will not have a link around it. This means you can style it to appear differently if it isn't linked. (.longThing {} vs .longThing a {})

<span class="longThing">Application</span>

//If the first statement was true, then this statement will be true as well. This tells the link to close.

{foreach $[user.mini_custom_field]}{if $[user.mini_custom_field.name] == "Application"}</a>{/if}{/foreach}
Sorry for the late reply, but it worked! Thank you very much!