callumw
Forum Replies Created
-
Not sure, I’m using the standalone one embedded now as it has more (secure) control ??
Thanks anyway
CW
Forum: Plugins
In reply to: [QR Code Tag] [Plugin: QR Code Tag] Nice, but caching is brokenI wasn’t using caching at the time, but since I activated W3 Total Cache it’s slowed down the count….
Working in my favour rather than against me :o)
CW
Forum: Plugins
In reply to: [QR Code Tag] [Plugin: QR Code Tag] Nice, but caching is brokenI activated W3 Total cach and it’s stopped it from incrementing so much.
Still a 7 count from a single QR (I reset the cache when I posted this topic)
C.
Forum: Plugins
In reply to: [QR Code Tag] [Plugin: QR Code Tag] Nice, but caching is brokenThe Widget : https://c.callumw.com
Forum: Plugins
In reply to: [QR Code Tag] [Plugin: QR Code Tag] Nice, but caching is brokenDitto Doug.
I currently use it only on 1 page (contact) and every time I do a page refresh the cache increments by 1.I use permalinks only and no other caching, so it shouldn’t be creating multiple copies.
CW
Forum: Fixing WordPress
In reply to: Blogroll split into 2 columns rather than 1Found the result by accident.
Looking at various Blogrool Plugins and I found one that does what I’m after, but doesn’t advertise that it does it….
It’s the Advanced Blogroll plugin:
https://www.ads-software.com/extend/plugins/advanced-blogroll/No where near as advanced as Link Library, but give the perfect number of options and dead easy to maintain.
Hope this is useful to someone
more info….
In the page it shows:
TWG Flash Uploader requires at least Flash 8.
Please go to adobe and install it.I tried it on different OS versions and with another of my websites (wp 3.0.2 and different theme) and the results were the same in all cases.
Do I need the TFU flash app for this to work?
CW
It almost works.
I set the widget active and selected “More Options”
Entered all the details and it worked perfectly.I then tried to change the widget title and got an error:
Warning: unserialize() expects parameter 1 to be string, array given in /home/mydomain/public_html/wp-content/plugins/live-countdown-timer/live-countdown-timer.php on line 83The widget which was working now shows the corrected title, but now no timer. Only the following error message:
Warning: mktime() expects parameter 4 to be long, string given in /home/mudomain/public_html/wp-content/plugins/live-countdown-timer/calculateTime.php on line 7And it reset all the custom options back to default
If I reset the “More Options” again it all shows perfectly.
Looks like it’s just changing the widget title that breaks it.Hope that’s useful
CWForum: Plugins
In reply to: [Plugin: GoCodes] GoCode ignoring PermaLink statusI made a hard-code change to as a workaround until this is fixed (hopefully it will be)
I added the ‘/’.index.’.’.php. to the code to force it to display correctly in the Manage GoCodes page
For those having the same issue, open menus.php in a txt editor.
Line 141 reads as:echo ‘<tr class=”alternate”> <td>‘.$gocode->key1.’<small>’.$basewpurl.’/’.$trigger.’/’.$gocode->key1.’/</small></td> <td>’.wsc_gocodes_truncate($gocode->target).'</td> <td style=”text-align: center”>’.$gocode->hitcount.'</td> <td>id.'”>Edit</td> <td>id.'” class=”delete”>Delete</td> </tr>’;
I changed it to the following:
echo ‘<tr class=”alternate”> <td>‘.$gocode->key1.’<small>’.$basewpurl.’/’.index.’.’.php.’/’.$trigger.’/’.$gocode->key1.’/</small></td> <td>’.wsc_gocodes_truncate($gocode->target).'</td> <td style=”text-align: center”>’.$gocode->hitcount.'</td> <td>id.'”>Edit</td> <td>id.'” class=”delete”>Delete</td> </tr>’;
This workaround now works fine ??