Yuk DAFTAR SEKARANG juga, banyak TUTORIAL MENARIK buat kalian para forumer @2018
Kalian Member Baru, Yuk Perkenalan Dahulu. 1 Member 1 Thread.
Selamat datang di Forum Atlanta~Halo, kalian masih menjadi tamu ya di forum ini ? Kenapa masih jadi tamu ayok ikutan kita gabung di forum ini.
Banyak loh tutorial yang dapat kamu dapatkan di sini, kalian juga bisa tanya-tanya tentang masalah blog/forum kok di sini.
Langsung aja yok daftar kalau kalian belum daftar di sini Register, Kalau sudah punya IDnya langsung aja ya Login

You are not connected. Please login or register

 

Solved: Tanya: Cara Membuat Auto Tag Keyword

Oops! Sepertinya ada sedikit kesalahan ...

[#22124]

Atlanta telah memblok tamu untuk melihat konten yang ada, silahkan mendaftar untuk dapat melihat isi konten kami.


Need Help?

Message (Halaman 1 dari 1)

-Developer K-
#1
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 06:21

Level 5
-Developer K-

Level 5
Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

tommycoo
#2
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 18:25

Owner of Atlanta

tommycoo

Owner of Atlanta
-Developer K- wrote:Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

here is put on your javascript
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#pun-intro');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('#main-content .main.paged').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'p.crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

-Developer K-
#3
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:04

Level 5
-Developer K-

Level 5
tommycoo wrote:
-Developer K- wrote:Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

here is put on your javascript
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#pun-intro');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('#main-content .main.paged').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'p.crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

udh gue coba tetap kg bisa gan

tommycoo
#4
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:07

Owner of Atlanta

tommycoo

Owner of Atlanta
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

here is put on your javascript
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#pun-intro');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('#main-content .main.paged').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'p.crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

udh gue coba tetap kg bisa gan

bisa minta link forum ?

-Developer K-
#5
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:11

Level 5
-Developer K-

Level 5
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

here is put on your javascript
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#pun-intro');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('#main-content .main.paged').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'p.crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

udh gue coba tetap kg bisa gan

bisa minta link forum ?

Apa Harus Ada Info Topic Starter ?

tommycoo
#6
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:12

Owner of Atlanta

tommycoo

Owner of Atlanta
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

here is put on your javascript
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#pun-intro');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('#main-content .main.paged').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'p.crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

udh gue coba tetap kg bisa gan

bisa minta link forum ?

Apa Harus Ada Info Topic Starter ?

topic starter tidak jadi masalah kok

-Developer K-
#7
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:17

Level 5
-Developer K-

Level 5
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

here is put on your javascript
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#pun-intro');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('#main-content .main.paged').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'p.crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

udh gue coba tetap kg bisa gan

bisa minta link forum ?

Apa Harus Ada Info Topic Starter ?

topic starter tidak jadi masalah kok

yg jadi masalah di centang di mana?

tommycoo
#8
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:29

Owner of Atlanta

tommycoo

Owner of Atlanta
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

here is put on your javascript
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#pun-intro');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('#main-content .main.paged').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'p.crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

udh gue coba tetap kg bisa gan

bisa minta link forum ?

Apa Harus Ada Info Topic Starter ?

topic starter tidak jadi masalah kok

yg jadi masalah di centang di mana?

centang all pages, kalo masih belum bisa kasih link forum?

-Developer K-
#9
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:33

Level 5
-Developer K-

Level 5
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:Mau Tanya Nih Om @tommycoo Bagaimana Cara Membuat Auto Tag Keyword ?

Screan Shoot :
[You must be registered and logged in to see this image.]

here is put on your javascript
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#pun-intro');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('#main-content .main.paged').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'p.crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

udh gue coba tetap kg bisa gan

bisa minta link forum ?

Apa Harus Ada Info Topic Starter ?

topic starter tidak jadi masalah kok

yg jadi masalah di centang di mana?

centang all pages, kalo masih belum bisa kasih link forum?

Tetap enggak bisa gan udh gue centang all pages tetap kg bisa -,-

tommycoo
#10
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:48

Owner of Atlanta

tommycoo

Owner of Atlanta
Coba javascript yang ini
Code:
    /***
    * Application: Tags Search
    * Description: This application can displays tags for searching.
    * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
    * Made and Optimizations by JScript - 2014/03/09
    * View more in: http://*censored*
    * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
    * This work is free. You can redistribute it and/or modify it
    * under the terms of the WTFPL, Version 2
    */
    jQuery(function () {
        /***
        * User Definition Variables
        ***/
        /* Put here the limit of tag length!!! */
        var iTagLength = 4;
        /* Put here your tags tool tip!!! */
        var sTagTitle = 'Procurar por:';
        /* Put here your widget title!!! */
        var sTagToolTip = 'Localizar mais conteúdo com a tag';
        /* END */
        /***
        * System Defined Variables - Do not edit if you don't know!
        ***/
        var oConfig = {
            sInfo:
                '<!--' +
                '* Application: Tags Search' +
                '* Description: This application can displays tags for searching.' +
                '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                '* Made and Optimizations by JScript - 2014/03/09' +
                '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                '* This work is free. You can redistribute it and/or modify it' +
                '* under the terms of the WTFPL, Version 2' +
                '-->',     
            sContent:
                '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
            sCSS:
                '<style>' +
                '#tags_search {' +
                    'display: block;' +
                    'margin-bottom: 20px;' +
                    'margin-top: 20px;' +
                '}' +
                '.ipsTag {' +
                    'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                    'border-radius: 0 3px 3px 0;' +
                    'color: #FFFFFF !important;' +
                    'display: inline-block;' +
                    'font-size: 11px;' +
                    'height: 20px;' +
                    'line-height: 20px;' +
                    'margin: 5px 5px 0 0;' +
                    'padding: 0 7px 0 15px;' +
                    'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                '}' +
                '</style>',
            sTarget: ''
        };
     
        jQuery(oConfig.sCSS).insertBefore('body');
        /* Forum versions! */
        var phpBB2 = jQuery('.bodyline');
        var phpBB3 = jQuery('#wrap');
        var punbb = jQuery('#branding');
        var invision = jQuery('#ipbwrapper');
     
        if (phpBB2.length) {
            $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.cattitle:first';
        } else if(phpBB3.length) {
            $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.page-title';
        } else if(punbb.length) {
            $('.paged').after(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = '.paged-head:before';
        } else if(invision.length) {
            $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'div.maintitle.floated h3';
        };
        var tags = jQuery(oConfig.sTarget).text().split(' ');
        jQuery.each(tags, function(index, data) {
            if(data.length > iTagLength) {
                $('#tags_search').append(
                    '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                    '    <span>' + data + '</span>' +
                    '</a>'
                );
            }
        });
    });

-Developer K-
#11
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 17/10/2014, 19:52

Level 5
-Developer K-

Level 5
tommycoo wrote:Coba javascript yang ini
Code:
    /***
    * Application: Tags Search
    * Description: This application can displays tags for searching.
    * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
    * Made and Optimizations by JScript - 2014/03/09
    * View more in: http://*censored*
    * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
    * This work is free. You can redistribute it and/or modify it
    * under the terms of the WTFPL, Version 2
    */
    jQuery(function () {
        /***
        * User Definition Variables
        ***/
        /* Put here the limit of tag length!!! */
        var iTagLength = 4;
        /* Put here your tags tool tip!!! */
        var sTagTitle = 'Procurar por:';
        /* Put here your widget title!!! */
        var sTagToolTip = 'Localizar mais conteúdo com a tag';
        /* END */
        /***
        * System Defined Variables - Do not edit if you don't know!
        ***/
        var oConfig = {
            sInfo:
                '<!--' +
                '* Application: Tags Search' +
                '* Description: This application can displays tags for searching.' +
                '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                '* Made and Optimizations by JScript - 2014/03/09' +
                '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                '* This work is free. You can redistribute it and/or modify it' +
                '* under the terms of the WTFPL, Version 2' +
                '-->',     
            sContent:
                '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
            sCSS:
                '<style>' +
                '#tags_search {' +
                    'display: block;' +
                    'margin-bottom: 20px;' +
                    'margin-top: 20px;' +
                '}' +
                '.ipsTag {' +
                    'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                    'border-radius: 0 3px 3px 0;' +
                    'color: #FFFFFF !important;' +
                    'display: inline-block;' +
                    'font-size: 11px;' +
                    'height: 20px;' +
                    'line-height: 20px;' +
                    'margin: 5px 5px 0 0;' +
                    'padding: 0 7px 0 15px;' +
                    'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                '}' +
                '</style>',
            sTarget: ''
        };
     
        jQuery(oConfig.sCSS).insertBefore('body');
        /* Forum versions! */
        var phpBB2 = jQuery('.bodyline');
        var phpBB3 = jQuery('#wrap');
        var punbb = jQuery('#branding');
        var invision = jQuery('#ipbwrapper');
     
        if (phpBB2.length) {
            $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.cattitle:first';
        } else if(phpBB3.length) {
            $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.page-title';
        } else if(punbb.length) {
            $('.paged').after(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = '.paged-head:before';
        } else if(invision.length) {
            $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'div.maintitle.floated h3';
        };
        var tags = jQuery(oConfig.sTarget).text().split(' ');
        jQuery.each(tags, function(index, data) {
            if(data.length > iTagLength) {
                $('#tags_search').append(
                    '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                    '    <span>' + data + '</span>' +
                    '</a>'
                );
            }
        });
    });

mna gan kok kg bisa? -_-

tommycoo
#12
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 18/10/2014, 06:29

Owner of Atlanta

tommycoo

Owner of Atlanta
-Developer K- wrote:
tommycoo wrote:Coba javascript yang ini
Code:
    /***
    * Application: Tags Search
    * Description: This application can displays tags for searching.
    * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
    * Made and Optimizations by JScript - 2014/03/09
    * View more in: http://*censored*
    * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
    * This work is free. You can redistribute it and/or modify it
    * under the terms of the WTFPL, Version 2
    */
    jQuery(function () {
        /***
        * User Definition Variables
        ***/
        /* Put here the limit of tag length!!! */
        var iTagLength = 4;
        /* Put here your tags tool tip!!! */
        var sTagTitle = 'Procurar por:';
        /* Put here your widget title!!! */
        var sTagToolTip = 'Localizar mais conteúdo com a tag';
        /* END */
        /***
        * System Defined Variables - Do not edit if you don't know!
        ***/
        var oConfig = {
            sInfo:
                '<!--' +
                '* Application: Tags Search' +
                '* Description: This application can displays tags for searching.' +
                '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                '* Made and Optimizations by JScript - 2014/03/09' +
                '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                '* This work is free. You can redistribute it and/or modify it' +
                '* under the terms of the WTFPL, Version 2' +
                '-->',     
            sContent:
                '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
            sCSS:
                '<style>' +
                '#tags_search {' +
                    'display: block;' +
                    'margin-bottom: 20px;' +
                    'margin-top: 20px;' +
                '}' +
                '.ipsTag {' +
                    'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                    'border-radius: 0 3px 3px 0;' +
                    'color: #FFFFFF !important;' +
                    'display: inline-block;' +
                    'font-size: 11px;' +
                    'height: 20px;' +
                    'line-height: 20px;' +
                    'margin: 5px 5px 0 0;' +
                    'padding: 0 7px 0 15px;' +
                    'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                '}' +
                '</style>',
            sTarget: ''
        };
     
        jQuery(oConfig.sCSS).insertBefore('body');
        /* Forum versions! */
        var phpBB2 = jQuery('.bodyline');
        var phpBB3 = jQuery('#wrap');
        var punbb = jQuery('#branding');
        var invision = jQuery('#ipbwrapper');
     
        if (phpBB2.length) {
            $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.cattitle:first';
        } else if(phpBB3.length) {
            $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.page-title';
        } else if(punbb.length) {
            $('.paged').after(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = '.paged-head:before';
        } else if(invision.length) {
            $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'div.maintitle.floated h3';
        };
        var tags = jQuery(oConfig.sTarget).text().split(' ');
        jQuery.each(tags, function(index, data) {
            if(data.length > iTagLength) {
                $('#tags_search').append(
                    '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                    '    <span>' + data + '</span>' +
                    '</a>'
                );
            }
        });
    });

mna gan kok kg bisa? -_-

coba kode ini lagi
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#branding');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('.paged .paged-head').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = '.pun-crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

-Developer K-
#13
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 18/10/2014, 21:29

Level 5
-Developer K-

Level 5
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:Coba javascript yang ini
Code:
    /***
    * Application: Tags Search
    * Description: This application can displays tags for searching.
    * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
    * Made and Optimizations by JScript - 2014/03/09
    * View more in: http://*censored*
    * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
    * This work is free. You can redistribute it and/or modify it
    * under the terms of the WTFPL, Version 2
    */
    jQuery(function () {
        /***
        * User Definition Variables
        ***/
        /* Put here the limit of tag length!!! */
        var iTagLength = 4;
        /* Put here your tags tool tip!!! */
        var sTagTitle = 'Procurar por:';
        /* Put here your widget title!!! */
        var sTagToolTip = 'Localizar mais conteúdo com a tag';
        /* END */
        /***
        * System Defined Variables - Do not edit if you don't know!
        ***/
        var oConfig = {
            sInfo:
                '<!--' +
                '* Application: Tags Search' +
                '* Description: This application can displays tags for searching.' +
                '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                '* Made and Optimizations by JScript - 2014/03/09' +
                '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                '* This work is free. You can redistribute it and/or modify it' +
                '* under the terms of the WTFPL, Version 2' +
                '-->',     
            sContent:
                '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
            sCSS:
                '<style>' +
                '#tags_search {' +
                    'display: block;' +
                    'margin-bottom: 20px;' +
                    'margin-top: 20px;' +
                '}' +
                '.ipsTag {' +
                    'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                    'border-radius: 0 3px 3px 0;' +
                    'color: #FFFFFF !important;' +
                    'display: inline-block;' +
                    'font-size: 11px;' +
                    'height: 20px;' +
                    'line-height: 20px;' +
                    'margin: 5px 5px 0 0;' +
                    'padding: 0 7px 0 15px;' +
                    'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                '}' +
                '</style>',
            sTarget: ''
        };
     
        jQuery(oConfig.sCSS).insertBefore('body');
        /* Forum versions! */
        var phpBB2 = jQuery('.bodyline');
        var phpBB3 = jQuery('#wrap');
        var punbb = jQuery('#branding');
        var invision = jQuery('#ipbwrapper');
     
        if (phpBB2.length) {
            $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.cattitle:first';
        } else if(phpBB3.length) {
            $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.page-title';
        } else if(punbb.length) {
            $('.paged').after(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = '.paged-head:before';
        } else if(invision.length) {
            $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'div.maintitle.floated h3';
        };
        var tags = jQuery(oConfig.sTarget).text().split(' ');
        jQuery.each(tags, function(index, data) {
            if(data.length > iTagLength) {
                $('#tags_search').append(
                    '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                    '    <span>' + data + '</span>' +
                    '</a>'
                );
            }
        });
    });

mna gan kok kg bisa? -_-

coba kode ini lagi
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#branding');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('.paged .paged-head').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = '.pun-crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

sip bang bisa,oh iya btw klo cara ganti warnanya gimana ya?

tommycoo
#14
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 19/10/2014, 06:32

Owner of Atlanta

tommycoo

Owner of Atlanta
-Developer K- wrote:
tommycoo wrote:
-Developer K- wrote:
tommycoo wrote:Coba javascript yang ini
Code:
    /***
    * Application: Tags Search
    * Description: This application can displays tags for searching.
    * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
    * Made and Optimizations by JScript - 2014/03/09
    * View more in: http://*censored*
    * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
    * This work is free. You can redistribute it and/or modify it
    * under the terms of the WTFPL, Version 2
    */
    jQuery(function () {
        /***
        * User Definition Variables
        ***/
        /* Put here the limit of tag length!!! */
        var iTagLength = 4;
        /* Put here your tags tool tip!!! */
        var sTagTitle = 'Procurar por:';
        /* Put here your widget title!!! */
        var sTagToolTip = 'Localizar mais conteúdo com a tag';
        /* END */
        /***
        * System Defined Variables - Do not edit if you don't know!
        ***/
        var oConfig = {
            sInfo:
                '<!--' +
                '* Application: Tags Search' +
                '* Description: This application can displays tags for searching.' +
                '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                '* Made and Optimizations by JScript - 2014/03/09' +
                '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                '* This work is free. You can redistribute it and/or modify it' +
                '* under the terms of the WTFPL, Version 2' +
                '-->',     
            sContent:
                '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
            sCSS:
                '<style>' +
                '#tags_search {' +
                    'display: block;' +
                    'margin-bottom: 20px;' +
                    'margin-top: 20px;' +
                '}' +
                '.ipsTag {' +
                    'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                    'border-radius: 0 3px 3px 0;' +
                    'color: #FFFFFF !important;' +
                    'display: inline-block;' +
                    'font-size: 11px;' +
                    'height: 20px;' +
                    'line-height: 20px;' +
                    'margin: 5px 5px 0 0;' +
                    'padding: 0 7px 0 15px;' +
                    'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                '}' +
                '</style>',
            sTarget: ''
        };
     
        jQuery(oConfig.sCSS).insertBefore('body');
        /* Forum versions! */
        var phpBB2 = jQuery('.bodyline');
        var phpBB3 = jQuery('#wrap');
        var punbb = jQuery('#branding');
        var invision = jQuery('#ipbwrapper');
     
        if (phpBB2.length) {
            $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.cattitle:first';
        } else if(phpBB3.length) {
            $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'h1.page-title';
        } else if(punbb.length) {
            $('.paged').after(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = '.paged-head:before';
        } else if(invision.length) {
            $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
            oConfig.sTarget = 'div.maintitle.floated h3';
        };
        var tags = jQuery(oConfig.sTarget).text().split(' ');
        jQuery.each(tags, function(index, data) {
            if(data.length > iTagLength) {
                $('#tags_search').append(
                    '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                    '    <span>' + data + '</span>' +
                    '</a>'
                );
            }
        });
    });

mna gan kok kg bisa? -_-

coba kode ini lagi
Code:
            /***
            * Application: Tags Search
            * Description: This application can displays tags for searching.
            * Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
            * Made and Optimizations by JScript - 2014/03/09
            * View more in: http://*censored*
            * Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
            * This work is free. You can redistribute it and/or modify it
            * under the terms of the WTFPL, Version 2
            */
            jQuery(function () {
                /***
                * User Definition Variables
                ***/
                /* Put here the limit of tag length!!! */
                var iTagLength = 4;
                /* Put here your tags tool tip!!! */
                var sTagTitle = 'Procurar por:';
                /* Put here your widget title!!! */
                var sTagToolTip = 'Localizar mais conteúdo com a tag';
                /* END */
                /***
                * System Defined Variables - Do not edit if you don't know!
                ***/
                var oConfig = {
                    sInfo:
                        '<!--' +
                        '* Application: Tags Search' +
                        '* Description: This application can displays tags for searching.' +
                        '* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
                        '* Made and Optimizations by JScript - 2014/03/09' +
                        '* View more in: http://*censored*/forum & http://ajuda.forumeiros.com' +
                        '* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
                        '* This work is free. You can redistribute it and/or modify it' +
                        '* under the terms of the WTFPL, Version 2' +
                        '-->',     
                    sContent:
                        '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
                    sCSS:
                        '<style>' +
                        '#tags_search {' +
                            'display: block;' +
                            'margin-bottom: 20px;' +
                            'margin-top: 20px;' +
                        '}' +
                        '.ipsTag {' +
                            'background: url("http://i55.servimg.com/u/f55/18/17/62/92/tag_bg10.png") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
                            'border-radius: 0 3px 3px 0;' +
                            'color: #FFFFFF !important;' +
                            'display: inline-block;' +
                            'font-size: 11px;' +
                            'height: 20px;' +
                            'line-height: 20px;' +
                            'margin: 5px 5px 0 0;' +
                            'padding: 0 7px 0 15px;' +
                            'text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);' +
                        '}' +
                        '</style>',
                    sTarget: ''
                };
             
                jQuery(oConfig.sCSS).insertBefore('body');
                /* Forum versions! */
                var phpBB2 = jQuery('.bodyline');
                var phpBB3 = jQuery('#wrap');
                var punbb = jQuery('#branding');
                var invision = jQuery('#ipbwrapper');
             
                if (phpBB2.length) {
                    $('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.cattitle:first';
                } else if(phpBB3.length) {
                    $('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'h1.page-title';
                } else if(punbb.length) {
                    $('.paged .paged-head').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = '.pun-crumbs strong:last';
                } else if(invision.length) {
                    $('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
                    oConfig.sTarget = 'div.maintitle.floated h3';
                };
                var tags = jQuery(oConfig.sTarget).text().split(' ');
                jQuery.each(tags, function(index, data) {
                    if(data.length > iTagLength) {
                        $('#tags_search').append(
                            '<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
                            '    <span>' + data + '</span>' +
                            '</a>'
                        );
                    }
                });
            });

sip bang bisa,oh iya btw klo cara ganti warnanya gimana ya?

itu gak pake warna, tapi dari gambar coba ganti gambar yang ada di sini [You must be registered and logged in to see this link.]
ganti di photoshop bisa kok

tommycoo
#15
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 29/10/2014, 18:25

Owner of Atlanta

tommycoo

Owner of Atlanta
Solved and archives > Forumotion

[You must be registered and logged in to see this image.] Dipindahkan ke: Forumotion Archives

Sponsored content
#16
Solved: Tanya: Cara Membuat Auto Tag Keyword Empty 


Message (Halaman 1 dari 1)

Share This Topic !

URL :
BBcode :
HTML :

Permissions in this forum:
Anda tidak dapat menjawab topik

Total Posts Total Threads Total Members Newest Member29 November 2014 Date of Establishment of the Forum

Total 0 user online :: 0 Terdaftar, 0 Tersembunyi dan 0 Tamu

Total 0 user online :: 0 Terdaftar, 0 Tersembunyi dan 0 Tamu (Lihat list online)


User yang sedang berada di forum ini: Tidak ada