epicdevspace
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Including a custom set of HTML PHP pages in a WordPress siteHi
If you want to simply add anchor links to the Database Management System then you can keep things separate and install your system in a new directory.
Keep things clean by using a new DB etc.
All the best!
Forum: Fixing WordPress
In reply to: Oops that page cannot be foundPlease follow my instructions and try to use an easy find/replace tool if you do not prefer notepad++ etc.
Work on your original SQL export.
Alternatively hire a developer – it’s probably the safest option.
Forum: Fixing WordPress
In reply to: How can I add an advertisement banner between postsHi
In your index.php :
get_template_part( '/formats/entry', $format ); ?> <!--PLACE YOUR ADVERT CODE HERE--> <?php endwhile; ?>Forum: Fixing WordPress
In reply to: Unable to upload images or make changes from specific machineHi
Check your firewall. Whitelist your site / site’s IP if necessary.
All the best!
Forum: Fixing WordPress
In reply to: Oops that page cannot be foundHi
Your site seems to direct to http://www.upfnp.com/admin/wp-admin/ which doesn’t exist.
You can log into phpMyAdmin and export your SQL then find and replace all instances of upfnp.com/admin/ with upfnp.com/ (You can use notepad / notepad++ to accomplish this).
Save your file. Use the save as option and save as a new file so you have the original copy as a backup.
Then delete your tables and import your saved SQL.
This should resolve your issue.
Forum: Fixing WordPress
In reply to: How can I add an advertisement banner between postsHi
You will need to edit your theme files.
Please post your code(index.php and any other code that is associated with the homepage in your theme’s directory)
Forum: Fixing WordPress
In reply to: WordPress News information doesn't update: still says Billy 4.3Hi
Scroll to the bottom two answers
All the best !
Forum: Fixing WordPress
In reply to: /wpadmin site will not loadHi there
This error has something to do with the Windows Live Writer.
——–
Known Issues
WLW Support and WLW support link 2Forum: Fixing WordPress
In reply to: Product détailHi Pierre
Have you resolved this issue ? I can see your product description.
Forum: Fixing WordPress
In reply to: fatal error on line 49Hi
Your site url / path to your WP install is incorrect.
You can edit the database directly to resolve this by replacing instances of /websites/dc/dcsphotography.com.au and websites/dc/dcsphotography.com.au with dcsphotography.com.au
You can export sql and open it in notepad/notepad++ to perform a find and replace.
Hope this helps, all the best!
Forum: Fixing WordPress
In reply to: Blank Page Template created, can't add contentAdd css and format your page template. There is no missing line, you just need to add styles that render your testimonials in the desired format.
All the best!
Forum: Fixing WordPress
In reply to: Blank Page Template created, can't add contentHi
I agree with @michael
Forum: Fixing WordPress
In reply to: Trying to Finalize and PublishHi
If you changed the site’s url in settings you will need to log in via
http://www.sitename.com/wp-admin/
If the problem persists please provide a link to your site.
All the best!
Forum: Fixing WordPress
In reply to: Error 404 Page Not found and cant access wp admin editorHi
It seems like you have figured this out already.
Please mark this as resolved.
All the best!
Forum: Fixing WordPress
In reply to: Blank Page Template created, can't add contentHi
I think you’re missing an if statement.
<?php /* Template Name: Blank Page Template */ ?> <?php get_header('subpage'); ?> <!-- SUBPAGE HEADER --> <div class="about-sub-hero"> <div class="container"> <div class="sub-hero-text col-lg-6 col-lg-offset-3 col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3 col-xs-12"> <h2><?php echo(types_render_field("hero-header", array())); ?></h2> </div> <!-- end sub-hero-text --> </div> <!-- end container --> </div> <!-- end sub-hero --> <!-- END SUBPAGE HEADER --> <!-- NAVIGATION --> <nav class="navbar navbar-top navbar-inverse" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="<?php echo home_url(); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/logo-nav.png" alt=""></a> </div> <?php wp_nav_menu( array( 'theme_location' => 'main-nav', 'container_class' => 'collapse navbar-collapse navbar-ex1-collapse nav-pulls', 'menu_class' => 'nav navbar-nav' ) ); ?> </div><!-- /.container --> </nav> <!-- END NAVIGATION --> <div id="main-content" class="main-content"> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php // Start the Loop. if ( have_posts() ) : while ( have_posts() ) : the_post(); // Include the page content template. get_template_part( 'content', 'page' ); endwhile;endif; ?> </div><!-- #content --> </div><!-- #primary --> </div><!-- #main-content --> <?php get_footer(); ?>All the best!