hieu.nguyen
Forum Replies Created
-
Thanks Pavel. Very prompt reply as usual.
Thanks Pavel.
You guys also have wonderful videos / documentations.
Keep up the good work. I will surely buy your add-ons. Those coming soon add-ons look really promising.
This is a very very thoughtful and well written plugin. I had to upgrade my VPS PHP version to 5.6 to test it but it’s totally worth it.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to disable search content on Ajax CallThanks Mikko!!! Have a good day good sir.
https://www.aegissafe.com.au/feed/products/
Is this the one good sir?
From this plugin: Woocommerce Product Feed for Google Merchant 0.35Thanks for getting back so quick, Alek. Let me ask my SEO guy for this real quick and come back to you.
Thanks for getting back Alek – I really appreciate this.
Here is the Merchant ID: 10187678Thanks again
Forum: Fixing WordPress
In reply to: Running wordpress in a sub-directory, modifications to htaccessClose topic!
Forum: Fixing WordPress
In reply to: Running wordpress in a sub-directory, modifications to htaccessThanks guys!!! very clear.
Forum: Fixing WordPress
In reply to: Running wordpress in a sub-directory, modifications to htaccessThanks for replying.
May be you misunderstood me. The WP is stored in a sub folder, for example public_html/wp/
However it’s still accessible from https://www.domain.com (not domain.com/wp/) following that link I gave above (WP Codex).
The article requires us to make a copy of index.php and .htaccess and copy to root folder, so 2 identical .htaccess.
Now my problem is I don’t know which one is the one that I should work with to enhance my security.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Taxonomy ( Term ) validation problemI have same issue. The required text field is not working in Edit term page.
By the way, I know how to use save_post hook to validate Post publish but I don’t find any hook save for update/insert term.Forum: Plugins
In reply to: [Contact Form 7] How to make Validation Errors NOT disappear on hover.He simply commented-out those lines, and the by that override the fadeOut effect of the default contact file.
Not the best solution, but definitely acceptable, no core-hacking.
You do need to document this though, if in the future the plugin dev decides to change the code, you will have to change according to his new code ??
Forum: Plugins
In reply to: [Contact Form 7] How to make Validation Errors NOT disappear on hover.@verify: good idea. My developer also did something similar.
@innovnate: you can put it at the end of the template file (of that page).
For example, if that page is contact, you can look for template page-contact.php or something similar and place the code there.This is my dev’s code:
<script> jQuery(function($){ $.fn.wpcf7NotValidTip = function(message) { return this.each(function() { var into = $(this); into.append('<span class="wpcf7-not-valid-tip">' + message + '</span>'); $('span.wpcf7-not-valid-tip').mouseover(function() { //$(this).fadeOut('fast'); }); into.find(':input').mouseover(function() { //into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast'); }); into.find(':input').focus(function() { //into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast'); }); }); }; }); </script>
Forum: Networking WordPress
In reply to: WP Multisite broken after upgrade from 3.4 to 3.5.1No luck. Did my best but no luck.
Forum: Plugins
In reply to: [Contact Form 7] How to make Validation Errors NOT disappear on hover.I have tried high and low, this piece of jquery is located here: wp-content/plugins/contact-form-7/includes/js/scripts.js
$('span.wpcf7-not-valid-tip').mouseover(function() { $(this).fadeOut('fast'); });
However I don’t know how to disable this, without hacking this file – which is what I really don’t want to do.
Any recommendations?
Forum: Networking WordPress
In reply to: WP Multisite broken after upgrade from 3.4 to 3.5.1There are also similar log errors for other files, besides admin-header.php, such as: update-core.php, settings.php
Thanks,
Hieu