joeyjosay
Forum Replies Created
-
Forum: Plugins
In reply to: [GEO my WP] All of my form ‘request denied’Ah yes Thank you. I had a function from previous version 3.x which must have been the problem. Is this still a function or the google code it fixes my have changed? gmw_include_google_places_api()
Quick question, could xmlrpc.php deny affect wordfence? I had added this and then removed it via htaccess.
#Block WordPress xmlrpc.php requests
<Files xmlrpc.php
order deny,allow
#deny from all allow from xxx.xxx.xxx.xxxThanks Mark, Great info!
I have a question about country blocking. Google ads requires all pages to be accessible from all countries google may want to crawl your site from regardless if you offer ads or services to that country. Do you have data on your premium version country blocking and how it works with google ads?
Additionally, In the traffic logs, I see xss and sqli attacks from the same IP address a hundred times. Are the ip address added completely from the site after one attempt or are the xss and sqli IP’s not blocked permanently?
Forum: Plugins
In reply to: [Post to CSV by BestWebSoft] All exported fields in the same column?https://harvestmedia.zendesk.com/hc/en-us/articles/360023978031-Opening-Excel-files-with-the-correct-CSV-list-separator is a good solution to semicolon delimited csv
- This reply was modified 3 years, 4 months ago by joeyjosay.
bump
Forum: Plugins
In reply to: [W3 Total Cache] PHP Fatal error: Uncaught Error: Class ‘W3TC\Util_Content’Thanks Marko, I reverted DB and files to BEFORE the update yesterday. All is good now and I will attempt another update later this week. Appreciate the help!
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] MS options not showing slidesGreat Thanks, Is there a way to do this with a function or permissions on the server? I’m trying to use as few plugins as possible. Thanks for the help on this. Great plugin.
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] MS options not showing slidesThere is no link to https://mysite.com/wp-admin/admin.php?page=master-slider and I get a wordpress error when i try to access this page
Another idea to try instead of the javascript, is to duplicate your :hover styles for the menu and change :hover to :focus-within, now the menu will function like with a mouse but using the tab key.
so li a:hover would be duplicated to be li a:focus-within and use the same css
- This reply was modified 5 years, 9 months ago by joeyjosay.
yes the shadow is not visible on the black background, this is just reference for others who would need a high vis focus state on their site
You’d could try
-add role=”menubar” to your item nav wrapper.
-add aria-haspopup=”true” aria-expanded=”false” tabindex=”0″ to the<li>
in the top level of the nav
– This would “open” the top level dropdowns, more custom code is needed to use arrow key navigation in nav and to open second level drop downsjQuery( function ( $ ) { // Focus styles for menus when using keyboard navigation // Properly update the ARIA states on focus (keyboard) and mouse over events $( '[role="menubar"]' ).on( 'focus.aria mouseenter.aria', '[aria-haspopup="true"]', function ( ev ) { $( ev.currentTarget ).attr( 'aria-expanded', true ); } ); // Properly update the ARIA states on blur (keyboard) and mouse out events $( '[role="menubar"]' ).on( 'blur.aria mouseleave.aria', '[aria-haspopup="true"]', function ( ev ) { $( ev.currentTarget ).attr( 'aria-expanded', false ); } ); } );
- This reply was modified 5 years, 9 months ago by joeyjosay.
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] No Override in array’slol, wow i can’t believe i did that! thank you so much. this feature really makes a difference
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] No Override in array’show does the ignore term order work in an array? like this didn’t work for me, ‘ignore_term_order’ => ‘true’,
Forum: Developing with WordPress
In reply to: Changing a Tax term ID in pHp my admin/mySQL helpWell, changed the term_id in both both tables and it seems to working fine and using 40 ad the new term_id across the board. Hope this helps someone in the future.
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] No Override in array’ssuper cool if it was, thanks
$terms = get_terms( array( 'taxonomy' => 'places', 'orderby' => 'term_id', 'override' => true, 'number' => 0, ) ); $latest_term = $terms[0]; print_r($latest_term);
- This reply was modified 7 years, 7 months ago by joeyjosay.