Wow Digital
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] This plugin is not WCAG accessibleThe form elements need to have <label for=”field_id”>text here</label> tags on them… where the for=”” should be the ID value of the field generated by CF7.
What can be done to get this moved up to a top priority?
I can’t believe that the plugin is not accessible like this.
I’m wondering if you can give me a list of codes that I could put in to the “Additional User Attributes” that are related to email, as well as what to put in to the “Attributes to show” area.
When I use the samples that are in the admin panel of the plugin, it shows that my last login was April 22, 2009 at 2:24pm, and my user was created on November 30, 1999 at 12am. A little bizarre, because I started at the organization in 2011.
Forum: Plugins
In reply to: [WP Clear RSS Cache] AutomaticI too would like to know how to automate this to always run.
Forum: Plugins
In reply to: [RSSImport] Feeds only updating once per dayHi Frank,
Thank you for being in touch regarding this. What you are suggesting is to not use the RSS Import plugin, but to use a different one? Or, is there a variable that can be added which will override the cache?Forum: Plugins
In reply to: [RSSImport] Feeds only updating once per dayI too am having the same thing. My RSS feed is showing newer items than what’s being generated by the shortcode.
Have you found a solution?
I have updated to the latest 6.1. The page loads much quicker, but there aren’t any of my blocks visible. The majority of the page is blank.
Thoughts?
Hi Damian,
Thank you for letting me know. Once the plugin is speedy and responsive on larger sites I’ll certainly update my rating!! ??
Keep up the great work!
Thanks for this. I also hope that they update the plugin to include this function…
Matt, thanks!! confirmed that commenting out those 2 lines makes the plugin work again.
Cheers!
I get this error every time I add a user to the site when I have the threewp activity monitor plugin enabled, even with disabling the logging for users added.
Forum: Fixing WordPress
In reply to: query_posts problemI’ve tried that… what happens with that, is that I get up to 5 results for the current month… so my events cat has 2 for August in it, and so it only shows 2… but there are 6 in September…
here is all the code for it…
$event_cats=get_post_meta($post->ID,'event_categories',false); query_posts(array('posts_per_page'=>5, 'post_type'=>'event', 'orderby'=>'meta_value', 'meta_key'=>'event_date', 'order'=>'ASC' )); while ( have_posts() ){ the_post(); if(in_category($event_cats) || !$event_cats){ $end_date=get_post_meta($post->ID, 'event_date_end', true); $start_date=get_post_meta($post->ID, 'event_date', true); if(strtotime($start_date)>=(time()-(2*24*60*60))){ echo "<p>"; echo date("M.", strtotime($start_date)) ."<br />"; echo date("d", strtotime($start_date)) ."<br />"; echo "<a href='".get_permalink($post->ID)."'>".get_the_title() ."</a>"; echo get_post_meta($post->ID, 'event_sub_title', true); echo "</p>"; } } }
can it be a feature request? ??
Forum: Fixing WordPress
In reply to: Anonymous comments return blank pagesI figured out what it was… it was one of the text items entered into the list to the spam list… not sure if this is a bug or not.
Forum: Fixing WordPress
In reply to: Anonymous comments return blank pagesok… I found something else strange too…. when I go into the admin panel and try to change the options for ‘discussion’ it gives me the same problem.
Thoughts?