Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help note down stuff linked to moving to tapatalk
#1
Hi everyone

if you notice things that are not functioning or not well enough after the move, if you notice strange things, if you have ideas how to improve something..... please make a note for me here.
It would be good if you checked whether I have it already on my to do list here: tapatalk-to-do-t6904.html and if not then note it down in this thread.

If you see something on the list there that you can help with or have an answer to... please quote the relevant part and give us the solution or advice here in this thread as well.

Thank you
Reply
#2
Per Watergaze request...

The way to put links into words in your text, (rather than having to write out the link) is to write the following into your post...

Code: Select all[url="http://www.yourlinkhere.com"]clickable text[/url]

Make sure you include the "http://" part of the link or it will not work correctly.

There's a lot you can do with BBCode in your posts. Here's a beginner's guide to get you started with it. Enjoy. Smile
Reply
#3
ah I see, before there was "link" and now one needs to write "url".

But the button we have in the text editor seems a lot less useful than the one at the old yuku platform.

Thnx JJ.
Reply
#4
The guide I linked in the previous post will probably cover most of what you'll want to do when using text in these forums, but there's a few things it leaves out. For starters, how to change your font color. The following code accomplishes this...
Code: Select allStuff you want to say in red.
This produces the result...
Stuff you want to say in red.

In addition to red, you can use any of the colornames listed at this site or you can use hexidecimal color codes.

Background colors is a bit trickier. A lot of boards don't seem to support it. We may have to make a custom bbcode in order to have it.
Reply
#5
Actually you should all ignore the guide I linked above and use this one instead. It's easier to read, more accurate, official and all that.
Reply
#6
I'm glad you found something useful. It would be great if you or someone other than me made a short guide to how to make these things so that our members can use it and not need to go google everything. - if you remember I had a post like that before in the old Support Forum.

As far as custom bbcode is concerned, I do not know how to do that or if it is even possible.
Reply
#7
You mean something like this?
The link I posted above wrote:
Code: Select allIntroduction

What is BBCode?
BBCode is a special implementation of HTML. Whether you can actually use BBCode in your posts on the forum is determined by the administrator. In addition you can disable BBCode on a per post basis via the posting form. BBCode itself is similar in style to HTML, tags are enclosed in square brackets [ and ] rather than < and > and it offers greater control over what and how something is displayed. Depending on the template you are using you may find adding BBCode to your posts is made much easier through a clickable interface above the message area on the posting form. Even with this you may find the following guide useful.
Text Formatting

How to create bold, italic and underlined text
BBCode includes tags to allow you to quickly change the basic style of your text. This is achieved in the following ways:
To make a piece of text bold enclose it in , e.g.

Hello

will become
Hello
Code: Select allFor underlining use , for example:

Good Morning

becomes
Good Morning
Code: Select allTo italicise text use , e.g.

This is Great!

would give
This is Great!
Code: Select allHow to change the text colour or size
To alter the colour or size of your text the following tags can be used. Keep in mind that how the output appears will depend on the viewers browser and system:
Changing the colour of text is achieved by wrapping it in . You can specify either a recognised colour name (eg. red, blue, yellow, etc.) or the hexadecimal triplet alternative, e.g. #FFFFFF, #000000. For example, to create red text you could use:

Hello!

or

Hello!

Both will output
Hello!
Code: Select allChanging the text size is achieved in a similar way using [size=][/size]. This tag is dependent on the template the user has selected but the recommended format is a numerical value representing the text size in percent, starting at 20 (very small) through to 200 (very large) by default. For example:

SMALL

will generally be
SMALL
Code: Select allwhereas:

HUGE!

will be
HUGE!
Code: Select allCan I combine formatting tags?
Yes, of course you can, for example to get someones attention you may write:

LOOK AT ME!

this would output
LOOK AT ME!
Code: Select allWe don’t recommend you output lots of text that looks like this though! Remember it is up to you, the poster, to ensure tags are closed correctly. For example the following is incorrect:

This is wrong
Quoting and outputting fixed-width text

Quoting text in replies
There are two ways you can quote text, with a reference or without.
When you utilise the Quote function to reply to a post on the board you should notice that the post text is added to the message window enclosed in a block. This method allows you to quote with a reference to a person or whatever else you choose to put! For example to quote a piece of text Mr. Blobby wrote you would enter:

Mr. Blobby Wrote:The text Mr. Blobby wrote would go here

The resulting output will automatically add "Mr. Blobby wrote:" before the actual text. Remember you must include the quotation marks "" around the name you are quoting, they are not optional.
The second method allows you to blindly quote something. To utilise this enclose the text in
Quote:
tags. When you view the message it will simply show the text within a quotation block.
Outputting code or fixed width data
If you want to output a piece of code or in fact anything that requires a fixed width, e.g. Courier type font you should enclose the text in (code) tags, e.g.

(code)echo "This is some code"; (/code) ***square brackets changed to curved brackets here for formatting reasons; when using code tags, make sure to use square brackets just like you would in all the other tags - Julio***

All formatting used within code tags is retained when you later view it. PHP syntax highlighting can be enabled using (code=php)(/code) and is recommended when posting PHP code samples as it improves readability.
Generating lists

Creating an Unordered list
BBCode supports two types of lists, unordered and ordered. They are essentially the same as their HTML equivalents. An unordered list outputs each item in your list sequentially one after the other indenting each with a bullet character. To create an unordered list you use
and define each item within the list using [*]. For example to list your favourite colours you could use:
  • Red
  • Blue
  • Yellow

This would generate the following list:

Red
Blue
Yellow

Code: Select allAlternatively you can specify the list’s bullet style using [list=disc][/list], [list=circle][/list], or [list=square][/list].

Creating an Ordered list
The second type of list, an ordered list, gives you control over what is output before each item. To create an ordered list you use
to create a numbered list or alternatively
for an alphabetical list. As with the unordered list, items are specified using [*]. For example:

  1. Go to the shops
  2. Buy a new computer
  3. Swear at computer when it crashes

will generate the following:

Go to the shops
Buy a new computer
Swear at computer when it crashes

Code: Select all
  1. The first possible answer
  2. The second possible answer
  3. The third possible answer

giving

The first possible answer
The second possible answer
The third possible answer

Code: Select all
  1. The first possible answer
  2. The second possible answer
  3. The third possible answer

giving

The first possible answer
The second possible answer
The third possible answer

Code: Select all
  1. The first possible answer
  2. The second possible answer
  3. The third possible answer

giving

The first possible answer
The second possible answer
The third possible answer

Code: Select all
  1. The first possible answer
  2. The second possible answer
  3. The third possible answer

giving

The first possible answer
The second possible answer
The third possible answer

Code: Select allCreating Links

Linking to another site
phpBB BBCode supports a number of ways of creating URIs (Uniform Resource Indicators) better known as URLs.
The first of these uses the [url=][/url] tag, whatever you type after the = sign will cause the contents of that tag to act as a URL. For example to link to phpBB.com you could use:

Visit phpBB!

This would generate the following link,
Visit phpBB!
Code: Select allPlease notice that the link opens in the same window or a new window depending on the users browser preferences.
If you want the URL itself displayed as the link you can do this by simply using:

https://www.phpbb.com/

This would generate the following link, https://www.phpbb.com/
Additionally, phpBB features something called Magic Links, this will turn any syntactically correct URL into a link without you needing to specify any tags or even the leading http://. For example typing www.phpbb.com into your message will automatically lead to www.phpbb.com being output when you view the message.
The same thing applies equally to email addresses, you can either specify an address explicitly for example:

no.one@domain.adr

which will output
no.one@domain.adr
Code: Select allor you can just type no.one@domain.adr into your message and it will be automatically converted when you view.
As with all the BBCode tags you can wrap URLs around any of the other tags such as [img][/img] (see next entry), , etc. As with the formatting tags it is up to you to ensure the correct open and close order is following, for example:

[Image: url%5D]

is not correct which may lead to your post being deleted so take care.
Showing images in posts

Adding an image to a post
phpBB BBCode incorporates a tag for including images in your posts. Two very important things to remember when using this tag are: many users do not appreciate lots of images being shown in posts and secondly the image you display must already be available on the internet (it cannot exist only on your computer for example, unless you run a webserver!). To display an image you must surround the URL pointing to the image with [img][/img] tags. For example:

[Image: 160x52.png]

As noted in the URL section above you can wrap an image in a [url]
tag if you wish, e.g.

[Image: 160x52.png]

would generate:


Code: Select allAdding attachments into a post

Attachments can now be placed in any part of a post by using the new [attachment=][/attachment] BBCode, if the attachments functionality has been enabled by a board administrator and if you are given the appropriate permissions to create attachments. Within the posting screen is a drop-down box (respectively a button) for placing attachments inline.
Other matters

Can I add my own tags?
If you are an administrator on this board and have the proper permissions, you can add further BBCodes through the Custom BBCodes section.
Reply
#8
Don't just copy paste that web site. Duh... And surely not into this thread here. Big Grin
If nothing else one needs to make a post with a title of something that says inside one finds ways how to do things in posts (i dont think everyone knows what BBCODE is). And then there link those sites you find useful. - It is of no use to members in this thread as this one is not a guide to anything. It is for helping sort stuff and make stuff work related to the move.

Plus the way you quote is weird Tongue. One needs to scroll to the right in your quote. Why is that? Why not make it normal size?
And how do you make those code quotes?

But yes, the easy stuff is explained well on that site. Although when I used it to change my font size it still took me like 5-6 tries to find the size I wanted. Little timewasters...
Reply
#9
If you think giving bbcode is a waste of time then don't do it. I'm sure you can find something to help with. There is so much that needs to be done.. just pick something Smile.
You got mod buttons - sort the forums' threads. Go over hourglass forums... to check the restored threads... anything...

You'd be surprised though how many people used the WYSIWYG editor. Just go over to the support forums. People have been crying due to bbcode so much that yuku said they will try to bring back the WYSIWYG.

Actually, with the hourglass restored threads... maybe we should just move them to some part so we have them out of the way - but even that will make a mess cause no they are in the proper sections and it is often also easy to see when they are the same as another thread in that section. So, I honeslty dont know what would be the best other than just going over it one by one.

maybe you can help me find CSS for things I need. That would be super helpful.
Right now I want one to stop the letters on the index to appear one by one when one resizes the window.

Or you can suggest something. Tell me what you feel like you can manage and I will tell you if it is helpful Big Grin.
Reply
#10
Sorcery wrote: ↑<span class="timespan" title="3:39 PM - Jul 10, 2017">Jul 10, 2017</span>
Don't just copy paste that web site. Duh...
Don't reply to a post that gives a link to a guide to BBCode with a request that they post a guide to BBCode. Duh...
Sorcery wrote: And surely not into this thread here. Big Grin

Plus the way you quote is weird Tongue. One needs to scroll to the right in your quote. Why is that? Why not make it normal size?
I don't know why it turned out like that. I'm new to this board
sorcery wrote:
And how do you make those code quotes?
Scroll up.
sorcery wrote:But yes, the easy stuff is explained well on that site. Although when I used it to change my font size it still took me like 5-6 tries to find the size I wanted. Little timewasters...

Yep
Reply
#11
So, in this thread go stuff to help with the things wacking up and shifting due to the move to tapatalk.

The bbcode help would be in a separate thread in the Support Forum

You checking for me the embedding of codes was hekpful btw. thnx. Im glad I didnt have to go look for it. I feel like I am running from one place to the next without finishing thing.
I was moving Intro threads but then notice I dont have the same mod-tool in the Fresh Start section. So I went to admin panel to copy the permission that ALL section has. It didnt help. I cant figure it out. This sucks...

As far as TEAM work is concerned we need a different plan. I'm gonna write a different thread on this here. Cause I dunno if SW has access to that part. Before it would have been an easy check or fix, not now...
Reply
#12
JJ wrote:Scroll up. I did not find that info.
Reply
#13
Outputting code or fixed width data
If you want to output a piece of code or in fact anything that requires a fixed width, e.g. Courier type font you should enclose the text in (code) tags, e.g.

(code)echo "This is some code"; (/code) ***square brackets changed to curved brackets here for formatting reasons; when using code tags, make sure to use square brackets just like you would in all the other tags - Julio***
Reply
#14
ok thnx. it was a curiosity - I have never needed it before Wink
Reply
#15
Having to log in to view the forum makes this a cozy habitat.

Thanks, Julio, for the notice. Thanks to administrators for getting this place together again. I certainly appreciate the work you do !
Reply
#16
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)