That is how I have it set up in my ftp public_html/afs these are where my core WP files are.
I am pointing everything from the afsjoints.com/afs folder to afsjoints.com
is that correct? Also I have been to that link you posted and to my knowledge have followed it to the T, which is why i am confused by why it isn’t working.
and my general settings are on: https://afsjoints.com/afs
and site address: afsjoints.com
but I do have a question on that link it says add that line:
require( dirname( __FILE__ ) . ‘/afs/wp-blog-header.php’ );
to the root directory index. Am I copying the index from my main theme or the index file that is directly under the /afs folder? Right now I have it set as the index.php file from my main theme and have this line under the php brackets, like this:
—————————————————————————
<?php get_header(); ?>
<div class=”b my-page”>
<?php
global $myLayout;
$myLayout = new layout( ” );
?>
<div class=”container <?php echo $myLayout -> containerClass; ?>”>
<?php
$myLayout -> echoSidebar( );
?>
<div class=”<?php echo $myLayout -> contentClass( ); ?>”>
<?php
if( !myThemes::get( ‘blog-page’ ) ){
?>
<h1 class=”title”>
<span><?php echo myThemes::get( ‘blog-page-label’ ); ?></span>
</h1>
<?php
}
?>
<div class=”blogging”>
<?php
if( have_posts() ){
while( have_posts() ){
the_post();
get_template_part( ‘cfg/templates/view/blog’ );
}
}
?>
</div>
<?php get_template_part( ‘cfg/templates/pagination’ ); ?>
</div>
<div class=”clearfix”></div>
</div>
</div>
<?php get_footer(); ?>
require( dirname( __FILE__ ) . ‘/afs/wp-blog-header.php’ );