Guido Eugenio aka Zhenya
Forum Replies Created
-
I would like suggest to the author another way to reduce memory consumption on the server:
To save the micro posts of the live blogging, the application could use “mini .xml file” (residing in own server folder) instead of the database table wp_posts.
The plugin will import the content of these “mini .xml files” into the table wp_posts (each micro post on his article), only when the Live Blogging will be closed to further updates.
This workaround reduce the database query and memory consumption. And also improve the plugin integration with others application hooks.Cheers, ??
ZhenyaForum: Plugins
In reply to: [qTranslate] Can not login after installing qtranslateIf WordPress use the NetWork (multisite), qTranslate should work fine but only with the right settings.
In any case qTranslate requires that the secret keys are written to the wp-config.php file.Forum: Plugins
In reply to: [qTranslate] Can not login after installing qtranslateAfter activated qTranslate you need regenerate permalink.
Forum: Plugins
In reply to: [SEO Facebook Comment] [Plugin: SEO Facebook Comment] Broken links in postsDone!
I have insert the echo to print in the html source this tags, see below.Around the line 400:
$this->loadJS(); echo "<!--googleoff: all-->"; echo "<span id=\"fbSEOComments\" style=\"width:{$this->options['width']}\">"; self::fbAddComment($postUrl, $postId, $comments); echo "</span>"; echo "<!--googleon: all-->"; }
And around the line 425:
$fb_optionsPage = admin_url($url); echo "<!--googleoff: all-->"; echo "<span id=\"fbSEOComments\" style=\"width:{$this->options['width']}\"> Please, insert a valid <a href='$fb_optionsPage' style='color: #c00;'>App ID</a>, otherwise your plugin won't work correctly.</span>"; echo "<!--googleon: all-->";
Now this plugin is really SEO!
Forum: Plugins
In reply to: [SEO Facebook Comment] [Plugin: SEO Facebook Comment] Broken links in postsTo be really the best SEO Facebook Comment this plugin still need few code. Before and after the container must insert the special html tags:::
<!--googleoff: all--> here all the stuff and the FaceBook box <!--googleon: all-->
This need to exclude unwanted text, anchor and contents from its index:
https://code.google.com/intl/it/apis/searchappliance/documentation/46/admin_crawl/Preparing.html#pagepartAlready I tried to do it, but I was not able to make it printed on the html source.
Hope his developer will do it for the next release.
You can see here how I solved this issue:::
https://www.ads-software.com/support/topic/plugin-seo-facebook-comment-broken-links-in-postsForum: Plugins
In reply to: [SEO Facebook Comment] [Plugin: SEO Facebook Comment] Broken links in postsIn the file seofacebook.php, around the line 400 I have changed the “div” in “span”:
echo "<span id=\"fbSEOComments\" style=\"width:{$this->options['width']}\">"; self::fbAddComment($postUrl, $postId, $comments); echo "</span>";
Around the line 424 doing the same thing:::
echo "<span id=\"fbSEOComments\" style=\"width:{$this->options['width']}\"> Please, insert a valid <a href='$fb_optionsPage' style='color: #c00;'>App ID</a>, otherwise your plugin won't work correctly.</span>"; }
Now the plugin does his job fine, And the page or posts links are clickable.
Also here, I’m having this problem. Facebook SEO comments plugin created many duplicates of every single wordpress comment copy from facebook comments.
Hi,
I’m using W3 Total Cache, and everything is fine, these plugins together work like a charm.
https://www.ads-software.com/extend/plugins/w3-total-cache/See also here the FAQ bout WP Super Cache:
Will comments and other dynamic parts of my blog update immediately?
“..Dynamic elements on a page may not update unless they are written in Javascript, Flash, Java or another client side browser language. The plugin really produces static html pages. No PHP is executed when those pages are served..”
https://www.ads-software.com/extend/plugins/wp-super-cache/faq/Forum: Plugins
In reply to: [SEO Facebook Comment] [Plugin: SEO Facebook Comment] 18 duplicatesProbably this issue should be related with:
We need ask to the author if he has fixed this issue related with database table.
Forum: Plugins
In reply to: [SEO Facebook Comment] [Plugin: SEO Facebook Comment] Broken links in postsThere is a severe bug in SEO Facebook Comment. I suppose that it can be the CSS that redefining something connected with the tag DIV. If the plugin is deactivated, all those links work again.
A fix is necessary.Thank you in advance.
Forum: Plugins
In reply to: [SEO Facebook Comment] [Plugin: SEO Facebook Comment] Broken links in postsHi again,
I have made some test, and I found out that this issue happens only with the browsers Opera, FireFox and Chrome, while with Internet Explorer 8 all the links work properly.Forum: Fixing WordPress
In reply to: Jetpack not working – No statsSame here. Using Jetpack 1.2.2 on WordPress 3.3.1
Also I don’t like his Subscriptions Free, there is wrote: “Allow users to subscribe to your posts and comments to receive a notification via email”.
It is not just notification, in email comes full content of article, and there is not way to customize this plugin to send only an small preview.Changing the “var result” code make qTranslate work, but if I embed an image through caption, then the issue is still there. As I can see the problem is always when edit a post from visual mode and the first text includes any html tag.
This fix seems to work fine if no tags are present at the first line of the content.
The issue looks like the tinyMCE editor loads and fix the html before qTranslate splits the content. Thus to make it working, probably need to find how to change the qTranslate load priority.Well, good news. I solved the issue by changing the line 61 of qtranslate_javascript.php. (line 62 if you use qTranslate 2.5.27)
It seems result.length on the line 94 returns “undefined “.
I write:
var result = new Array();
instead of:
var result = new Object;
I hope this helps