Ash
Forum Replies Created
-
Forum: Plugins
In reply to: [WassUp Real Time Analytics] [Plugin: WassUp] PHP Warning: preg_match()@helened I have tried that with no joy.
Forum: Plugins
In reply to: [WassUp Real Time Analytics] [Plugin: WassUp] PHP Warning: preg_match()Forum: Plugins
In reply to: [WassUp Real Time Analytics] [Plugin: WassUp] PHP Warning: preg_match()I too am having this issue.
Thanks. Well done on the new member to the codework team.
Forum: Themes and Templates
In reply to: Page template that has page content & lists postsAnswered my own question.
<?php /* Template Name: ListPostsInCategoryThatHasSameNameAsPage */ ?> <?php get_header(); ?> <div id="content"> <div id="main"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h1><?php the_title(); ?></h1> <?php the_content(); ?> <?php endwhile; else: endif; ?> <?php query_posts('category_name='.get_the_title().'&post_status=publish,future');?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <p><?php the_content(); ?> <?php endwhile; else: endif; ?> </div> </div> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Adding more than 2 RSS feed areas to the Dashboard*bump*
Forum: Plugins
In reply to: [Plugin: RB Internal Links] Insert link button not workingHowever, now I’m only seeing a gray block when I open the interface.
(Now on 2.9.1)
Perhaps related to styling?
Same here.
Forum: Plugins
In reply to: [Plugin: Drag-To-Share eXtended] JS loads but drag doesn’t do anythingcan anyone tell me how to get LinkedIn working as a option. I have made the icon, CSS & js to make it appear and work when you drag on to it, but the passing of the page data seems to not work. Can anyone help?
I located this line in the comments…
https://www.linkedin.com/shareArticle?mini=true&url=PERMALINK&title=TITLE&source=BLOGNAME&summary=EXCERPT
And I found what I think is the JS that is used to pass the info across, I copied it and edited it to suit, but it’s not working, so I must either be missing something or I have done it wrong (I expect the latter ??
else if (id.indexOf("linkedin") != -1) { window.location.href = "https://www.linkedin.com/shareArticle?mini=true&url=" + currentUrl + "&source=Travel-Mailer&summary=" + dtsv.title; }
Anyone?
Forum: Plugins
In reply to: [Plugin: RB Internal Links] Insert link button not workingstill not working here
*Hello anyone?*
Forum: Plugins
In reply to: [Plugin: RB Internal Links] Insert link button not workingI too am having the same issue. WP 2.8.2
Forum: Installing WordPress
In reply to: Browsers don’t seem to see the host fileThanks ClaytonJames, but nope.
I have done all that, but issues seems to be with the browser not going to the new ip stated in the hosts file. but if you ping the domain it does go to the right ip from the host file.
I was thinking maybe does the .htaccess file do something to redirect the browser to the other location?
Forum: Fixing WordPress
In reply to: How to list authors?MichaelH,
Any way to exclude a author by id from that?
Forum: Fixing WordPress
In reply to: How to list authors?Sorry I have been dumb. That’s great thanks.
Forum: Fixing WordPress
In reply to: How to list authors?Thanks MichaelH,
But that’s not what I’m after. I would like to be able for the code to do something like this.
look at the list of the authors. List those names & add some of their profile info along with their name.
Like this.
Mike – The Boss
Ash – The Web Designer
Simon – The Graphic DesignerThe job title could be stored in the surname field maybe as it’s not being used?