pcmdv
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] How to add Really Simple CAPTCHA shortcodeI needed this as well. I have a form in a 200px wide column and recaptcha just breaks it.
I’ve set up a new text validator in the “Advanced Settings” section to answer a simple math question. eg What is 4+4?
Then set the “regular expression” to be – /^\s*[8]*[\.]?[8]+\s*$/
So it will only return the form if the correct answer is provided.
Not totally perfect security but does the job.
I just updated to your new version and I still can’t “add image slide”.
Was this meant to have been resolved?
Hi Guys,
Is there a time frame for this patch? I need to know when it will be fixed or I’m going to have to use something else.
ThanksHi – I don’t think its javascript related. When you make a booking the javascript fires fine. The booking information (ie price and booking form) is replaced with a message to say the “Booking successful, pending confirmation.”
If you go back to the event in question the price and booking form no longer appear and this message is in it’s place, “You are currently attending this event. Manage my bookings”
When you click to “manage my booking” there is a table of the courses you are booked on. The only thing you can do from this table is cancel a booking. You can not add delegates or see the price of the event.
This seems to be in line with your demo version – though I can not view the manage my bookings page as there is no facility to create an account on the demo to access it.
Thanks
PatriciaForum: Fixing WordPress
In reply to: Highlight the year in archive navigation by yearamazing! that is it!
It’s fully working!
Thank you very much!
Forum: Fixing WordPress
In reply to: Highlight the year in archive navigation by yearis_year and is_archive means all the links display as highlighted it doesn’t seem to be able to differentiate between the years.
Forum: Fixing WordPress
In reply to: Highlight the year in archive navigation by yearYeah, I see what you’re saying
I’ve tried:
is_year
is_archive
is_page
is_datewhat I really need is_url == $year
I’m used to expression engine where you can just call a segment of the url so I’m struggling a bit with wordpress framework.
I’m using an archive page which means I thought
if (is_archive('$year') ) echo'class="onpage" '
would work (it doesn’t)I’m a little lost – surely this is possible?
Forum: Fixing WordPress
In reply to: Highlight the year in archive navigation by yearAh well this may be the issue!
I get:
bool(false)which doesn’t make an awful lot of sense…?
Forum: Fixing WordPress
In reply to: Highlight the year in archive navigation by yearapparently not!
Though that doesn’t seem to be making a difference to the result:
<?php $years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts ORDER BY post_date DESC"); foreach($years as $year) : ?> <li><a <?php if (is_page('$year') ) echo'class="onpage" '; ?> href="<?php echo get_year_link($year); ?> "><?php echo $year; ?></a></li> <?php endforeach; ?>this example still doesn’t highlight the year when you are on that page
Forum: Fixing WordPress
In reply to: Highlight the year in archive navigation by yearand then if you click through using the year navigation:
http://www.thecommonguild.org.uk/2011/Forum: Fixing WordPress
In reply to: Highlight the year in archive navigation by year