mfalkvidd
Forum Replies Created
-
Forum: Reviews
In reply to: [Auto Affiliate Links] Slowed down my site to a crawlYes, I am unable to see any slowdown now. Great work!
Forum: Reviews
In reply to: [Auto Affiliate Links] Slowed down my site to a crawlGreat, thanks!
Forum: Fixing WordPress
In reply to: Do background updates (3.7) not work on Multisite?So that’s why. Couldn’t figure out why my sites weren’t able to auto-update. Thanks a lot chrisbfinternet!
I use git to be able to easily revert plugin updates (well not database changes, but the code at least) and theme updates. It also makes it easy to see what has changed from one version to another (git diff).
It would be great if this did not prevent me from using auto-update.
Forum: Reviews
In reply to: [Auto Affiliate Links] Slowed down my site to a crawlI added only one affiliate link.
I have my own VPS on Linode.
Will try to set up a new clean blog with only your plugin and see if I have the same problem. I’ll report back when I have some news, but it might take a while.Forum: Reviews
In reply to: [Auto Affiliate Links] Slowed down my site to a crawlPHP 5.5.0
Wordpress 3.6.1
51 blog postsForum: Reviews
In reply to: [Auto Affiliate Links] Slowed down my site to a crawlYes, the problem still persists. If the plugin is activated, response times from my public blog pages are >10 seconds. With the plugin inactivated, response times are ~1 second.
Forum: Reviews
In reply to: [Auto Affiliate Links] Slowed down my site to a crawlSure. Not sure when, but I should be able to do it during the weekend at least. I’ll report back when I have the results.
Forum: Reviews
In reply to: [Auto Affiliate Links] Slowed down my site to a crawlIt was on the public pages seen by visitors that are not logged in.
Forum: Plugins
In reply to: [WP Custom Fields Search] remove search plugin by web hammerI agree that the plugin does not follow the rules. I just wanted to suggest an alternative that might be easier to maintain than deleting several lines of code (until the plugin author has corrected the mistake or withdrawn the plugin from www.ads-software.com in order to comply with the rules)
Forum: Plugins
In reply to: [WP Custom Fields Search] remove search plugin by web hammerYes, you are correct. Thanks for pointing it out.
The original poster has already removed the link by setting display: none in css, which also works and might be easier to handle when the plugin is updated (only one line needs to be changed). I used the css method before I purchased the plugin.
Forum: Plugins
In reply to: [WP Custom Fields Search] Modify search button textHi Jarri.
The plugin will automatically use the same language as your WordPress installation. See https://codex.www.ads-software.com/WordPress_in_Your_Language for detailed information on how this works and how you install the language you want.
Forum: Plugins
In reply to: [WP Custom Fields Search] The search form doesn't show me all the resultsDo you mind sharing what the mistake was Cedric? It could be useful to someone else making the same mistake ??
Forum: Plugins
In reply to: [WP Custom Fields Search] Two search fields on my websiteHi TTWan. Do you mean this search field?
https://www.mjo.se/Twosearchfieldsonmywebsite.pngIn that case, you need to configure your sidebar. It is configured differently depending on your theme.
Forum: Plugins
In reply to: [WP Custom Fields Search] remove search plugin by web hammerIt is very easy to remove that link. Just click the link to purchase the plugin.
That will give the author some money for her/his work and encourage further development.Forum: Plugins
In reply to: [WP Custom Fields Search] not working for custom post type post searchIn my case, the generated query has
ORDER BY meta2.meta_value
which needs to be
ORDER BY meta102.meta_value
I got it working by changing line 972 of extra_search_fields.php from
$order=$this->joiner->sql_order($order,$this->name,$this->index,$value,$this->comparison);
to
$order=$this->joiner->sql_order($order,$this->name,100+$this->index,$value,$this->comparison);
but I am not sure if that is the correct solution.