marties
Forum Replies Created
-
Great!
i played a long time trying to connect to the admin on a duplicated dev website before thinking of looking in wp-config.php ??Forum: Fixing WordPress
In reply to: Feature request: sanitize filenamei agree with you to keep core generic and so,
but don’t understand when the sanitize function is already implemented in wordpress, it seems “the only” thing is to activate it or at least give the option.Forum: Fixing WordPress
In reply to: Feature request: sanitize filenameread the trac ;
maybe it’s better to keep going with the appropriate plugin after all.Forum: Fixing WordPress
In reply to: Feature request: sanitize filenameok got it, as wordpress has it natively, maybe a checkbox in Settings/Media already checked by default like: * I want my uploaded files sanitized
Maybe it’s a too noob approach, but i remember struggling on a website with thousands of non sanitized files before migrating…
Forum: Fixing WordPress
In reply to: Feature request: sanitize filenameyes, it’s what i’m using.
But i just wonder why this major feature is not native in wordpress.
Forum: Plugins
In reply to: [Contact Form 7] Constant spinning animation on submithi,
same for me here on numerous websites, in the chromium console i get these errors:Failed to load resource: the server responded with a status of 401 (Unauthorized) /wp-json/contact-form-7/v1/contact-forms/368/refill /wp-json/contact-form-7/v1/contact-forms/368/feedback
Forum: Plugins
In reply to: [Autoptimize] CDN option protocol-relativeyour right, the webmaster has to know what she/he is doing after all;
you are very much welcome to change your mind… or not, it is not critical on this subject.Keep going and thanks for your speedy answer.
hi,
only way for the moment don’t bother this option and prefer altering the header file in child template.Forum: Plugins
In reply to: [SlickNav Mobile Menu] hamburger menu not clickablehey, thanks a lot
now i’ll just have to move a little bit the closing button search form using css.Sorry for the inconvenient
Keep going your good stuff!
Forum: Reviews
In reply to: [JWD Teams] Nice plugin but…Hi,
tested the 1.3.5.- the jquery conflict is gone! great
- the tooltip is bothering because sometimes you only need to display one people per page and his full bio. Maybe a checkbox in the admin or a parameter in the shortcode to activate it or not?
- the backlink is now visible, so it’s just a css rule to hide it if you agree
- no need to display the team name before the members or again it’s a checkbox rule
Hope that helps, keep good work
Forum: Themes and Templates
In reply to: [Quark] Disable scroll to topi reinstalled from scratch, error gone
Forum: Plugins
In reply to: [Insert PHP Code Snippet] PHP Snippet always appears on top of pagei had this problem on the search results page, doing a test solved this.
if !( is_search() ) {put the code you want}
But it’s a bit weird
Forum: Plugins
In reply to: [WordPress Full Screen Search Overlay] Close Full Screen Searchhi,
a bit late but who knows ??
i am no jquery master but this work for me, if it’s ok, it would be great to have it merged (hey devs), btw it’s working great on wp 4.7.4// When the document is ready... jQuery( document ).ready( function( $ ) { // ... display the Full Screen search when: // 1. The user focuses on a search field, or // 2. The user clicks the Search button $( 'form[role=search] input, form[role=search] button' ).on( 'focus, click', function( event ) { // Prevent the default action event.preventDefault(); // Display the Full Screen Search $( '#full-screen-search' ).addClass( 'open' ); // Focus on the Full Screen Search Input Field $( '#full-screen-search input' ).focus(); } ); // Hide the Full Screen search when the user clicks the close button $( '#full-screen-search button.close' ).on( 'click', function( event ) { // Prevent the default event event.preventDefault(); // Hide the Full Screen Search $( '#full-screen-search' ).removeClass( 'open' ); } ); //ADD THIS CODE FOR ESC KEY $(document).keypress(function(e) {if (e.keyCode==27){ $( '#full-screen-search' ).removeClass( 'open' );}}); } );
Forum: Plugins
In reply to: [Page scroll to id] jump to another page does not workhi,
thanks for taking time
here is the link
test
after loading you get redirected to the top…Forum: Themes and Templates
In reply to: [Quark] Disable scroll to topHi again,
there is something in modernizr-min.js that enable (or cause this bug ?).
I don’t know about modernizr but if i rename it problem solved!There is a talk about it
https://github.com/Modernizr/Modernizr/issues/720I wish there is a better way?
Any help?