skip to Main Content

WordPress – Javascript file won't load using laragon (ERR_ABORTED 404 (Not Found))

I cannot use/access the carousel.js file - GET http://name.test/js/carousel.js net::ERR_ABORTED 404 (Not Found) front-page.php <div class="row"> <div class="col-lg-4"> <div class="carousel_item carousel_item--visible">first post</div> </div> <div class="col-lg-4"> <div class="carousel_item">second post</div> </div> <div class="col-lg-4"> <div class="carousel_item">third post</div> </div> </div> <div class="carousel_actions"> <button id="carousel_button--prev"…

VIEW QUESTION

WordPress – ACF repeaater Not working even after coding the fields right

My code <?php if( have_rows('mir_global_header') ): ?> <div id="mid-bg1"> <div id="top-container1"> <?php while( have_rows('mir_global_header') ): the_row(); $count = get_row_index(); $header_image = get_sub_field('header_image'); $header_image_text = get_sub_field('header_image_text'); ?> <img src="<?php echo $header_image; ?>" id="<?php echo $count; ?>" alt="<?php echo $header_image_text; ?>" />…

VIEW QUESTION
Back To Top
Search