drmanry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to detect the page you’re currently viewing?Take a look at this short tutorial:
https://rubiqube.com/wordpress-tutorial-rounded-corner-tab-menu-using-css/
It is based on categories, but can easily be changed to pages instead.
Forum: Fixing WordPress
In reply to: How to detect the page you’re currently viewing?<?php wp_list_pages('title_li='); ?>
Forum: Fixing WordPress
In reply to: Title Bar Edit?In the header.php file for your template, you would edit the <title> tag as desired.
Forum: Fixing WordPress
In reply to: Creating an IF-THEN condition within The LoopTry something like this:
<?php $values = get_post_custom_values("external_link"); if (isset($values[0])) { ?> <h1><a href="<?php $values = get_post_custom_values("external_link"); echo $values[0]; ?>" alt="" target="_blank" />"<?php the_title(); ?></a></h1> <?php } else { ?> <h1><?php the_title(); ?></h1> <?php } ?>
Forum: Fixing WordPress
In reply to: I cant sign in? whats going on?????????Can you FTP to your site and delete the ad rotator plugin folder?
Forum: Fixing WordPress
In reply to: Can′t combine categories and tags with query_postsIf you’re using WP2.5 or earlier, this is a known bug.
https://core.trac.www.ads-software.com/ticket/5433
Then use this as a workaround:
query_posts('cat=6&tag=Theatre+Theatre');
Forum: Fixing WordPress
In reply to: Display posts in Ascending order?You can’t just cut and paste the code provided because you haven’t defined $query_string. Try this:
<?php query_posts('showposts=5&order=ASC'); ?> <?php while (have_posts()) : the_post(); ?>
You can control the number of posts shown using ‘showposts’.
Forum: Fixing WordPress
In reply to: I cant sign in? whats going on?????????Try going directly to the login page:
https://bestcellulitetreatmentinfo.com/wp-login.php
Once in, then disable the plugin.
Forum: Fixing WordPress
In reply to: Rename Blogroll^^ I wasn’t quite fast enough…
From the dashboard, click on the “Links” heading in the left hand column. Under “Links”, select “Link Categories”.
Then simply rename the “Blogroll” category to whatever name you would like to use.
Forum: Fixing WordPress
In reply to: Custom User Fields, Preferably Asked For During Registration—Here’s a plugin that should work:
https://www.ads-software.com/extend/plugins/cimy-user-extra-fields/
Forum: Fixing WordPress
In reply to: Display only posts from one category on homepageMaybe something else in your loop on the home page is not quite right. Here’s what I use on my front page:
<?php query_posts('category_name=Headline'); ?> <?php while (have_posts()) : the_post(); ?> <!-- this is where the title of the Lead Story gets printed --> <div class="featurestory"> <h3><?php the_title(); ?></h3> <!-- this is where the excerpt of the Lead Story gets printed --> <?php the_content(); ?> <?php endwhile; ?>
It works for me.
Forum: Fixing WordPress
In reply to: how to make your blog privateYou can use the Members Only plugin
Forum: Fixing WordPress
In reply to: Only Header and First Post Title Is LoadingLooks like something has happened to your template files for mandigo. Try switching to the default template to see what happens. If that fixes it, I would suggest reloading the mandigo theme.