The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.1.31 (Linux)
|
External Comments Plugin - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Plugins (http://get-simple.info/forums/forumdisplay.php?fid=13) +--- Thread: External Comments Plugin (/showthread.php?tid=1237) |
External Comments Plugin - RobA - 2011-01-12 EDIT: Now in Extend: http://get-simple.info/extend/plugin/external-commenting/73/ Supports the following 3rd party commenting:
Language files Included:
Quote:I wrote a quick plugin to integrate disqus commenting into GS.-Rob A> External Comments Plugin - n00dles101 - 2011-01-12 Love it, was also working on one.. Saves me lots of time 8) Just discovered Disqus a coupe of weeks ago... much better than trying to write a full comment system on GS... External Comments Plugin - getsimplethemes - 2011-01-12 As was/is n00dles101, so are we! Working on a Disqus plugin that is.... looking forward to giving this a spin and checking wether or not we can stop development of our plugin. Thanks for sharing! External Comments Plugin - RobA - 2011-01-13 I'm more and more impressed with disqus. They have a reply by email feature for comments. I also created a new GS component with the widget code from their site to list the latest comments in a sidebar box, and added that to the theme template. Since everything is ajax, it works even with my page caching plugin enabled, too. -Rob A> External Comments Plugin - Oleg06 - 2011-01-13 After saving the settings Code: Notice: Undefined index: disqus in /home/cp068800/public_html/neowebtime.ru/01/admin/load.php on line 29 External Comments Plugin - RobA - 2011-01-13 Oleg06 Wrote:After saving the settings... No idea. I deleted everything, including the config file on my system. I can't get any errors to occur. Did you save the file as disqus.php? (thought the filename shouldn't make a difference AFAIK). I've uploaded a zip of the file here: http://ffaat.pointclark.net/incoming/disqus.zip incase there was a copy/paste problem. -Rob A> External Comments Plugin - Oleg06 - 2011-01-13 Excellent, worked, but apparently did not need to insert <% disqus %>, but (% disqus %) http://neowebtime.ru/01/bbb thanks, useful plugin External Comments Plugin - Oleg06 - 2011-01-13 something I can not paste the template code http://neowebtime.ru/01/bbb External Comments Plugin - Carlos - 2011-01-13 This is great Rob! However, as Oleg points, it doesn't work when inserting the tag in the template. Must be because you're doing the string replacement only in the page contents field.... Suggestion: It might be interesting to have another function to just display (without the string replace thing), so we can insert something like this in our template: Code: <?php disqus_print(); ?> PS Hehe, I had also began working in something like this but with IntenseDebate comments instead of Disqus... External Comments Plugin - RobA - 2011-01-13 Carlos Wrote:This is great Rob! Yeah - I had been messing around with index-posttemplate on my server to parse the whole page, but had decided to change it around. I've added the code so the call Code: <?php get_disqus(); ?> will echo the code. EDIT: now in extend - see first post for link -Rob A> External Comments Plugin - samrocksc - 2011-01-13 Awesome! External Comments Plugin - RobA - 2011-01-13 Oleg06 Wrote:Excellent, worked, but apparently did not need to insert <% disqus %>, but (% disqus %) Oops - good catch! -Rob A> External Comments Plugin - Oleg06 - 2011-01-13 Code: Fatal error: Call to undefined function get_disqus() in /home/cp068800/public_html/neowebtime.ru/01/theme/Default_Simple/template.php on line 84 Code: Fatal error: Call to undefined function disqus_print() in /home/cp068800/public_html/neowebtime.ru/01/theme/Default_Simple/template.php on line 84 External Comments Plugin - RobA - 2011-01-13 Oleg06 Wrote: ?? Copied right from my template: Code: <?php get_disqus(); ?> Did you upload version 0.2? -Rob A> External Comments Plugin - RobA - 2011-01-13 Carlos Wrote:PS Hehe, I had also began working in something like this but with IntenseDebate comments instead of Disqus... Wow! I wasn't aware of that. The only difference is in the java code, so I modified the plugin to support either. Also changed the name to "External Comments Plugin" since it isn't limited to Disqus now. The back-end shows the new calls, but for reference, to insert comments on individual pages use: Code: (% external_comments %) Code: <?php get_external_comments(); ?> -Rob A> External Comments Plugin - Oleg06 - 2011-01-13 Version: 0.3 After clicking on the link modules Code: Notice: Undefined index: functions in /home/cp068800/public_html/neowebtime.ru/01/admin/plugins.php on line 33 External Comments Plugin - RobA - 2011-01-14 Oleg06 Wrote:After clicking on the link modules Sorry Oleg - I do not anderstand what you mean. -Rob A. External Comments Plugin - Oleg06 - 2011-01-14 Sorry, the link Plugins Code: Notice: Undefined index: functions in /home/cp068800/public_html/neowebtime.ru/01/admin/plugins.php on line 33 External Comments Plugin - RobA - 2011-01-14 This error is from the core. Looks like you installed the plugin wrong? The plugin code uses $thisfile to get the filename (which is "external_comments" for this one). This is the same code used in the backend to iterate the plugin information. Do you have a file in your plugin directory named "functions.<something>"? -Rob A> External Comments Plugin - Oleg06 - 2011-01-14 Yes, I tried to install the plugin from http://getsimplethemes.com/gst-themesettings/ I deleted it and now everything works well, thanks External Comments Plugin - n00dles101 - 2011-01-14 Oleg, when install the plugin from gst you need to copy the functions from the functions.php to you templates functions.php if it exists, other wise copy it to there... M External Comments Plugin - Oleg06 - 2011-01-14 thanks, helped :-) External Comments Plugin - samrocksc - 2011-02-09 RobA: I'm new to the whole plugin creation system, I am utilizing your plugin as a example for creation. I hope you are okay with it, it's the best documented plugin so far as far as the saving of data goes. External Comments Plugin - RobA - 2011-02-09 samrocksc Wrote:RobA: I'm new to the whole plugin creation system, I am utilizing your plugin as a example for creation. I hope you are okay with it, it's the best documented plugin so far as far as the saving of data goes. Feel free. I just made it up as I went along and kept modifying previous plugins I'd created. Ideally someone will create a plugin class that would take care of all this for us -Rob A> External Comments Plugin - Oleg06 - 2011-04-12 does not work for some reason your plugin in version 3 http://neowebtime.ru/1/ whether it is possible to attach more facebook and vkontakte http://developers.facebook.com/docs/reference/plugins/comments/ http://vk.com/developers.php?o=-1&p=Comments |