dmahler
Forum Replies Created
-
The form is located here Mike. Thank you!
https://nationwideinventoryprofessionals.com/test/welcome/request-info/Debbie
Forum: Fixing WordPress
In reply to: Embedded videos or audio disappear on scheduled postsAll my scheduled posts disappeared!
Forum: Plugins
In reply to: [FeedWordPress] [Plugin: FeedWordPress] How to Insert Feed Posts on a pageNo. No one has ever answered me. ??
That was bizarre! I don’t understand why it worked but it did.
I made sure the page was showing the right URL in the TweetOld Posts settings page and did the “save” again as it suggested. Bang! It authenticated.
I don’t understand why it worked, but it did. Thank you!
Changed my rating just now and donated too. Thank you so much Kevin! I wish every plugin developer was as awesome as you! Keep up the good work!
You are awesome! It works!!!! Thank you soooooooooooo much!!!
Contribution on it’s way by the end of this week!
DebbieKevin, It’s a custom theme made with Artisteer.
The custom author.php code is as follows:
<?php /** * * archive.php * * The archive template. Used when a category, author, or date is queried. * Note that this template will be overridden by category.php, author.php, and date.php for their respective query types. * * More detailed information about templates hierarchy: https://codex.www.ads-software.com/Template_Hierarchy * */ get_header(); ?> <div class="bhw-layout-wrapper"> <div class="bhw-content-layout"> <div class="bhw-content-layout-row"> <div class="bhw-layout-cell bhw-sidebar1"> <?php get_sidebar('default'); ?> <div class="cleared"></div> </div> <div class="bhw-layout-cell bhw-content"> <?php get_sidebar('top'); ?> <!-- This sets the $curauth variable --> <?php $curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author)); ?> <h2>About: <?php echo $curauth->nickname; ?></h2> <br /><br /> <?php userphoto($wp_query->get_queried_object()) ?> <br /><br /> <dl> <dt><strong>Website</strong></dt> <dd><a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url; ?></a></dd> <br /><br /> <dt><strong>Profile</strong></dt> <br /><br /> <dd><?php echo $curauth->user_description; ?></dd> </dl> <br /><br /> <h2>Posts by <?php echo $curauth->nickname; ?>:</h2> <ul> <!-- The Loop --> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"> <?php the_title(); ?></a>, <?php the_time('d M Y'); ?> in <?php the_category('&');?> </li> <?php endwhile; else: ?> <p><?php _e('No posts by this author.'); ?></p> <?php endif; ?> <!-- End Loop --> <br /><br /> </ul> <p> </p> <p> </p> <?php get_footer(); ?>
That would be so awesome if it would work!
Debbie
Forum: Themes and Templates
In reply to: Author page assistanceI’m not a really huge php user, but it looks like you didn’t end the variable by closing it out, so to speak. Try adding the following after your variable and see if that stops the duplication.
<?php endif; ?>
Forum: Fixing WordPress
In reply to: class-ssl.phpDidn’t even think of that one Swanson! Thanks!
Forum: Fixing WordPress
In reply to: How Do I Change Home URI in 3.0?Never mind! Figured it out myself again!
Debbie
Forum: Fixing WordPress
In reply to: How Do I Change Home URI in 3.0?Okay, I just upgraded my theme to be compatible with 3.0.
Can someone please tell me where in the functions (or other location) I can put the URL for my home menu to my website and not the blog home?
Where’s the code located?
Debbie
Forum: Fixing WordPress
In reply to: How Do I Change Home URI in 3.0?Well, after not hearing from anyone, I actually solved the problem myself. So, I am posting it here to help someone else if they need it in the future.
I just added my URL after the echo like this:
echo '<li><a href="https://mice.org">'.$artThemeSettings['menu.topItemBegin']</a></li>';
And that’s in the Functions.php editor.
This changed my home page back to the website and not the blog home.
I hope this helps someone else who might be struggling.
Debbie`
Forum: Fixing WordPress
In reply to: How Do I Change Home URI in 3.0?So not a single person here knows how to put a permanent link into WP?
Forum: Plugins
In reply to: [Plugin: Twitme] Problems!I actually found the problem! Me thinks someone was trying the hack the account because I had some very strange code inserted into the settings for custom URL.
When I put that back to what it was supposed to be, I’m back in business!
Sorry about that!
DebbieForum: Fixing WordPress
In reply to: 2.7 Image Upload Not WorkingThanks folks! You gave me the idea to do the same. I disabled all my active plugins and started to reactivate them one-by-one!
CommentLv is another plugin that stops the image uploader from working also!
Thank you so much! Next time, I’ll try disabling the plugins like that again! Lesson learned.