petsoukos
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Tiles] The featured Image doesn't appear anymoreGreat news, Mike! Thank you!
Forum: Plugins
In reply to: [WP Tiles] The featured Image doesn't appear anymoreFor some reason it bugs out when the javascript picks up the img src url, and switches it with a div tag with inline-style and tries to place the image url in the css background-image property.
Forum: Plugins
In reply to: [WP Tiles] The featured Image doesn't appear anymoreFor anyone looking the previous version, it can be found and downloaded here:
Github 1.0.1 versionForum: Plugins
In reply to: [WP Tiles] The featured Image doesn't appear anymoreSame problem, updated today and no more featured images show up.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publcize not workingSame here, any solutions?
Forum: Plugins
In reply to: [WP Tiles] Scrappy loadingDoes not work. The class exists from the start of the page load.
Take a look
Loading at start.
http://imgur.com/n9ZOtFMContinues to load.
http://imgur.com/MuOdlSmBefore end.
http://imgur.com/KBtUTzOThen it snaps in place.
techsmart.grForum: Plugins
In reply to: syntax error with " Share This" pluginWell I inspected the rest of the code following line 32 and didn’t find anything problematic. I upgraded the plugin to the same version as yours and got the same issue, but I recognized the problem immediately since I’m a PHP developer. If deleting the plugin fixed your issue that’s ok. Just wait for a newer version and retry or find an older one.
P.S.
If you wan’t to give it a try once more…Please make sure:
you kept the variable name as $_stversion,
you kept the = sign after that.
have wrapped the version number in single or double quotes (don’t mix single with doubles)
and finished the line with the semicolon symbol ;$_stversion=’7.0.1′;
or
$_stversion=”7.0.1″;
Also don’t copy-paste from this thread it might include extra characters from formatting etc. Do it manually!
😉
Forum: Plugins
In reply to: [Plugin Name: Share This] Share This Update Crashes WebsiteForum: Plugins
In reply to: syntax error with " Share This" pluginLooks like they forgot to enclose the plugin version string in quotes at line 32…
Simply add single or double quotes around the plugin version for a quick fix.
Hope this helps!
Edit:
This –> $_stversion=7.0.1;Should be like this –> $_stversion=’7.0.1′; or $_stversion=”7.0.1″;