jamesict
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Date display in Events Calendar@ bolide
Thanks for taking the time to comment.
I have been reading up on all of this and it looks like it should be a simple process of using something like the following:
ec3_get_events(30, '', '', 'l j F');
However this only throws errors up at me.
My next tack is to change the default settings, but for the life of me, I cannot find them within the Event Calendar plugin code.
Do you or anyone else out there have any idea where it needs to be changed?
Please help – I do not have much hair left to pull out now!
Forum: Plugins
In reply to: Widgetize Pages LightThanks for your help Alchymyth. I have sorted it now. It just needed some CSS adjustments.
Hi Dan and Dean,
Just for your interest, I discovered it was the Your Members plugin causing the problem.
However, they quickly sorted it out for me and I am now able to assign a 12 character password. They have told me that an update for this issue will be in the making.
A long and frustrating issue but thanks to great people like yourselves and the Your Members team, it is now all resolved.
Thank you very much for your hard work!
Hi Dean,
Thank you for the suggestions – I will work my way through them.
Yes, the emailed password does work.
One other element I have just discovered [whether it is relevant or not I do not know], but new users are set to the role of Author, but I just noticed that they are being activated as Subscriber.
Hi Dan,
I have the output now, but would rather I emailed it to you.
How can I get in touch with you please?
Hi Dan,
Thank you for persisting with me – I am very thankful of your efforts and believe me, I am trying to get this sorted.
Anyway, it took me some time to work with my host to get Shell enabled and up and running.
Unfortunately though, I do not have any results to give you.
This is a copy of my attempts:
login as: *****
Authenticating with public key “***”
Passphrase for key “***”:
Last login: Tue Aug 28 21:45:51 2012 from cpc16-***-2-0-***.3-3.****.******.com
*****@my-domain [~]# cd /home/***/public_html
*****@my-domain [~/public_html]# grep -rE ‘wp_generate_password|random_password’I let it sit like this until the network connection kicked out – which was quite some time, but as you can see, no results appeared.
Is there anything else I can try?
Hi Dan,
The plugin is called Your Members and controls access to pages and posts etc.
The wp-login.php file is the one that came with WP 3.4.1
I did a search through all files [all my plugins and my theme] so yes, EVERYTHING was checked.
I cannot think what may be causing it.
Hi Dan,
I have done extensive searches across all of my plugins and the example you gave above cannot be found.
One of my plugins does find the following, but that is all.
if(!$password){ $password = wp_generate_password( 12, true );
Could there be any other reason for this?
As it is, the following shows what new users receive via email.
Username: jkl
Password: b72fb2eHi Dan,
Thanks for taking the time to let me know.
I do not think it is my wp-login file, so it must be a plugin. I just had a quick look through though and none of them seem like they would be related to this issue.
What do I need to look for exactly in the plugin files themselves?
Thanks for your help – it is much appreciated.
Hi Dan,
I am talking about this, which sits under Password Policies – Length
‘How long must passwords be? Must be >= 10. Default: 10.’
I have set it to 15 but only a 7 character password is sent to new users?
Forum: Plugins
In reply to: [Annotator] [Plugin: Annotator] Missing settings for AnnotateIt accountExactly the same for me kewerner is experiencing
Forum: Fixing WordPress
In reply to: $count configurationHi WebTechGlobal,
Thanks for providing me with your code.
Unfortunately, not sure what I am doing wrong, but I cannot get it to work.
Forum: Fixing WordPress
In reply to: $count configurationHi WebTechGlobal,
Ummm, sorry about that…
Here it is.
<?php get_header(); ?> <div id="content-container"> <div id="content"> <div class="navigation"> <div class="nav-previous"><?php next_posts_link('« Next page') ?></div> <div class="nav-next"><?php previous_posts_link('Previous page »') ?></div> </div><!--[if !IE]>end .navigation<![endif]--> <?php if($paged < 2) { // front page ?> <?php $count = 2 ?><?php while(have_posts()) : the_post(); ?> <?php if($count==2 || $count==5 || $count==8) { ?> <div class="normal-content<?php if($count==2) { echo ' first-row'; } ?>"> <?php } ?> <div id="post-<?php the_ID(); ?>" class="post-alt"> <span class="imageLibrary"><a href="<?php the_permalink(); ?>" rel="bookmark"><p><?php echo get_post_meta($post->ID, "OVERLAY", true); ?></p><?php the_post_thumbnail(); ?></a></span> <?php ?> </div><!-- end id post --> <?php if($count==1) { ?> </div><!--[if !IE]>end .normal-content<![endif]--> <?php } elseif($count==4 || $count==7 || $count==10) { ?> <?php } ?> <?php $count = $count + 1; ?> <?php endwhile; ?> <?php } else { ?> <?php $count = 4 ?><?php while(have_posts()) : the_post(); ?> <?php if($count==1 || $count==4 || $count==7 || $count==10) { ?> <div class="normal-content<?php if($count==1) { echo ' first-row'; } ?>"> <?php } ?> <?php if($count==3 || $count==3 || $count==6 || $count==9) { ?> </div><!--[if !IE]>end .normal-content<![endif]--> <?php } ?> <?php $count = $count + 1; ?> <?php endwhile; ?> <?php } ?> <div class="navigation"> <div class="nav-previous"><?php next_posts_link('« Next page') ?></div> <div class="nav-next"><?php previous_posts_link('Previous page »') ?></div> </div><!--[if !IE]>end .navigation<![endif]--> </div><!--[if !IE]>end #content<![endif]--> </div><!--[if !IE]>end #content-container<![endif]--> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Adding a class WITHIN the previous_post functionthese links are not just for decoration
Ok, ok – keep your shirt on. I missed reading that bit – my mistake.
Not to worry now anyway – I have it sussed.
Thanks ??
Forum: Fixing WordPress
In reply to: Adding a class WITHIN the previous_post functionHi alchymyth,
I am using it with css that displays the image/hover/active
Like this…
.navi-prev, .navi-previous, .navi-previous a { float: left; width: 360px; height:168px; margin: 0; background: url('img/nav/previous.png') no-repeat; border: 0; } .navi-prev:hover, .navi-previous:hover { background-position: -360px 0; }
Actually, no, I wasn’t aware that this function was deprecated – do you know if there is a current replacement and do you have any ideas as to how to go about achieving what I am after?