Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9269277
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T15:04:41+00:00 2026-06-18T15:04:41+00:00

Im helping out a friend by making a website to help their shop. It

  • 0

Im helping out a friend by making a website to help their shop. It works well when im running it on a webserver on my laptop. It loads the images just fine. But when I upload it to the site it doesnt work

Ive stripped out a lot of he code to just include whats important.

The website is http://www.adamwalker.net84.net/index.php

from what i can make out it might be in one of these 2 files… but im really not sure…. but these are the ones giving errors in the console

custom.js

    // Jquery with no conflict
   jQuery(document).ready(function($) {

//##########################################
// COLUMNIZR
//##########################################

$('.multicolumn').columnize({ 
    columns: 2
});


//##########################################
// CAROUSEL
//##########################################

$('#mycarousel').jcarousel({
    // Configuration goes here (http://sorgalla.com/projects/jcarousel/)
    vertical: false
});

$('#mycarousel-vertical').jcarousel({
    // Configuration goes here (http://sorgalla.com/projects/jcarousel/)
    vertical: true
});

//##########################################
// LOF SLIDER
//##########################################


var buttons = { previous:$('#home-slider .button-previous') ,
                    next:$('#home-slider .button-next') };  



$('#home-slider').lofJSidernews( {
    interval        : 4000,
    direction       : 'opacitys',   
    easing          : 'easeInOutExpo',
    duration        : 1200,
    auto            : true,
    maxItemDisplay  : 5,
    navPosition     : 'horizontal', // horizontal
    navigatorHeight : 73,
    navigatorWidth  : 188,
    mainWidth       : 940,
    buttons: buttons
});




//##########################################
// Superfish
//##########################################

$("ul.sf-menu").superfish({ 
    animation: {height:'show'},   // slide-down effect without fade-in 
    delay:     800 ,              // 1.2 second delay on mouseout 
    autoArrows:  false,
    speed: 100
});


//##########################################
// PROJECT SLIDER
//##########################################

$('.project-slider').flexslider({
    animation: "fade",
    controlNav: true,
    directionNav: false,
    keyboardNav: true
});


//##########################################
// Filter - Isotope 
//##########################################


var $container = $('#filter-container');

$container.imagesLoaded( function(){
    $container.isotope({
        itemSelector : 'figure',
        filter: '*',
        resizable: false,
        animationEngine: 'jquery'
    });
});

// filter buttons

$('#filter-buttons a').click(function(){

    // select current
    var $optionSet = $(this).parents('#filter-buttons');
    $optionSet.find('.selected').removeClass('selected');
    $(this).addClass('selected');

    var selector = $(this).attr('data-filter');
    $container.isotope({ filter: selector });
    return false;
});

//##########################################
// Tool tips
//##########################################


$('.poshytip').poshytip({
    className: 'tip-twitter',
    showTimeout: 1,
    alignTo: 'target',
    alignX: 'center',
    offsetY: 5,
    allowTipHover: false
});



$('.form-poshytip').poshytip({
    className: 'tip-twitter',
    showOn: 'focus',
    alignTo: 'target',
    alignX: 'right',
    alignY: 'center',
    offsetX: 5
});

//##########################################
// Tweet feed
//##########################################

$("#tweets").tweet({
    count: 3,
    username: "ansimuz"
});

//##########################################
// PrettyPhoto
//##########################################

$('a[data-rel]').each(function() {
    $(this).attr('rel', $(this).data('rel'));
});

$("a[rel^='prettyPhoto']").prettyPhoto();


//##########################################
// Accordion box
//##########################################

$('.accordion-container').hide(); 
$('.accordion-trigger:first').addClass('active').next().show();
$('.accordion-trigger').click(function(){
    if( $(this).next().is(':hidden') ) { 
        $('.accordion-trigger').removeClass('active').next().slideUp();
        $(this).toggleClass('active').next().slideDown();
    }
    return false;
});

//##########################################
// Toggle box
//##########################################

$('.toggle-trigger').click(function() {
    $(this).next().toggle('slow');
    $(this).toggleClass("active");
    return false;
}).next().hide();




//##########################################
// Tabs
//##########################################

$(".tabs").tabs("div.panes > div", {effect: 'fade'});



//##########################################
// Create Combo Navi
//##########################################    

// Create the dropdown base
$("<select id='comboNav' />").appendTo("#combo-holder");

// Create default option "Go to..."
$("<option />", {
    "selected": "selected",
    "value"   : "",
    "text"    : "Navigation"
}).appendTo("#combo-holder select");

// Populate dropdown with menu items
$("#nav a").each(function() {
    var el = $(this);       
    var label = $(this).parent().parent().attr('id');
    var sub = (label == 'nav') ? '' : '- ';

    $("<option />", {
     "value"   : el.attr("href"),
     "text"    :  sub + el.text()
    }).appendTo("#combo-holder select");
});


//##########################################
// Combo Navigation action
//##########################################

$("#comboNav").change(function() {
  location = this.options[this.selectedIndex].value;
});


//##########################################
// Resize event
//##########################################

$(window).resize(function() {

    var w = $(window).width();
    //console.log(w);

    $container.isotope('reLayout');

}).trigger("resize");


    });//close  

or jQuery FlexSlider v1.8

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T15:04:42+00:00Added an answer on June 18, 2026 at 3:04 pm

    I’m noticing a few issues with your site.

    First, it looks like your webhost loads their content and javascript into your page when there is a 404. (I see javascript being requested from error404.000webhost.com). That’s quite bad practice. I would immediately move to a new webhost (I know, sometimes easier said than done, but don’t do business with companies that hijack your error pages… leads to weird problems – perhaps this one?!)

    Second, the error is that $(‘.multicolumn’) does not have a method called columnize(). I found this by using the web tools inspector in chrome.

    Moving on to the network tab, I noticed javascript that appears to be used for the column building tool. http://www.adamwalker.net84.net/js/jquery.columnizer.min.js — this is a 0-byte file (not a 404), so this is your problem. This file is empty (or not being served for some reason), which causes the rest of your code to fail.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm helping out a friend with a website he's developing and we are having
Hia guys, I'm helping out a friend with some code and so am trying
So today a friend is helping me with a PHP project I am making.
Right now I am helping a friend flesh out an idea about displaying various
Helping out a friend here, and thought I would play with programming an iPad.
In helping out a friend with THIS site, I've managed (with plenty of SO
I'm interested in helping a friend out this summer with some JavaScript trouble he
My program is not working well, and I don't understand why, mind helping out
I'm helping out a friend, writing him a program. He is re-recording the soundtrack
I am helping a friend with a website for her non-profit organization. The main

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.