Need some help with this plugin
-
I installed this plugin and I now have the original My Account info and your plugin next to each other. How to I fix this?
https://www.dropbox.com/s/ta8659jsxnsd9lh/3.jpeg?dl=0
https://www.dropbox.com/s/yie2xnbkq38ny3q/1.png?dl=0
https://www.dropbox.com/s/jd48lqn16qemgci/2.png?dl=0
Here is the HTML code for the original end points on the left side of My Account page, maybe this will help narrow down a solution.
https://www.dropbox.com/s/diy476t95wy6yrp/4.png?dl=0
As you can see in the screen shots the page has the original table list in div.large-3.col while your plugin is in div.large-9.col
<?php wc_get_template( 'myaccount/header.php' ); ?> <div class="page-wrapper my-account mb"> <div class="container" role="main"> <?php if ( is_user_logged_in() ) { ?> <div class="row vertical-tabs"> <div class="large-3 col col-border"> <?php wc_get_template( 'myaccount/account-user.php' ); ?> <?php do_action( 'woocommerce_before_account_navigation' ); ?> <ul id="my-account-nav" class="account-nav nav nav-line nav-uppercase nav-vertical mt-half"> <?php wc_get_template( 'myaccount/account-links.php' ); ?> </ul> <?php do_action( 'woocommerce_after_account_navigation' ); ?> </div> <div class="large-9 col"> <?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?> <?php endwhile; // end of the loop. ?> </div> </div>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Need some help with this plugin’ is closed to new replies.