FM Design
Would you like to react to this message? Create an account in a few clicks or log in to continue.

IMPORTANT

FM Design is in read-only mode, please click here for more information.

Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49

» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21

» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28

» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15

» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11

» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24

» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58

» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50

» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22

» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12

» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10

» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51

» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11

» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19

» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34

Recent Tutorials
Top posting users this month

Who is online?
In total there are 23 users online :: 0 Registered, 0 Hidden and 23 Guests :: 1 Bot

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

#9 Classified Ads Feature from Forumotion

View previous topic View next topic Go down

SLGray
SLGray
Valued Member
Gender : Male
Age : 51
Posts : 2465
Points : 7106
Reputation : 290
Location : United States
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : ModernBB
http://www.fmthemes.forumotion.com https://www.facebook.com/FM-Themes-655055824604957 https://twitter.com/FMThemes https://pinterest.com/FMThemes

PostSLGray Thu 06 Oct 2016, 14:58

Since Edge modifies the templates, the new classified ads feature looks broken.

Maybe this will help fix the issue: http://help.forumotion.com/t148489-templates-for-the-classified-ads#1026483 ?
Bigtuber
Bigtuber

Gender : Male
Posts : 125
Points : 3181
Reputation : 52
Location : Germany
Language : German, English
Browser : Browser : Google Chrome Forum Version : Forum Version : Forumactif Edge

PostBigtuber Fri 07 Oct 2016, 13:19

I just wanted to post this right now, but then I saw your topic.
@SLGray is right. The new feature looks broken and maybe you can work on an update, @Ange Tuteur. Smile
SarkZKalie
SarkZKalie
Member
Gender : Male
Age : 32
Posts : 24
Points : 3752
Reputation : 11
Language : English
Browser : Browser : Google Chrome Forum Version : Forum Version : punBB

PostSarkZKalie Sun 09 Oct 2016, 09:12

@SLGray thank you for your quick responde in FM Very Happy i found it, yeah, it conflicted w my main script
MAIN SCRIPT
Code:
$(document).ready(function() {
    $(window).scroll(function(){
        var scrollTop=((window.scrollY-0));
        if ( $(this).scrollTop() < 102 ){
            $("nav, .left-side_nav").css('top',(102-(scrollTop))).removeClass('justthumb');
            $("nav #mesg_noti").slideUp('fast');
            $("#chat_hangout, .full_hangout").css('top',146);
        } if ( $(this).scrollTop() > 102 ){
            $("nav, .left-side_nav").css('top',0).addClass('justthumb');
            $("nav #mesg_noti").slideDown('fast');
            $("#user_panel").fadeOut('fast');
            $(".full_hangout").css('top',44);
        } if ( $(this).scrollTop() < 352 ){
            $("header").removeClass('small_info').parent().css('padding-top',0);
            $("#jump_top").fadeOut('fast');
        } if ( $(this).scrollTop() > 352 ){
            $("header").addClass('small_info').parent().css('padding-top',354);
            $("#jump_top").fadeIn('fast');
        }
    });
});
$(document).ready(function() {
    var wheight = document.documentElement.clientHeight;
    $("#nav_current").hover(function() {
        $('.left-side_nav').animate({left:'0px'},100);
    });
    $(".left-side_nav").hover(function() {
        $('.left-side_nav').animate({left:'0px'},100);
    }, function(){
        $('.left-side_nav').animate({left:'-270px'},100);
    });
    $(".g_search_box").submit(function(e) {
        var keyword = $(this).children('input#g_search_input').val();
        $("#gkw").html(keyword);
        if (keyword != '') {
            $('.search_rs_box').show();
            $(this).children('input#g_search_input').removeClass('error').focus()
        } else {
            $('.search_rs_box').hide();
            $(this).children('input#g_search_input').addClass('error').focus();
        }
        $(".put_the_rs").empty();
        $(".search_rs_box").append('<div id="no_rs_box" class="still_loading nodis">Searching...</div>');
        $('.still_loading').fadeIn('fast');
        $.get("/search?search_keywords="+keyword, function(data) {
            $(data).find(".statused").children().appendTo(".put_the_rs");
            $(".still_loading").fadeOut("slow", function() {
                $(this).remove();
                if ($(".put_the_rs").html() == '') {
                    $(".put_the_rs").append('<div id="no_rs_box">Your search '+keyword+' did not match any documents!</div>');
                }
            });
            $(".put_the_rs tr").children(".tc2,.tcr").remove();
            $(".put_the_rs tr .tcl").children("img").remove();
            $(".put_the_rs tr").children(".tc3").prepend('&nbsp; - ');
            $(".put_the_rs tr").children(".tc3:last-child").prev('.tc3').append(' replies');
            $(".put_the_rs tr").children(".tc3:last-child").append(' views');
        });
        return false;
    });
    $(document).on("click","#close_srch", function(){
        $('.search_rs_box').fadeOut('fast', function(){
            $(".put_the_rs").empty();
        });
    });
    $(document).on("click","#turn_chat, #close_hangout", function() {
        $("#chat_hangout").toggle().removeClass("full_hangout");
    });
    $(document).on("click","#full_hangout", function() {
        var scrollTop=((window.scrollY-0));
        $("#chat_hangout").toggleClass("full_hangout").removeClass("hide_hangout");
        if (scrollTop > 102) {
            $("#chat_hangout").css('top',146);
            $(".full_hangout").css('top',44);
        } else {
            $("#chat_hangout").css('top',146);
        }
    });
    $(document).on("click","#hide_hangout", function() {
        $("#chat_hangout").toggleClass("hide_hangout");
        if ($("#chat_hangout").hasClass("hide_hangout")) {
          $("#chat_hangout").css('top',(wheight-39)).removeClass("full_hangout");
        } else {
            $("#chat_hangout").css('top',146);
        }
    });
    $(document).on("click","#show_s_option", function() {
        $("#stream_option").fadeToggle('fast');
    });
    $(document).on("click","#stream_option .str_button", function() {
        $("#stream_option .str_button").removeClass("active");
        $("#stream_option").fadeOut('fast');
        $(this).addClass("active");
    });
    $(document).on("click",".str_button.tscol", function() {
        $("#wrapper").removeClass("ocolonly");
    });
    $(document).on("click",".str_button.oscol", function() {
        $("#wrapper").addClass("ocolonly");
    });
    $(document).on("click","#gt_ava", function() {
        $("#user_panel").fadeToggle('fast');
    });
    $(document).on("click",".collapse_boxes", function() {
        $(this).children("b").toggle();
        $(this).parent().parent(".boxes").children("#all_boxes").slideToggle();
    });
    $(document).on("click","#control_m_tab span", function() {
        var datam = $(this).attr("data-module");
        var label = $(this).text();
        var cdatam = $(".a_box.current_tab").attr("data-module");
        var clabel = $(".a_box.current_tab #abox_descript h3 span").text();
        $(".a_box.current_tab #abox_descript h3 span").html(label);
        $(".a_box.current_tab").attr("data-module",datam);
        $("#control_m_tab").append('<span data-module="'+cdatam+'">'+clabel+'</span>');
        $(this).remove();
        var taken = $(datam+" .content_to_take").html();
        $(".a_box.current_tab .current_content").html(taken);
    });
    $(document).on("mouseover","#profile_username", function() {
        $(this).children(".profile_box").fadeIn("fast");
    });
    $(document).on("mouseleave","#profile_username", function() {
        $(this).children(".profile_box").hide();
    });
    $(document).on("click",".glogin", function() {
        $(".g_login_panel").toggle();
        $("body").toggleClass("noscroll");
    });
    $('input[value="gcover_photo"]').attr('value','gcover_photo').hide();
    $('.profile_box img[alt="gcover_photo"]').each(function(i) {
        var gcover = $(this).attr("src");
        $(this).parent().parent(".profile_box").children("#pcover_box").css("background-image","url("+gcover+")");
        $(this).parent().remove();
    });
    $('#profile-advanced-left img[alt="gcover_photo"]').each(function(i) {
        var gcover = $(this).attr("src");
        $('header').css("background-image","url("+gcover+")");
        $(this).parent().parent().parent().next('.separator').remove();
        $(this).parent().parent().parent().remove();
        $('.center_nav li.activetab').remove();
        $('.center_nav a[href="/#goto_stats"],.center_nav a#show_s_option,#profile-advanced-left #tabs').parent().remove();
    });
    $("#profile-advanced-layout").prepend('<a class="fake_pos" id="goto_profile"></a>');
    $('#profile-advanced-right').each(function(i) {
        if ($('#profile-advanced-add').length > 0) {
            var gusername = $(this).children("#profile-advanced-add").next(".module").children('.main-head').children('.h3').html();
            $('#n-site_infom h1').html('<a href="'+gulink+'">'+gusername+'</a>');
            var guserava = $(this).children("#profile-advanced-add").next(".module").children('.main-head').next('.main-content').children('img:first').attr("src");
            $('#n-site_logo img').attr('src',guserava);
            $(this).children("#profile-advanced-add").next(".module").remove();
            $(this).children("#profile-advanced-add").children('br').remove();
            $(this).children("#profile-advanced-add").children('a').after('&nbsp;');
            $(this).children("#profile-advanced-add").children('a').addClass('button').addClass('flat');
            $(this).children("#profile-advanced-add").children('a:last').addClass('red');
            var guadd = $(this).children("#profile-advanced-add").html();
            $('#n-site_infom p').html('This is a Ritizen<br/>'+guadd);
        } else {
            var gusername = $(this).children(".module:first").children('.main-head').children('.h3').html();
            $('#n-site_infom h1').html('<a href="'+gulink+'">'+gusername+'</a>');
            var guserava = $(this).children(".module:first").children('.main-head').next('.main-content').children('img:first').attr("src");
            $('#n-site_logo img').attr('src',guserava);
            $(this).children(".module:first").remove();
            $('#n-site_infom p').html('This is a Ritizen');
        }       
        $(this).children(".module:last").remove();
        $.get(gulink+"wall", function(data) {
            $(data).find("#profile-advanced-details:first").appendTo("#pmd_wall");
            $(".new-message a").addClass('button flat blue').html('New Message').css('margin-bottom',10);
        });
        $.get(gulink+"stats", function(data) {
            $(data).find("#profile-advanced-details:first").appendTo("#pmd_stats");
        });
        $.get(gulink+"contact", function(data) {
            $(data).find("#profile-advanced-details:first").appendTo("#pmd_cont");
        });
    });
    $('a').each(function(i) {
        if ($(this).html() == "Add to my friends list") {
            $(this).html("Add friend");
        } if ($(this).html() == "Add to my foes list") {
            $(this).html("Block");
        }
    });
    $('#gquickreply .frm-buttons input[type="submit"]').addClass('flat');
    $('#gquickreply .frm-buttons input[value="Send"]').addClass('blue');
    $(".posting [href*='/privmsg?mode=post']").addClass('button flat blue');
});
jQuery(document).ready(function($) {
    $('*').click(function () {
        $('body').scrollTo($(this).attr('direction'), 600);
        return false;
    });
});
With this CLASSIFIED ADS one
Code:

<script type="text/javascript">//<![CDATA[
(function() {var shr = document.createElement('script');shr.setAttribute('data-cfasync', 'false');shr.src = 'http://dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js';shr.type = 'text/javascript'; shr.async = 'true';shr.onload = shr.onreadystatechange = function() {var rs = this.readyState;if (rs && rs != 'complete' && rs != 'loaded') return;var site_id = '608473f3cda6ad8b39838d23b6b2a89a';try { Shareaholic.init(site_id); } catch (e) };var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(shr, s);})();//]]></script>


Last edited by SarkZKalie on Wed 12 Oct 2016, 17:16; edited 1 time in total
SLGray
SLGray
Valued Member
Gender : Male
Age : 51
Posts : 2465
Points : 7106
Reputation : 290
Location : United States
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : ModernBB
http://www.fmthemes.forumotion.com https://www.facebook.com/FM-Themes-655055824604957 https://twitter.com/FMThemes https://pinterest.com/FMThemes

PostSLGray Sun 09 Oct 2016, 16:54

SarkZKalie wrote:@SLGray thank you for your quick responde in FM Very Happy i found it, yeah, it conflicted w my main script
Code:
$(document).ready(function() {
 Â   $(window).scroll(function(){
 Â       var scrollTop=((window.scrollY-0));
 Â       if ( $(this).scrollTop() < 102 ){
 Â           $("nav, .left-side_nav").css('top',(102-(scrollTop))).removeClass('justthumb');
 Â           $("nav #mesg_noti").slideUp('fast');
 Â           $("#chat_hangout, .full_hangout").css('top',146);
 Â       } if ( $(this).scrollTop() > 102 ){
 Â           $("nav, .left-side_nav").css('top',0).addClass('justthumb');
 Â           $("nav #mesg_noti").slideDown('fast');
 Â           $("#user_panel").fadeOut('fast');
 Â           $(".full_hangout").css('top',44);
 Â       } if ( $(this).scrollTop() < 352 ){
 Â           $("header").removeClass('small_info').parent().css('padding-top',0);
 Â           $("#jump_top").fadeOut('fast');
 Â       } if ( $(this).scrollTop() > 352 ){
 Â           $("header").addClass('small_info').parent().css('padding-top',354);
 Â           $("#jump_top").fadeIn('fast');
 Â       }
 Â   });
});
$(document).ready(function() {
 Â   var wheight = document.documentElement.clientHeight;
 Â   $("#nav_current").hover(function() {
 Â       $('.left-side_nav').animate({left:'0px'},100);
 Â   });
 Â   $(".left-side_nav").hover(function() {
 Â       $('.left-side_nav').animate({left:'0px'},100);
 Â   }, function(){
 Â       $('.left-side_nav').animate({left:'-270px'},100);
 Â   });
 Â   $(".g_search_box").submit(function(e) {
 Â       var keyword = $(this).children('input#g_search_input').val();
 Â       $("#gkw").html(keyword);
 Â       if (keyword != '') {
 Â           $('.search_rs_box').show();
 Â           $(this).children('input#g_search_input').removeClass('error').focus()
 Â       } else {
 Â           $('.search_rs_box').hide();
 Â           $(this).children('input#g_search_input').addClass('error').focus();
 Â       }
 Â       $(".put_the_rs").empty();
 Â       $(".search_rs_box").append('<div id="no_rs_box" class="still_loading nodis">Searching...</div>');
 Â       $('.still_loading').fadeIn('fast');
 Â       $.get("/search?search_keywords="+keyword, function(data) {
 Â           $(data).find(".statused").children().appendTo(".put_the_rs");
 Â           $(".still_loading").fadeOut("slow", function() {
 Â               $(this).remove();
 Â               if ($(".put_the_rs").html() == '') {
 Â                   $(".put_the_rs").append('<div id="no_rs_box">Your search '+keyword+' did not match any documents!</div>');
 Â               }
 Â           });
 Â           $(".put_the_rs tr").children(".tc2,.tcr").remove();
 Â           $(".put_the_rs tr .tcl").children("img").remove();
 Â           $(".put_the_rs tr").children(".tc3").prepend('&nbsp; - ');
 Â           $(".put_the_rs tr").children(".tc3:last-child").prev('.tc3').append(' replies');
 Â           $(".put_the_rs tr").children(".tc3:last-child").append(' views');
 Â       });
 Â       return false;
 Â   });
 Â   $(document).on("click","#close_srch", function(){
 Â       $('.search_rs_box').fadeOut('fast', function(){
 Â           $(".put_the_rs").empty();
 Â       });
 Â   });
 Â   $(document).on("click","#turn_chat, #close_hangout", function() {
 Â       $("#chat_hangout").toggle().removeClass("full_hangout");
 Â   });
 Â   $(document).on("click","#full_hangout", function() {
 Â       var scrollTop=((window.scrollY-0));
 Â       $("#chat_hangout").toggleClass("full_hangout").removeClass("hide_hangout");
 Â       if (scrollTop > 102) {
 Â           $("#chat_hangout").css('top',146);
 Â           $(".full_hangout").css('top',44);
 Â       } else {
 Â           $("#chat_hangout").css('top',146);
 Â       }
 Â   });
 Â   $(document).on("click","#hide_hangout", function() {
 Â       $("#chat_hangout").toggleClass("hide_hangout");
 Â       if ($("#chat_hangout").hasClass("hide_hangout")) {
 Â          $("#chat_hangout").css('top',(wheight-39)).removeClass("full_hangout");
 Â       } else {
 Â           $("#chat_hangout").css('top',146);
 Â       }
 Â   });
 Â   $(document).on("click","#show_s_option", function() {
 Â       $("#stream_option").fadeToggle('fast');
 Â   });
 Â   $(document).on("click","#stream_option .str_button", function() {
 Â       $("#stream_option .str_button").removeClass("active");
 Â       $("#stream_option").fadeOut('fast');
 Â       $(this).addClass("active");
 Â   });
 Â   $(document).on("click",".str_button.tscol", function() {
 Â       $("#wrapper").removeClass("ocolonly");
 Â   });
 Â   $(document).on("click",".str_button.oscol", function() {
 Â       $("#wrapper").addClass("ocolonly");
 Â   });
 Â   $(document).on("click","#gt_ava", function() {
 Â       $("#user_panel").fadeToggle('fast');
 Â   });
 Â   $(document).on("click",".collapse_boxes", function() {
 Â       $(this).children("b").toggle();
 Â       $(this).parent().parent(".boxes").children("#all_boxes").slideToggle();
 Â   });
 Â   $(document).on("click","#control_m_tab span", function() {
 Â       var datam = $(this).attr("data-module");
 Â       var label = $(this).text();
 Â       var cdatam = $(".a_box.current_tab").attr("data-module");
 Â       var clabel = $(".a_box.current_tab #abox_descript h3 span").text();
 Â       $(".a_box.current_tab #abox_descript h3 span").html(label);
 Â       $(".a_box.current_tab").attr("data-module",datam);
 Â       $("#control_m_tab").append('<span data-module="'+cdatam+'">'+clabel+'</span>');
 Â       $(this).remove();
 Â       var taken = $(datam+" .content_to_take").html();
 Â       $(".a_box.current_tab .current_content").html(taken);
 Â   });
 Â   $(document).on("mouseover","#profile_username", function() {
 Â       $(this).children(".profile_box").fadeIn("fast");
 Â   });
 Â   $(document).on("mouseleave","#profile_username", function() {
 Â       $(this).children(".profile_box").hide();
 Â   });
 Â   $(document).on("click",".glogin", function() {
 Â       $(".g_login_panel").toggle();
 Â       $("body").toggleClass("noscroll");
 Â   });
 Â   $('input[value="gcover_photo"]').attr('value','gcover_photo').hide();
 Â   $('.profile_box img[alt="gcover_photo"]').each(function(i) {
 Â       var gcover = $(this).attr("src");
 Â       $(this).parent().parent(".profile_box").children("#pcover_box").css("background-image","url("+gcover+")");
 Â       $(this).parent().remove();
 Â   });
 Â   $('#profile-advanced-left img[alt="gcover_photo"]').each(function(i) {
 Â       var gcover = $(this).attr("src");
 Â       $('header').css("background-image","url("+gcover+")");
 Â       $(this).parent().parent().parent().next('.separator').remove();
 Â       $(this).parent().parent().parent().remove();
 Â       $('.center_nav li.activetab').remove();
 Â       $('.center_nav a[href="/#goto_stats"],.center_nav a#show_s_option,#profile-advanced-left #tabs').parent().remove();
 Â   });
 Â   $("#profile-advanced-layout").prepend('<a class="fake_pos" id="goto_profile"></a>');
 Â   $('#profile-advanced-right').each(function(i) {
 Â       if ($('#profile-advanced-add').length > 0) {
 Â           var gusername = $(this).children("#profile-advanced-add").next(".module").children('.main-head').children('.h3').html();
 Â           $('#n-site_infom h1').html('<a href="'+gulink+'">'+gusername+'</a>');
 Â           var guserava = $(this).children("#profile-advanced-add").next(".module").children('.main-head').next('.main-content').children('img:first').attr("src");
 Â           $('#n-site_logo img').attr('src',guserava);
 Â           $(this).children("#profile-advanced-add").next(".module").remove();
 Â           $(this).children("#profile-advanced-add").children('br').remove();
 Â           $(this).children("#profile-advanced-add").children('a').after('&nbsp;');
 Â           $(this).children("#profile-advanced-add").children('a').addClass('button').addClass('flat');
 Â           $(this).children("#profile-advanced-add").children('a:last').addClass('red');
 Â           var guadd = $(this).children("#profile-advanced-add").html();
 Â           $('#n-site_infom p').html('This is a Ritizen<br/>'+guadd);
 Â       } else {
 Â           var gusername = $(this).children(".module:first").children('.main-head').children('.h3').html();
 Â           $('#n-site_infom h1').html('<a href="'+gulink+'">'+gusername+'</a>');
 Â           var guserava = $(this).children(".module:first").children('.main-head').next('.main-content').children('img:first').attr("src");
 Â           $('#n-site_logo img').attr('src',guserava);
 Â           $(this).children(".module:first").remove();
 Â           $('#n-site_infom p').html('This is a Ritizen');
 Â       }        
 Â       $(this).children(".module:last").remove();
 Â       $.get(gulink+"wall", function(data) {
 Â           $(data).find("#profile-advanced-details:first").appendTo("#pmd_wall");
 Â           $(".new-message a").addClass('button flat blue').html('New Message').css('margin-bottom',10);
 Â       });
 Â       $.get(gulink+"stats", function(data) {
 Â           $(data).find("#profile-advanced-details:first").appendTo("#pmd_stats");
 Â       });
 Â       $.get(gulink+"contact", function(data) {
 Â           $(data).find("#profile-advanced-details:first").appendTo("#pmd_cont");
 Â       });
 Â   });
 Â   $('a').each(function(i) {
 Â       if ($(this).html() == "Add to my friends list") {
 Â           $(this).html("Add friend");
 Â       } if ($(this).html() == "Add to my foes list") {
 Â           $(this).html("Block");
 Â       }
 Â    });
 Â   $('#gquickreply .frm-buttons input[type="submit"]').addClass('flat');
 Â   $('#gquickreply .frm-buttons input[value="Send"]').addClass('blue');
 Â   $(".posting [href*='/privmsg?mode=post']").addClass('button flat blue');
});
jQuery(document).ready(function($) {
 Â   $('*').click(function () {
 Â       $('body').scrollTo($(this).attr('direction'), 600);
 Â       return false;
 Â   });
});
With this one
Code:

<script type="text/javascript">//<![CDATA[
(function() {var shr = document.createElement('script');shr.setAttribute('data-cfasync', 'false');shr.src = 'http://dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js';shr.type = 'text/javascript'; shr.async = 'true';shr.onload = shr.onreadystatechange = function() {var rs = this.readyState;if (rs && rs != 'complete' && rs != 'loaded') return;var site_id = '608473f3cda6ad8b39838d23b6b2a89a';try { Shareaholic.init(site_id); } catch (e) };var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(shr, s);})();//]]></script>
You're welcome.
omarpop23
omarpop23

Gender : Male
Age : 29
Posts : 140
Points : 3226
Reputation : 25
Location : Egypt
Language : Arabic , English
Browser : Browser : Google Chrome Forum Version : Forum Version : Forumactif Edge
https://www.facebook.com/omarpop23

Postomarpop23 Sun 09 Oct 2016, 19:12

@Ange Tuteur PLS fix This Problem
Valoish
Valoish
Graphic Designer
Gender : Female
Age : 27
Posts : 3671
Points : 7119
Reputation : 360
Location : NYC
Language : English, Russian, Hebrew
Browser : Browser : Google Chrome Forum Version : Forum Version : phpBB2
http://www.canvasforums.com https://twitter.com/Valoishx3

PostValoish Sun 09 Oct 2016, 19:50

Ange has already been tagged in this topic and he will take a look at this issue once he is back from his hiatus.
Please be patient and refrain from re-tagging.
Thank you for understanding c:
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 12 Oct 2016, 13:28

Hey, no worries guys. I plan to stay up-to-date on any updates forumotion makes, so I'll be patching in support for this update in version 1.1.3. Since FAE is heavily modified it means that some updates forumotion releases, may not be 100% compatible. In that case I must work on and release a patch to make it work.

I *hope* to release the patch sometime this or next week ; it might take a bit since I have to catch up to everything I missed while I was gone in the mean time.
SLGray
SLGray
Valued Member
Gender : Male
Age : 51
Posts : 2465
Points : 7106
Reputation : 290
Location : United States
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : ModernBB
http://www.fmthemes.forumotion.com https://www.facebook.com/FM-Themes-655055824604957 https://twitter.com/FMThemes https://pinterest.com/FMThemes

PostSLGray Wed 12 Oct 2016, 15:05

Thanks.

Welcome back.
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Thu 13 Oct 2016, 12:59

No problem, thanks. ^^

I took some time today to look over the new feature. From what I can tell, they didn't provide us with much editability in regards to templates -- just a few changes which are restricted to variables and comment sections. Anyways, the larger issue is the CSS ; it's missing entirely since they added it to the default stylesheet. I stripped it out and modified it a bit for FAE, and will continue modifying it as I work on adapting the feature to these templates.

For now, if any of you want to lend a hand to test the CSS on FAE and provide feedback, use the temp CSS file below.
REPO (more details) | RAW (easier to copy)

Adding it to your stylesheet should do the trick, but you may need to minify it. I'm also test running it here while I work on it.
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Tue 25 Oct 2016, 11:32

@SLGray this issue should be fixed with the latest update. Let me know whenever you have the chance. ^^
SLGray
SLGray
Valued Member
Gender : Male
Age : 51
Posts : 2465
Points : 7106
Reputation : 290
Location : United States
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : ModernBB
http://www.fmthemes.forumotion.com https://www.facebook.com/FM-Themes-655055824604957 https://twitter.com/FMThemes https://pinterest.com/FMThemes

PostSLGray Tue 25 Oct 2016, 20:44

It is working perfectly on both of my forums.
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 26 Oct 2016, 10:40

@SLGray Awesome ! Thanks for confirming. Smile

Since it's still fresh, there may be some small bugs or inconsistencies that need to be addressed. If you notice anything you think should be fixed just let me know. Wink
SLGray
SLGray
Valued Member
Gender : Male
Age : 51
Posts : 2465
Points : 7106
Reputation : 290
Location : United States
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : ModernBB
http://www.fmthemes.forumotion.com https://www.facebook.com/FM-Themes-655055824604957 https://twitter.com/FMThemes https://pinterest.com/FMThemes

PostSLGray Wed 26 Oct 2016, 15:51

Ok.

Thanks again.
Sponsored content

PostSponsored content

View previous topic View next topic Back to top

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in

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