dlwooten
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Domain.com Hosting?Ok sorry. I am having an image upload problem on my wordpress install. there are plenty of issues other than that. NexGallery is not properly uploading files. And some plugins are activating and some are causing errors.
On the nexGen and media uploader issue the only thing that works is chmod 777. That solves the problem but creates a security. I am about to give up on Domain.com and go to another hosting service
Forum: Fixing WordPress
In reply to: Domain.com Hosting?Samuel B No offense but I don’t understand your answer
Forum: Fixing WordPress
In reply to: Domain.com Hosting?Lightfoot,
Where you able to get this issue resolved with domain.com? I am having problems myself. The customer service is no existent.Dan
Forum: Fixing WordPress
In reply to: How to customize previous and next links with graphicHere is what the code looks like now.
<?php
/**
* Template: Navigation.php
*
* @package WPFramework
* @subpackage Template
*/if ( is_singular() and !is_page() ) { ?>
<!–BEGIN .navigation-links–>
<div class=”navigation-links single-page-navigation”>
<div class=”nav-previous”><?php previous_post_link( ‘<img src=”https://woo-atlanta.com/clients/femme-brunette/wp-content/themes/femme_brunette/images/previous.jpg” />’ ) ; ?></div>
<div class=”nav-next”><?php next_post_link( ‘<img src=”https://woo-atlanta.com/clients/femme-brunette/wp-content/themes/femme_brunette/images/next_arrow.jpg” />’ ) ; ?></div>
<!–END .navigation-links–>
</div>
<?php } else { ?>
<!–BEGIN .navigation-links–>
<div class=”navigation-links page-navigation”>
<span class=”nav-next”><?php next_posts_link( ‘<img src=”https://woo-atlanta.com/clients/femme-brunette/wp-content/themes/femme_brunette/images/previous.jpg” />’ ); ?></span>
<span class=”nav-previous”><?php previous_posts_link( ‘<img src=”https://woo-atlanta.com/clients/femme-brunette/wp-content/themes/femme_brunette/images/next_arrow.jpg” />’ ); ?></span>
<!–END .navigation-links–>
</div>
<?php } ?>I can’t seem to get it to all work together.
Forum: Fixing WordPress
In reply to: How to customize previous and next links with graphicThanks, I just got that part to work. This is section I’m having trouble with now.
<div class=”nav-previous”><?php previous_post_link( ‘<span class=”nav-meta”>%link</span>’ ); ?></div>
<div class=”nav-next”><?php next_post_link(‘%link <span class=”nav-meta”>?</span>’); ?></div>I converted to:
<div class=”nav-previous”><?php previous_post_link( ‘<img src=”https://woo-atlanta.com/clients/femme-brunette/wp-content/themes/femme_brunette/images/previous.jpg” />’ ) ; ?></div>
<div class=”nav-next”><?php next_post_link( ‘<img src=”https://woo-atlanta.com/clients/femme-brunette/wp-content/themes/femme_brunette/images/next_arrow.jpg” />’ ) ; ?></div>And it doesn’t work. Images show up but don’t link.
Forum: Fixing WordPress
In reply to: How to customize previous and next links with graphicThanks,
Using wp-framework archive.php is pulling in navigation.php not sure what to change on this page. This is the code on navigation.php
<?php
/**
* Template: Navigation.php
*
* @package WPFramework
* @subpackage Template
*/if ( is_singular() and !is_page() ) { ?>
<!–BEGIN .navigation-links–>
<div class=”navigation-links single-page-navigation”>
<div class=”nav-previous”><?php previous_post_link( ‘<span class=”nav-meta”>%link</span>’ ); ?></div>
<div class=”nav-next”><?php next_post_link(‘%link <span class=”nav-meta”>»</span>’); ?></div>
<!–END .navigation-links–>
</div>
<?php } else { ?>
<!–BEGIN .navigation-links–>
<div class=”navigation-links page-navigation”>
<span class=”nav-next”><?php next_posts_link( ‘<span class=”nav-meta”>«</span> Older Entries’ ); ?></span>
<span class=”nav-previous”><?php previous_posts_link( ‘Newer Entries <span class=”nav-meta”>»</span>’ ); ?></span>
<!–END .navigation-links–>
</div>
<?php } ?>