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.

vbox7 by hotrofm

5 posters

Go down

Solved vbox7 by hotrofm

Post by smurfavr Fri Jun 09 2017, 11:41

I'm using a code to add a video sharing button to vbox7, but the code stopped working.
I have not made any changes to the admin panel.



Pressing the vbox7 button and adding a video link generates a code without quotation marks and can not display a video in the forum.
The code appears like this.
[table class=vbox7hotro][tr][td]ee70f0ca49[/td][/tr][/table]

It must be so.
The code must be quoted (""), but it is generated without them.
[table class=vbox7hotro][tr][td]ee70f0ca49[/td][/tr][/table]

vbox7 by hotrofm 9138629c


Why did you get this problem? Before the code worked without problems.


Code:
$(window).load(function() {
    $('.sceditor-group:last').append('<a title="vbox7 bbcode" class="sceditor-button sceditor-button-vbox7" style="text-indent: 0px;"><img src="http://i97.servimg.com/u/f97/16/34/78/03/p9lwnr10.png" ></a>');
    $('body').append('<div id="bbcodevbox7" style="display:none;position:absolute;z-index:50000;-moz-background-clip:padding;-moz-border-radius:2px;-moz-box-shadow:1px 2px 4px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-webkit-border-radius:2px;-webkit-box-shadow:1px 2px 4px rgba(0,0,0,.2);background:#fff;background-clip:padding-box;border:1px solid #ccc;border-radius:2px;box-shadow:1px 2px 4px rgba(0,0,0,.2);color:#333;line-height:1;padding:10px;position:absolute;z-index:4000"><input id="inputFieldvbox7" type="text"><br><input id="enterContentvbox7" type="submit" value="enter" style="margin-top: 5px;"></div>');
   
    $('.sceditor-button-vbox7').click(function() {
        if ($('#bbcodevbox7').css('display') == 'none') {
            var y = $('.sceditor-button-vbox7').offset().top +25;
            var x = $('.sceditor-button-vbox7').offset().left;
            $('#bbcodevbox7').show().css('top',y + 'px').css('left',x + 'px');
        }
        else $('#bbcodevbox7').hide();
    });
   
    $('#enterContentvbox7').click(function() {
        if ($('#inputFieldvbox7').val().length > 0) $('#text_editor_textarea').sceditor('instance').insertText('[table class=vbox7hotro][tr][td]' + $('#inputFieldvbox7').val(),'[/td][/tr][/table]');
        else $('#text_editor_textarea').sceditor('instance').insertText("[table class=vbox7hotro][tr][td]", "[/td][/tr][/table]");
        $('#inputFieldvbox7').val('');
        $('#bbcodevbox7').hide();
    });
   
    $('.sceditor-button:not(.sceditor-button-vbox7), .sceditor-container textarea, .sceditor-container vbox7').click(function() { $('#bbcodevbox7').hide() });
});
$(document).on('ready', function() {
$('.vbox7hotro td').each(function() {
var davhotrofmvbox7 = $(this).text();
$(this).prepend('<iframe width="560" height="315" src="https://www.vbox7.com/emb/external.php?vid=' + davhotrofmvbox7 + '" frameborder="0" allowfullscreen></iframe><style>.vbox7hotro{font-size: 0px;}</style>');
});
});


Last edited by smurfavr on Thu Jun 22 2017, 13:16; edited 2 times in total
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by skouliki Fri Jun 09 2017, 11:57

hello 

have you tried to communicate with the owner of that code?
skouliki
skouliki
Manager
Manager

Female Posts : 15030
Reputation : 1680
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Fri Jun 09 2017, 12:19

This is the author @vietkanpy There is a job and there is no time to visit the forum.

I wrote a private message but still did not respond.

http://www.hotrofm.net/t339-code-frame-bbcode-forumotion#1458
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by skouliki Fri Jun 09 2017, 12:52

sorry i really cant help 
the best thing is to wait for vietkanpy
skouliki
skouliki
Manager
Manager

Female Posts : 15030
Reputation : 1680
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by Guest Fri Jun 09 2017, 14:56

Hello,

Replace the code with:
Code:
$(window).load(function() {
    $('.sceditor-group:last').append('<a title="vbox7 bbcode" class="sceditor-button sceditor-button-vbox7" style="text-indent: 0px;"><img src="http://i97.servimg.com/u/f97/16/34/78/03/p9lwnr10.png" ></a>');
    $('body').append('<div id="bbcodevbox7" style="display:none;position:absolute;z-index:50000;-moz-background-clip:padding;-moz-border-radius:2px;-moz-box-shadow:1px 2px 4px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-webkit-border-radius:2px;-webkit-box-shadow:1px 2px 4px rgba(0,0,0,.2);background:#fff;background-clip:padding-box;border:1px solid #ccc;border-radius:2px;box-shadow:1px 2px 4px rgba(0,0,0,.2);color:#333;line-height:1;padding:10px;position:absolute;z-index:4000"><input id="inputFieldvbox7" type="text"><br><input id="enterContentvbox7" type="submit" value="enter" style="margin-top: 5px;"></div>');
 
    $('.sceditor-button-vbox7').click(function() {
        if ($('#bbcodevbox7').css('display') == 'none') {
            var y = $('.sceditor-button-vbox7').offset().top +25;
            var x = $('.sceditor-button-vbox7').offset().left;
            $('#bbcodevbox7').show().css('top',y + 'px').css('left',x + 'px');
        }
        else $('#bbcodevbox7').hide();
    });
 
    $('#enterContentvbox7').click(function() {
        if ($('#inputFieldvbox7').val().length > 0) $('#text_editor_textarea').sceditor('instance').insertText('[table class='vbox7hotro'][tr][td]' + $('#inputFieldvbox7').val(),'[/td][/tr][/table]');
        else $('#text_editor_textarea').sceditor('instance').insertText("[table class='vbox7hotro'][tr][td]", "[/td][/tr][/table]");
        $('#inputFieldvbox7').val('');
        $('#bbcodevbox7').hide();
    });
 
    $('.sceditor-button:not(.sceditor-button-vbox7), .sceditor-container textarea, .sceditor-container vbox7').click(function() { $('#bbcodevbox7').hide() });
});
$(document).on('ready', function() {
$('.vbox7hotro td').each(function() {
var davhotrofmvbox7 = $(this).text();
$(this).prepend('<iframe width="560" height="315" src="https://www.vbox7.com/emb/external.php?vid=' + davhotrofmvbox7 + '" frameborder="0" allowfullscreen></iframe><style>.vbox7hotro{font-size: 0px;}</style>');
});
});
avatar
Guest
Guest


Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Fri Jun 09 2017, 15:13

This code does not work at all. vbox7 by hotrofm 3222838165
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by Guest Fri Jun 09 2017, 15:18

I made a small mistake there(actually whoever made the code messed up quotes in strings). Anyway, see if this code works:
Code:
$(window).load(function() {
            $('.sceditor-group:last').append('<a title="vbox7 bbcode" class="sceditor-button sceditor-button-vbox7" style="text-indent: 0px;"><img src="http://i97.servimg.com/u/f97/16/34/78/03/p9lwnr10.png" ></a>');
            $('body').append('<div id="bbcodevbox7" style="display:none;position:absolute;z-index:50000;-moz-background-clip:padding;-moz-border-radius:2px;-moz-box-shadow:1px 2px 4px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-webkit-border-radius:2px;-webkit-box-shadow:1px 2px 4px rgba(0,0,0,.2);background:#fff;background-clip:padding-box;border:1px solid #ccc;border-radius:2px;box-shadow:1px 2px 4px rgba(0,0,0,.2);color:#333;line-height:1;padding:10px;position:absolute;z-index:4000"><input id="inputFieldvbox7" type="text"><br><input id="enterContentvbox7" type="submit" value="enter" style="margin-top: 5px;"></div>');
         
            $('.sceditor-button-vbox7').click(function() {
                if ($('#bbcodevbox7').css('display') == 'none') {
                    var y = $('.sceditor-button-vbox7').offset().top +25;
                    var x = $('.sceditor-button-vbox7').offset().left;
                    $('#bbcodevbox7').show().css('top',y + 'px').css('left',x + 'px');
                }
                else $('#bbcodevbox7').hide();
            });
         
            $('#enterContentvbox7').click(function() {
                if ($('#inputFieldvbox7').val().length > 0) $('#text_editor_textarea').sceditor('instance').insertText('[table class="vbox7hotro"][tr][td]' + $('#inputFieldvbox7').val(),'[/td][/tr][/table]');
                else $('#text_editor_textarea').sceditor('instance').insertText("[table class='vbox7hotro'][tr][td]", "[/td][/tr][/table]");
                $('#inputFieldvbox7').val('');
                $('#bbcodevbox7').hide();
            });
         
            $('.sceditor-button:not(.sceditor-button-vbox7), .sceditor-container textarea, .sceditor-container vbox7').click(function() { $('#bbcodevbox7').hide() });
        });
        $(document).on('ready', function() {
        $('.vbox7hotro td').each(function() {
        var davhotrofmvbox7 = $(this).text();
        $(this).prepend('<iframe width="560" height="315" src="https://www.vbox7.com/emb/external.php?vid=' + davhotrofmvbox7 + '" frameborder="0" allowfullscreen></iframe><style>.vbox7hotro{font-size: 0px;}</style>');
        });
        });
avatar
Guest
Guest


Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Fri Jun 09 2017, 15:25

Thanks Now works fine. What is the problem with the original code?
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by Guest Fri Jun 09 2017, 15:36

The code was simply inserting the text without quotes. That was the way it was made to work.
avatar
Guest
Guest


Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Fri Jun 09 2017, 15:59

@Wolfuryo @vietkanpy
Can you make the code by adding a video to be displayed immediately in a theme? Right now I need to refresh the page to display the live.
Adding a video from youtube is displayed right away without refreshing the page.

vbox7 by hotrofm TEST2NFs76hY
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by Guest Fri Jun 09 2017, 16:39

I don't understand what you exactly want. Maybe a screenshot will help...
avatar
Guest
Guest


Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Fri Jun 09 2017, 16:47

I've given a gif photo in the front post.
When I put video from vbox7 I need to refresh a page to show it. When I put video from YouTube, it appears right away.
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by vietkanpy Thu Jun 15 2017, 09:50

Smile sorry Smile solved? you want replay in topic play video. Smile because use code replquick. delete code quickreply or edit code Smile.

Code:
$(document).on('ready', function() {
    $('.vbox7hotro td').each(function() {
        var davhotrofmvbox7 = $(this).text();
        $(this).prepend('<iframe width="560" height="315" src="https://www.vbox7.com/emb/external.php?vid=' + davhotrofmvbox7 + '" frameborder="0" allowfullscreen></iframe><style>.vbox7hotro{font-size: 0px;}</style>');
    });
});

code in code quickreply
vietkanpy
vietkanpy
Forumember

Male Posts : 89
Reputation : 33
Language : vietnam

http://benhxahoivn.com/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Thu Jun 15 2017, 12:43

1. I added the code at the bottom, but it still does not work.
2. By adding a video and showing two video clips, but one gives it as a mistake.
vbox7 by hotrofm RtrtrJPGD571yTQ

Code:
console.log('//-Written by Chalo ------ Open Source 2014-2016 -----//');
console.log('//--------- http://www.opensourcephpbb3.com ----------//');
console.log('//------------------- Version: 1.5.2 -------------------//');
var os = {
    lang: {
        success_reply: 'Съобщението е изпратено успешно', // <--- change this text exactly like is display in your language board
        flood: 'Flood control is active on this forum, please wait 10 second(s) before replying or posting',
        newpost: 'A new message has been posted',
        error_reply: 'Опитай пак',
        words_reply: 'Съобщението трябва да съдържа поне 5 знака',
        button_send_reply: 'Изпраща се...',
        notice_original: 'Няма предварително зададен текст',
        wait_notice: 'Съобщението се изпраща.',
        color_a: 'linear-gradient(to bottom, #febbbb 0%,#fe9090 45%,#ff5c5c 100%)',
        color_b: 'linear-gradient(to bottom, #ffaf4b 0%,#ff920a 100%)',
        color_c: 'linear-gradient(to bottom, #87e0fd 0%,#53cbf1 40%,#05abe0 100%)',
        color_d: 'linear-gradient(to bottom, #ff3019 0%,#cf0404 100%)',
        color_e: 'linear-gradient(to bottom, #d2ff52 0%,#91e842 100%)'
    },
    length_reply: 5, //min letters in the textarea before reply
    time: 3500,
    init: function() {
        os.isTheme = /\/t\d+/g.test(window.location.pathname);
        os.phpbb2 = document.getElementsByClassName('bodylinewidth').length;
        os.phpbb3 = document.getElementById('phpbb');
        os.invision = document.getElementById('ipbwrapper');
        os.punbb = document.getElementById('pun-intro');
        os.form_reply = document.forms.post;
        os.button_reply = os.form_reply.post;
        os.button_value_reply = os.form_reply.post.value;
        os.textarea = os.form_reply.message;
        os.action_reply = os.form_reply.action;
        os.isTheme && os.post();
    },
    notice_div: function(c, f) {
        var a, b, d, e, g;
        g = document.getElementsByClassName('notice_reply');
        b = document.getElementsByClassName('sceditor-group')[0];
        d = b.parentNode;
        a = !g.length ? document.createElement('DIV') : g[0];
        e = 'height:20px;line-height: 1.5;border-radius: 3px; text-shadow: 0 1px rgba(255, 255, 255, 0.46);text-align:center';
        !g.length && (a.classList.add('notice_reply'), a.setAttribute('style', e), d.insertBefore(a, b));
        a.style.display = 'block';
        a.innerHTML = 'undefined' == typeof c ? os.lang.notice_original : c;
        a.style.background = 'undefined' == typeof f ? os.lang.color_a : f;
        setTimeout(function() {
            a.style.display == 'block' && (a.style.display = 'none')
        }, os.time)
    },
    post: function() {
        var c, h, a, d, b, v, i, x, y, z;
        h = os.action_reply;
        os.form_reply && (os.button_reply.onclick = function() {
            return os.sceditor = $(os.textarea).sceditor('instance'), os.sceditor.updateOriginal(), z = document.getElementsByClassName('new_ajax_post'), z.length && z[0].classList.remove('new_ajax_post'), os.sceditor.val().length > os.length_reply ? (os.button_reply.value = os.lang.button_send_reply, os.XML(os.serialize(os.form_reply) + '&post=1&prevent_post=1', h, function(e) {
                for (x = e.responseXML, y = x.getElementById(os.phpbb2 ? 'page-body' : 'main'), a = y.innerHTML.indexOf(os.lang.success_reply), b = y.innerHTML.indexOf(os.lang.flood), v = x.getElementsByTagName('a'), i = 0; i < v.length; i++) /\/viewtopic/g.test(v[i].href) && (c = v[i].href, d = v[i].href.match(/(\d+)$/g)[0]);
                b > 0 ? (os.notice_div(os.lang.flood, os.lang.color_b), os.button_reply.value = os.button_value_reply) : y.innerHTML.indexOf(os.lang.newpost) > 0 ? os.XML(os.serialize(x.forms.posts), '/post', function() {
                    0 > a ? os.notice_div(os.lang.error_reply) : (os.get_post(c, d), os.button_reply.value = os.button_value_reply)
                }) : 0 > a ? os.notice_div(os.lang.error_reply) : (os.get_post(c, d), os.button_reply.value = os.button_value_reply, os.notice_div(os.lang.wait_notice, os.lang.color_c))
            })) : os.notice_div(os.lang.words_reply, os.lang.color_d), !1
 
        });
    },
    get_post: function(c, a) {
        var b, d;
        os.XML('', c, function(e) {
            d = e.responseXML;
            b = d.getElementsByClassName('post--' + a)[0];
            b.style.display = 'none';
            b.className += ' new_ajax_post';
            os.set_post(b);
            os.sceditor.val('');
            os.notice_div(os.lang.success_reply, os.lang.color_e);
        })
    },
    set_post: function(h) {
        var e = os.punbb ? document.getElementsByClassName('topic')[0] : os.phpbb2 ? document.getElementsByClassName('catBottom')[0].parentNode.previousElementSibling : os.phpbb3 ? document.getElementsByName('bottomtitle')[0].previousElementSibling : os.invision && document.getElementsByClassName('topic-footer')[0].previousElementSibling;
        os.punbb ? e.appendChild(h) : e.parentNode.insertBefore(h, e.nextSibling);
        os.fadeIn(h, 500);
    },
    XML: function(a, b, f) {
        var c;
        c = window.XMLHttpRequest ? new XMLHttpRequest : window.ActiveXObject && (new ActiveXObject('Microsoft.XMLHTTP'));
        'undefined' != typeof a ? c.open('POST', b) : c.open('GET', b, true);
        c.responseType = 'document';
        c.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
        'undefined' != typeof a ? c.send(a) : c.send();
        c.onreadystatechange = function() {
            this.readyState == 4 && this.status == 200 && (f(this));
        };
    },
    serialize: function(b) {
        var a, i, j, s = [];
        if ('object' == typeof b && 'FORM' == b.nodeName) {
            var len = b.elements.length;
            for (i = 0; len > i; i++)
                if (a = b.elements[i], a.name && !a.disabled && 'file' != a.type && 'reset' != a.type && 'submit' != a.type && 'button' != a.type)
                    if ('select-multiple' == a.type)
                        for (j = b.elements[i].options.length - 1; j >= 0; j--) a.options[j].selected && (s[s.length] = encodeURIComponent(a.name) + '=' + encodeURIComponent(a.options[j].value));
                    else('checkbox' != a.type && 'radio' != a.type || a.checked) && (s[s.length] = encodeURIComponent(a.name) + '=' + encodeURIComponent(a.value))
        }
        return s.join('&').replace(/%20/g, '+');
    },
    fadeIn: function(a, b) {
        var e, d;
        if (!a) return;
        a.style.opacity = 0, a.style.filter = 'alpha(opacity=0)', a.style.display = '', a.style.visibility = 'visible',
            b ? (e = 0, d = setInterval(function() {
                e += 50 / b, e >= 1 && (clearInterval(d), e = 1), a.style.opacity = e, a.style.filter = 'alpha(opacity=' + e * 100 + ')'
            }, 50)) : (a.style.opacity = 1, a.style.filter = 'alpha(opacity=1)')
    }
};
$(function() {
    (document.getElementById('logout') && /\/t\d+/g.test(window.location.pathname) && $.sceditor) && os.init()
});
$(document).on('ready', function() {
    $('.vbox7hotro td').each(function() {
        var davhotrofmvbox7 = $(this).text();
        $(this).prepend('<iframe width="560" height="315" src="https://www.vbox7.com/emb/external.php?vid=' + davhotrofmvbox7 + '" frameborder="0" allowfullscreen></iframe><style>.vbox7hotro{font-size: 0px;}</style>');
    });
});
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by Ch@lo Valdez Thu Jun 15 2017, 20:17

you can't see that video immediately because is a iframe and that code is not loaded until the page is refresh
Code:
<iframe width="560" height="315" src="https://www.vbox7.com/emb/external.php?vid=' + davhotrofmvbox7 + '" frameborder="0" allowfullscreen></iframe><style>.vbox7hotro{font-size: 0px;}</style>


Ch@lo Valdez
Ch@lo Valdez
Forumember

Male Posts : 138
Reputation : 50
Language : spanish

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Thu Jun 15 2017, 21:51

YouTube videos are displayed immediately.
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Thu Jun 15 2017, 23:59

I also use the vbox7 button in the editor.
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by Ch@lo Valdez Fri Jun 16 2017, 00:34

YouTube is diferent
Ch@lo Valdez
Ch@lo Valdez
Forumember

Male Posts : 138
Reputation : 50
Language : spanish

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by Ape Sat Jun 24 2017, 13:27

Hello @smurfavr

Is this now solved ?

yes please tell us its solved if no then don't change the icons until you are 100% sure it is.


vbox7 by hotrofm Left1212vbox7 by hotrofm Center11vbox7 by hotrofm Right112
vbox7 by hotrofm Ape_b110
vbox7 by hotrofm Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19075
Reputation : 1988
Language : fluent in dork / mumbojumbo & English haha

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

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by smurfavr Sat Jun 24 2017, 20:29

They said they could not help me. vbox7 by hotrofm Mouais
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Solved Re: vbox7 by hotrofm

Post by Ape Sun Jun 25 2017, 11:18

ok thank you i will close this now then.
Problem solved & topic archived.
Please read our forum rules: ESF General Rules


vbox7 by hotrofm Left1212vbox7 by hotrofm Center11vbox7 by hotrofm Right112
vbox7 by hotrofm Ape_b110
vbox7 by hotrofm Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19075
Reputation : 1988
Language : fluent in dork / mumbojumbo & English haha

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

Back to top Go down

Back to top


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