3Lancer
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache 0.9.7.1 + Rev SliderRolled back to version 0.9.7 for now.
Either that or go to Performance > Minify > HTML & XML > HTML minify settings: Untick the ‘Enable’ option and then click ‘Save Settings & Purge Cache’ to avoid this bug from occurring.
Forum: Plugins
In reply to: [W3 Total Cache] Last update destroyed HTML minify settingsConfirmed… HTML minify settings: When set to ‘Enabled’ breaks Slider Revolution Version 5.4.8.1. All slide images just disappear and become blank, if enabled.
Forum: Fixing WordPress
In reply to: Logout (double session issue)Hi kartiks16,
Thanks for the suggestion. I’ve tested it, but same result (using TRUE or FALSE as the 2nd parameter). The URL generated matches 100%, only difference is it also adds ‘rel=nofollow’ to the A tag.
Just try clicking on logout 10 times in a row, for example, before it does the redirect and actually logs out. It will come up with that “are you sure page?” every time. A single click on logout works fine, just want the possible multiple clicking issue to be avoided from doing that.
- This reply was modified 5 years, 11 months ago by 3Lancer.
Forum: Requests and Feedback
In reply to: To whitespace or not to whitespace, that is the passwordCheers catacaustic for your feedback.
Forum: Requests and Feedback
In reply to: To whitespace or not to whitespace, that is the passwordUnless I’m doing something wrong, I believe this is a glitch in the WordPress login:
wp-includes/user.php > function wp_signon( $credentials = array(), $secure_cookie = '' )
Basic example of this:
$creds = array(); $creds['user_login'] = 'example'; $creds['user_password'] = ' '; $creds['remember'] = true; $user = wp_signon( $creds, false ); if ( is_wp_error($user) ) { $this->errors[] = $user->get_error_message(); }
Returns: “ERROR: The password field is empty.”
Yet the WordPress signup allows the whitespace password? Therefore you can create locked out accounts upon signup.
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Schema data correction URLI’ve added a DIV wrapper around all the FAQs:
<div itemscope itemtype=”https://schema.org/FAQPage”>
FAQs Questions and Answers here
</div>Which has removed that warning “Missing a QAPage markup item on page to which this item should be associated”. It validates now.
However, still unsure about the IDs being invalid URLs?
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Schema data correction URLSecurity > Settings > System Tweaks
Request Methods: Untick
Suspicious Query Strings: UntickSecurity > Settings > WordPress Tweaks
XML-RPC : Enable, if required for your plugin
REST API: Test as ‘Default Access’If you have access to your database:
https://ithemes.com/security/fixing-ithemes-security-lockouts/Or if you have access to your FTP, temporary rename the plugin to disable it, then rename it back once logged in. White list your IP Address.
Forum: Plugins
In reply to: [Firelight Lightbox] Easy Fancybox version 1.8 (isolating scripts page load)Works!
FancyBox script priority = 10
And ticking the options…
Do not include standard WordPress jQuery library (do this only if you are sure jQuery is included from another source!)
Do not use wp_add_inline_script/style functions (may solve issues with older script minification plugins)
Did the trick.
ps: I already have jQuery loaded on the theme, so that option helps too. Cheers.
Forum: Plugins
In reply to: [Firelight Lightbox] Easy FancyBox version 1.7 – ConflictThanks, that does the trick, tested and can confirm working like before again on a Development server:
remove_action( 'wp_enqueue_scripts', array('easyFancyBox', 'enqueue_scripts') ); remove_action( 'wp_head', array('easyFancyBox', 'print_ie_inline_style'), 11 );
I noticed you have rolled back to 1.6.2 for now? Hopefully that will help others with the upgrade too?
Forum: Plugins
In reply to: [WooCommerce] Random adding of empty P tagsUpdate: Root cause…
wc_format_content( $shop_page->post_content );
Can resolve if instead using…
do_shortcode( $shop_page->post_content );
or better yet adding to ‘functions.php’…
remove_filter( 'woocommerce_short_description', 'wpautop' );
Forum: Plugins
In reply to: [WooCommerce] Random adding of empty P tagsUpdate: It’s an issue with this WooCommerce call doing it…
do_action( 'woocommerce_archive_description' );
Under ‘archive-product.php’ template in the ‘<header class=”woocommerce-products-header”>’ code.
Hi,
I’ve already fixed this issue for me, however noticed it occurs on your demo too:
https://www.etoilewebdesign.com/ultimate-faq-demo/faq-search-page/Type anything into the search box, then while it works fine, just check the text that appears right at the bottom of the page.
For example, I searched “test” and “No search results” appears below the footer:
https://oi67.tinypic.com/eiwcqw.jpgHope that helps.
For now, I’ll add into CSS:
.ui-helper-hidden-accessible{display:none;}