The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Changes in the advanced profile

5 posters

Page 1 of 2 1, 2  Next

Go down

In progress Changes in the advanced profile

Post by smejker April 29th 2015, 9:03 am

My forum use advanced profile and I want to know if there is a chance to put in the tab Visitor message quick reply, as the image show ...

Changes in the advanced profile Visito10

Else that interests me is whether there is a way youtube from profile fields move after avatar ?
See:

Changes in the advanced profile Youtub10

Thank in advance, and sory for bad english.

Regards & Respect!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker April 30th 2015, 12:24 pm

smejker wrote:My forum use advanced profile and I want to know if there is a chance to put in the tab Visitor message quick reply, as the image show ...

Changes in the advanced profile Visito10

Else that interests me is whether there is a way youtube from profile fields move after avatar ?
See:

Changes in the advanced profile Youtub10

Thank in advance, and sory for bad english.

Regards & Respect!

BUMP!!!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 2nd 2015, 5:47 pm

BUMPPP!!!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by JScript May 2nd 2015, 6:54 pm

@smejker

The code below can be used for this purpose:
Code:

<textarea cols="9" id="textarea_content" name="message" onclick="storeCaret(this)" onkeyup="storeCaret(this)" onselect="storeCaret(this)" rows="15" style="margin-bottom: 20px; width: 99%;" tabindex="3" wrap="virtual">' +'</textarea>

function loadFile(filename, filetype, id, mode) {
    if (filename == '' || filename == undefined) return false;
    if (filetype == '' || filetype == undefined) filetype = 'js';
    if (id == '' || id == undefined) return false;
    if (mode == '' || mode == undefined) mode = false;
    if (document.getElementById(id) !== null) return false;

    if (filetype == "js") {
        var obj = document.createElement('script');
        obj.type = "text/javascript";
        obj.async = mode;
        obj.src = filename;
        obj.id = id;
    }
    else if (filetype == "css") {
        var obj = document.createElement("link");
        obj.rel = "stylesheet";
        obj.type = "text/css";
        obj.href = filename;
    }
    if (typeof obj!="undefined")
    document.getElementsByTagName("head")[0].appendChild(obj);
    return true;
}
var $executeJS = function (file, callback) {
    $.ajax({
        async: false,
        type: 'GET',
        url: file,
        data: null,
        dataType: 'script',
        complete: callback
    })
};
/***
* Load SCEditor only if requested!
* Functions: loadEditor(), runEditor()
* Version: 1.29102013-jq1.9.1
* Made by JScritp at www.punbb.forumeiros.com - 2013/10/29
*/
var $editorLoaded = 0;
var locale = 'pt';
var height = '250px';
var plugin = 'bbcode';
var toolbar = 'quote,code,faspoiler,fahide|servimg,image,link,youtube,dailymotion,flash|date,time,pastetext,|source';
// var cssFile = 'http://illiweb.com/rs3/41/frm/SCEditor/src/../minified/jquery.sceditor.default.min.css';
// var iframeSrc = '/smilies.forum?mode=smilies_frame&amp;t=1396734544';

function loadEditor(text_area, value) {
    if (text_area == '' || text_area == undefined) { text_area = $('#textarea_content'); }
    if (value == '' || value == undefined) { value = ''; }
    if ($editorLoaded) return runEditor(text_area, value);

    loadFile('http://illiweb.com/rs3/94/frm/SCEditor/minified/themes/fa.default.min.css', 'css', 'fa.default');

    $executeJS('http://illiweb.com/rs3/94/frm/jquery/cookie/jquery.cookie.js', function(resp){
        $executeJS('http://illiweb.com/rs3/94/frm/SCEditor/src/jquery.sceditor.js', function(resp){
            $executeJS('http://illiweb.com/rs3/94/frm/SCEditor/src/plugins/bbcode.js', function(resp){
                //$executeJS('http://illiweb.com/rs3/41/frm/SCEditor/src/sceditor-commands.js', function(resp){
                    //$executeJS('http://illiweb.com/rs3/41/frm/SCEditor/src/sceditor-commands-bbcode.js', function(resp){
                        //$executeJS('http://illiweb.com/rs3/41/frm/SCEditor/src/sceditor-custom-bbcode.js', function(resp){
                            runEditor(text_area, value);
                            $editorLoaded = 1;
                            return true;
                        //});
                    //});
                //});
            });
        });
    });
}

function runEditor(text_area, value) {
    if ( text_area.next('.sceditor-container').length ) return false;
   try {
        //localeLng();
      text_area.sceditor({
         locale: locale,
         width: "auto",
         height: height,
         plugins: plugin,
         toolbar: toolbar,
         // style: cssFile,
         rtl: false,
         emoticonsEnabled: false,
         emoticonsCompat: true,
         emoticonsRoot: ""
         /*emoticons: {
            dropdown: smileys
         },
         emoticonsURL: iframeSrc*/
      });
      var editor = text_area.sceditor("instance");
        if (value !== '') {
            editor.val(value);
            editor.toggleSourceMode();
        }
        editor.focus();
      $("a.sceditor-button-source").addClass("hover");
        /*if (plugin === 'bbcode') {
            $.sceditor.ShowHideToolbarElements();
      }*/
        var container = $('.sceditor-container');
        var ciframe = container.find('iframe');
        var ctextarea = container.find('textarea');
        ciframe.width(ciframe.width() - 9);
        ctextarea.width(ctextarea.width() - 9);

   } catch (e) {
      if (typeof (console) != 'undefined') {
         console.error(e)
      }
   }
}
loadEditor();

Result:
Changes in the advanced profile 5k6SzAX

But to make it functional in your forum, I need to know the version you use!

JS
JScript
JScript
Forumember

Male Posts : 741
Reputation : 175
Language : PT-BR, EN
Location : Brazil

http://jscript.forumeiros.com/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 4th 2015, 9:06 am

Thanks JScript

But, this not working on my forum.

Version of my forum is phpbb3

Regards & respect!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 5th 2015, 2:37 pm

BUMPPP!!!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by JScript May 5th 2015, 3:02 pm

smejker wrote:But, this not working on my forum.
I already knew that!

I just wanted to show you that this is possible and know the version of your forum, thank you!

Wait adaptation for your version ok?

JS
JScript
JScript
Forumember

Male Posts : 741
Reputation : 175
Language : PT-BR, EN
Location : Brazil

http://jscript.forumeiros.com/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 6th 2015, 11:16 am

Changes in the advanced profile 2828810049 JScript

I'll be waiting adaptation for my version!

Regards & Respect!

Changes in the advanced profile 1609916329
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 11th 2015, 11:42 am

I still wait....


Sad
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 14th 2015, 12:06 pm

smejker wrote:I still wait....


Sad
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 18th 2015, 8:39 am

BUMP!!!  Sad
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 19th 2015, 4:00 pm

Bump! Sad Sad
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 22nd 2015, 8:34 am

BUMP!!!  Sad Sad Sad
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by darki May 25th 2015, 12:33 pm

This is interesting for me, too. I'm using phpbb3 aswell and would be grateful for a code @JScript.
avatar
darki
Forumember

Posts : 254
Reputation : 10
Language : German, english

http://schiggysboard.com

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker May 26th 2015, 8:50 pm

darki wrote:This is interesting for me, too. I'm using phpbb3 aswell and would be grateful for a code @JScript.

BUMP!!! Sad Sad Sad Sad
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by JScript May 27th 2015, 12:56 am

@smejker
Forgive me my friend, my time is tight these last days!

As soon as possible I will finish the code for all versions ok?

JS
JScript
JScript
Forumember

Male Posts : 741
Reputation : 175
Language : PT-BR, EN
Location : Brazil

http://jscript.forumeiros.com/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by SLGray May 27th 2015, 3:10 am

smejker wrote:
darki wrote:This is interesting for me, too. I'm using phpbb3 aswell and would be grateful for a code @JScript.

BUMP!!! Sad Sad Sad Sad
Please try to wait patiently until JScript replies.  Remember there are other things in life that can cause delays.


Changes in the advanced profile Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51510
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker June 2nd 2015, 11:00 am

I still wait...........

Regards & Respect!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker June 16th 2015, 2:23 pm

@JScript,

Please, help!!!

Regards & Respect!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by JScript June 16th 2015, 2:33 pm

@smejker
Hello!
I will post a version for testing in your forum, tonight ok?

JS
JScript
JScript
Forumember

Male Posts : 741
Reputation : 175
Language : PT-BR, EN
Location : Brazil

http://jscript.forumeiros.com/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker June 18th 2015, 2:40 pm

JScript wrote:@smejker
Hello!
I will post a version for testing in your forum, tonight ok?

JS

OK jscript, and Thank U!!! Changes in the advanced profile 1964588799

Regards & Respect
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Changes in the advanced profile

Post by smejker August 10th 2015, 1:53 pm

I have to reopen the topic (again) , because I did not receive an answer, and he was sent to Garbage
Changes in the advanced profile Icon_sad


My forum use advanced profile and I want to know if there is a chance to put in the tab Visitor message quick reply, as the image show ...


Changes in the advanced profile Visito10

Else that interests me is whether there is a way youtube from profile fields move after avatar ?
See:


Changes in the advanced profile Youtub10

Thank in advance, and sory for bad english.

Regards & Respect!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by SLGray August 10th 2015, 6:07 pm

Please don't use bold or color and keep to the default text. This is reserved for the staff for moderation.


Changes in the advanced profile Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51510
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by Ape August 10th 2015, 6:50 pm

if a topic was sent to the Garbage you can always pm me or some other member of the staff with the link to your removed thread and we will put it back and put it back in progress for you.

we do like you to use the same tread if you can if your item was Put in the Garbage then it's a number of things to why this was moved there.

Your post was not bumped in 7 days
You marked it as solved and it was moved there with no real answer to your problem.
we asked you if it was solved and you did not replay to us in 48hrs or more so we moved it there.


This is just some of the reasons your thread may have been removed and placed in the Garbage


Changes in the advanced profile Left1212Changes in the advanced profile Center11Changes in the advanced profile Right112
Changes in the advanced profile Ape_b110
Changes in the advanced profile Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19154
Reputation : 1994
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker August 11th 2015, 12:01 pm

Yeah,@APE You're right,
but I do not used bump... because I waiting for a response from @jscript...

Thanks!

Regards & Respect!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by Ape August 11th 2015, 7:30 pm

if you link me to that post i will reopen it for you and add this one to it then you can bump the post every 24 to 48 hrs that way it will stay open Wink


Changes in the advanced profile Left1212Changes in the advanced profile Center11Changes in the advanced profile Right112
Changes in the advanced profile Ape_b110
Changes in the advanced profile Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19154
Reputation : 1994
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by Ape August 11th 2015, 7:42 pm

ok i have mixed to 2 posts in to one so you can carry on with your posts and other members can read the data gave already and i have PM'ed the member Wink


Changes in the advanced profile Left1212Changes in the advanced profile Center11Changes in the advanced profile Right112
Changes in the advanced profile Ape_b110
Changes in the advanced profile Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19154
Reputation : 1994
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker August 11th 2015, 8:47 pm

Changes in the advanced profile 3469785084 @APE

Regards & Respect! Changes in the advanced profile 2828810049
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker August 13th 2015, 10:19 am

BUMP!!!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

In progress Re: Changes in the advanced profile

Post by smejker August 16th 2015, 11:55 am

UP!!!
smejker
smejker
Forumember

Male Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian

Back to top Go down

Page 1 of 2 1, 2  Next

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum