faolie
Forum Replies Created
-
Yes, it does work. I just realised that for some reason, all of our products are also in the Uncategorised category as well as their proper category. If I remove products from the Uncategorised category, Search only shows these products.
I need to go through all our active products and remove them from the Uncategorised category.
Thanks for your help – great plugin by the way.
regards
David Heriot
What was the fix for this? We have the same issue after updating to latest WP and WCK plugin (free).
regards
David Heriot
Forum: Plugins
In reply to: [Contributors: shariarbd] Plugin Not Working On Opera Beta v.20Thanks shariarbd. Works now for me on Chrome and on Opera.
Any idea why the button graphics aren’t showing on my blog on IE?
Forum: Plugins
In reply to: [Contributors: shariarbd] Plugin Not Working On Opera Beta v.20Didn’t see this thread when I posted yesterday, sorry.
The buttons, while visible don’t function on my blog or your demo for that matter on Chrome v33 or Opera v20. Click on the buttons, nothing happens. It works great on FF and ok on IE but there for some reasons the arrows don’t show.
My original problem with installation was wp_head & wp_foot functions not being installed. Once I inserted these into my head and footer it worked (bit hard to do if you don’t know what you’re doing, perhaps give some instructions there?)
Forum: Fixing WordPress
In reply to: Problems with permalinks after updating web.config fileHere’s my web.config. Really just a copy from the WP prettylinks page with the addition of a defaultdocument. Works fine.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Main Rule" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php/{R:0}" /> </rule> </rules> </rewrite> <defaultDocument> <files> <clear/> <add value="index.php"/> </files> </defaultDocument> <httpErrors errorMode="Detailed" /> </system.webServer> </configuration>