whonickedmyname
Forum Replies Created
-
OMG> we totally missed that setting.
THAT IS PERFECT!
(Your plugin is be far, the best Woo Stripe plugin btw).Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] All cookies show as “purpose pending”Hi,
This seems to have resolved itself after a few hours.
The issue wasL
In the backend – it has them correctly listed. They’re either manually updated or synced.
Front end – All of them had blank functions. (Even things like WordPress and Google ReCaptcha)If you want any advice on where to find info on WCAG, I’d be happy to help ??
Making the web accessible to everyone benefits all of us.
(From a plugin developer point of view – it’s a great selling feature. Most countries have a law that says websites should be accessible, it can cost companies a lot of money if they’re sued over it).
I wouldn’t worry about that.
2.1 AA is what most equality laws are based on.
You can always aim to be even MORE accessible (and aim for 2.1 AAA or 2.2) … but the minimum is 2.1 AA
??
?? No worries. It was worth a shot.
Before I go though:
Your lightbox is already working with keyboard navigation and closes on escape.
You just can’t open the lightbox with the Enter key because you can’t tab to it (tabindex=0, and an event to run the lightbox would fix it).
I would genuinely suggest this is something to look into. WCAG 2.1AA compliance is now really important for a lot of countries.
e.g I work for a large UK Uni and I can’t use your plugin at all because we legally have to be compliant. The fines are huge if we’re not.
Forum: Plugins
In reply to: [Cloudflare] Forbidden bar at bottom of pageHi,
This topic is still unresolved and my client is still not able to use the Cloudflare.
Since updating we now get an Email or API key invalid error.
However, we’re able to login to Cloudflare with the email and the API key has been copied directly from the Cloudflare site.
Forum: Plugins
In reply to: [wpDirAuth] Add New Directory Authentication User ??This plugin links your WordPress installation to a central directory (LDAP) server for login instead of using the WordPress user list.
Usually it’s set up to create a user as a subscriber on first login.
But you can add users separately if you want – it’s particularly useful if you want to add an Admin or Editor etc or if you want to prevent users from creating their own accounts.
Forum: Networking WordPress
In reply to: Creating Site Categories (Advice)I have a Multisite Network.
I would like to provide a Category/One-word descriptor for all sites in the network so that users can filter the SITES by category (not posts).
They’re not actually independent sites – they’re all part of a blogging platform, but the multisite allows me to provide a mini-site to each blogger.
The Universal menu is not standard as it needs to be a Network-wide menu using the SITE categories (If I can ever figure out the best way to do it).
It’s more like creating a Directory of Sites within the network – and providing a menu that goes on them all.
- This reply was modified 5 years, 4 months ago by whonickedmyname.
- This reply was modified 5 years, 4 months ago by whonickedmyname.
Forum: Themes and Templates
In reply to: Twenty-sixteen Dropdown Menu IssueHi,
I stumbled across your post whilst trying to fix another problem:
In your style.css it’s got two references to the arrow (I think where you’ve changed how the arrows sit in the drop down navigation).
To get rid of the double arrows: You should comment out the content: “f431” on line 3058, like I’ve done below:
.main-navigation .menu-item-has-children > a:after { /* content: "\f431"; */ position: absolute; right: 0.625em; top: 0.8125em; }
Then, you’ll only have one – but it will make your drop downs look odd, so change line 3071 to left: -1em to make your side arrow sit a little bit forward of the text.
.main-navigation ul ul .menu-item-has-children > a:after { left: -1em; top: 0.875em; -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); }
That should sort it out ??
Forum: Fixing WordPress
In reply to: [WP 3.2] Media Library not working – Hotfix doesnt fix itI had a feeling that was coming ??
I can’t actually switch themes. This one creates a custom form that turns the site into a bug tracking / enhancement request site.
I will keep investigating and see what I can come up with.
Forum: Fixing WordPress
In reply to: [WP 3.2] Media Library not working – Hotfix doesnt fix itAh this might explain why that didn’t do anything then.
I’ve not got any plugins installed.
It is theme specific as the twenty eleven theme, once activated, corrects the problem (without having to do anything).
Forum: Fixing WordPress
In reply to: [WP 3.1.3] Media Library stops working after upgradeHi baokhangluu,
I had the same problem ad you. I solved it by adding the code below to my themes functions.php.
add_filter( ‘request’, ‘wp_hotfix_313_post_status_query_string_request’ );
function wp_hotfix_313_post_status_query_string_request( $qvs ) {
if ( isset( $qvs[‘post_status’] ) && is_array( $qvs[‘post_status’] ) )
$qvs[‘post_status’] = implode( ‘,’, $qvs[‘post_status’] );
return $qvs;
}Oh, tried this, and got
Fatal error: Cannot redeclare wp_hotfix_313_post_status_query_string_request() (previously declared in /home/step2151/public_html/petridish/wp-content/plugins/hotfix/hotfix.php:76) in /home/step2151/public_html/petridish/wp-content/themes/quality-control/functions.php on line 451
Disabled the hotfix plugin and did it again, and got nothing still.
If anyone could help I’d be really grateful (and I dont think this should be listed as resolved).
Forum: Fixing WordPress
In reply to: [WP 3.1.3] Media Library stops working after upgradeAny more news on this – the Hotfix doesnt work for me.
And its not just down to plugins.
I’ve got no plugins installed, and its a fresh installation of WordPress; the only thing thats installed on it is a the Quality Control template.
Forum: Fixing WordPress
In reply to: Custom posts – Pagination – Authors receive 404 for older postsI found:
(last post)
But this doesnt seem to be working at all. Which is a shame, because it would be a quick fix (which is what I need)
Forum: Fixing WordPress
In reply to: Custom posts – Pagination – Authors receive 404 for older postsHave a better fix, but am not sure how to implement it.
If you add &post_type=ticket to the queries, they all work… all the time.
I’m just not sure where to put this, so that it will work.