sagelike
Forum Replies Created
-
Forum: Plugins
In reply to: [Code Snippets] Code Snippets is infected?Yes, well that malware is in the plugin which I downloaded from www.ads-software.com so that’s why I posted it here. It’s also in the version you sent me to at:
https://plugins.trac.www.ads-software.com/browser/code-snippets/trunk/js/min/editor.js
I’d upload a screenshot but can’t.
Do a browser find for: ‘u00a0’ and you’ll see it.
Thanks, now I know that the plugin is infected at the source. You’ll need to examine that.
G
Actually, I think it was Search Permalink plugin causing the problem. I installed relevanssi because I was having problems searching phrases with quotes – it didn’t work after the upgrade to 3.1. I thought relevanssi would solve the problem but it didn’t so I removed it.
I eventually discovered that Search Permalink plugin was the problem. This probably solves the problem as well for relevanssi so I may try and reinstall.
Forum: Fixing WordPress
In reply to: Can't search phrases using quotes after upgrade to 3.1I found the problem. Search Permalink plugin was breaking “quoted phrases” in search.
Thanks for the link. It wouldn’t have helped here but I hadn’t seen it bookmarked for future reference.
thx
Forum: Fixing WordPress
In reply to: Version 2.9 image editor not workingIt works for me in IE8 but it doesn’t work in Firefox 3.6. I have WP 3 running on IIS 6 with php 5.2.x
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] Add YARPP to sidebar using codeExcellent. Thanks!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Calling NextGen from a PHP functionCan you provide an example?
I want to add a small image gallery ( 2 x 2 grid thumbnails) to my sidebar using code because I’m not using widgets on my site.
How would I do this?
thx
GForum: Fixing WordPress
In reply to: Problem getting WP Events CalenderFixed it. Here’s a working sample:
<?php
//You instantiate the query object much as you would a WordPress query
$queryObject = new WEC_Query(‘calendarID=2’);//Start the loop
while($queryObject->haveEvents()): $queryObject->the_event(); ?>
<?php $queryObject->theDate(); ?>
<?php $queryObject->eventTitle(); ?>
<?php $queryObject->eventDescription(); ?><?php
//End the loop
endwhile; ?>Forum: Plugins
In reply to: Events Calendar helpYou have to add a parameter to tell it how many events to show otherwise if just gives you the default message:
<?php SidebarEventsList(2);?>
Display is flaky using this so I’m not sure if this is proper form. There’s no parameter list or set of examples so I’m just trying things.
Forum: Fixing WordPress
In reply to: How to convert Unix time to WordPress date formatI found the solution.
I created a new datetime field in the old database and ran a mysql query using phpmyadmin to convert the date:
UPDATE table_name SET wptime = FROM_UNIXTIME(time);
wptime is the new datetime field and time is the old unixtime field.
Worked perfectly and quickly.
Hope someone finds this useful.
I like the plugin but it disabled my tinymce editor. Whichever tab was active when activated (Visual|HTML) is the tab it gets stuck on.
It happened with 2.8 and 2.8.2. Strange!
Forum: Themes and Templates
In reply to: Need Page Layout/Content AdviceHere’s a link to a rough demo. I have it hard coded right now.
https://demo.cochraneeagle.com/
thx
Glenn