2012-05-17, 04:13:46
Version 1.0.1 Added To Extend
GS Blog v1.4
|
2012-05-17, 04:13:46
Version 1.0.1 Added To Extend
2012-05-17, 04:18:07
problem with SPECIAL CHARACTERS into excerpt
special characters are well showed in full articule, but excerpt show a bad decode look here: http://decorametacrilato.es/dev/novedades/
2012-05-17, 04:40:25
focoves Wrote:problem with SPECIAL CHARACTERS into excerpt Version 1.0.2 Added To Extend:
Before Code: public function create_excerpt($content, $start, $maxchars) After Code: public function create_excerpt($content, $start, $maxchars)
attached spanish translation updated v 1.0.1
@mikeh: un stupid but friendly little thing: add one "->" to post title . plugins/blog.php row 712 on --> <h3 class="blog_post_title"> › <a href="<?php echo $url; ?>" class="blog_post_link"> <?php echo $post->title; ?></a></h3> add --> "›" so --> <h3 class="blog_post_title"> › <a href="<?php echo $url; ?>" class="blog_post_link"> <?php echo $post->title; ?></a></h3> =) ps edited: lang file had <?php duplicated (sorry)... fixed now ps @mikeh thanks for espaÑa
2012-05-17, 05:24:49
latest 2 lang hardcoded
plugins/blog.php row#525 <input class="submit" type="submit" name="category_edit" value="Add Category" /> row#564 <input class="submit" type="submit" name="rss_edit" value="Add RSS" style="width:auto;" /> txs
2012-05-17, 06:02:24
(This post was last modified: 2012-05-17, 06:05:23 by Chuck Brown.)
leenm Wrote:Don't forget this issue Will you fix this in a future release?mikeh Wrote:Did you choose excerpt length?Of course, that was the first thing I checked
2012-05-17, 07:14:22
leenm Wrote:leenm Wrote:Don't forget this issue Will you fix this in a future release?mikeh Wrote:Did you choose excerpt length?Of course, that was the first thing I checked Thanks again Mikeh I have incoorporated your latest corrections in the attached Danish language file v. 1.1 - For a future would it be possible to include the "Add Category" and "Add RSS" button values in the translation files (li 525 and 564 in the blog.php)? 525 <input class="submit" type="submit" name="category_edit" value="Add Category" /> 564 <input class="submit" type="submit" name="rss_edit" value="Add RSS" style="width:auto;" /> Have a nice one Best
2012-05-17, 20:26:16
Thank you for your fantastic plugin
If I may make a few suggestions for future versions of the blog plugin: * Include the ability to add the services like these at the end of each blog post. - Feed Burner - Add This - Share This * Include the ability to specify how many blog posts will appear per page. One question : * Can non admins login and make posts to the blog ? * If no, will you include this ability in future versions ?
2012-05-17, 23:14:35
saint Wrote:Thank you for your fantastic pluginAll Of your suggestions are easy to accomplish. In relation to "Include the ability to specify how many blog posts will appear per page.", this is already available on the settings page. I will answer you last question later today after some thought.
2012-05-18, 00:12:14
mikeh Wrote:Isn't it a task for frontend user login ?saint Wrote:One question :I will answer you last question later today after some thought.
Addons: blue business theme, Online Visitors, Notepad
2012-05-18, 00:16:46
yojoe Wrote:mikeh Wrote:Isn't it a task for frontend user login ?saint Wrote:One question :I will answer you last question later today after some thought. I assumed he meant integration with the muiltiuser plugin.
2012-05-18, 01:56:53
mikeh Wrote:I assumed he meant integration with the muiltiuser plugin.I wonder why did I write "frontend user login" in reply, while I was checking multi user plugin description ? <_<
Addons: blue business theme, Online Visitors, Notepad
2012-05-18, 06:53:09
mikeh Wrote:I assumed he meant integration with the muiltiuser plugin. That is correct. Non admins do not have the ability to make changes within Getsimple - using the multi user plugin. It would be nice to allow non admins "posting" privileges within the blog. I didnt catch the posting per page on the control panel, sorry. Thanks for considering adding the other suggested features. I believe it would enhance the user interaction ability with the blog itself.
2012-05-18, 06:59:49
saint Wrote:With the multiuser plugin, unless you block load.php or pages.php, you should have no problem letting your backend users edit/create blog postsmikeh Wrote:I assumed he meant integration with the muiltiuser plugin.
2012-05-18, 15:42:04
RewriteRule ^blog/tag/([^/.]+)/?$ index.php?id=blog&tag=$1 [L]
RewriteRule ^blog/post/([^/.]+)/?$ index.php?id=blog&post=$1 [L] RewriteRule ^blog/page/([^/.]+)/?$ index.php?id=blog&page=$1 [L] RewriteRule ^blog/archive/([^/.]+)/?$ index.php?id=blog&archive=$1 [L] The above rewrite rule is not working for me in PrettyURLs.
2012-05-18, 15:51:45
Any hope of integrating a good comment system in this plugin or will this work with Pages with Comments plugin?
When it comes to a good blogging system I really want to wean off Wordpress for clients who do not need to update often, but so far GetSimple doesn't have any one plugin that works out of the box with all bells and whistles.
2012-05-18, 17:27:08
@mikeh:
I very much applaud your effort to add a pretty full-featured blogging tool to GS. As a plugin like newsmanager (the next best thing in my opinion) is not developed anymore and could use some serious extending anyhow. So your new plugin is very interesting! Your roadmap looks good too. Any idea when you plan to release v1.1? However, something I would like to ask of you: be sure to look into adding multi-language functionality, most logically to make it play nice with Mvlcek's i18n-plugin. Or in a different way, whatever is most convenient for you. You'd be surprised how many multi-language sites there are. Especially here in Europe, where just about everybody speaks a different language these are very common (usually the mother-tongue + English). So to have this functionality in there would be a great addition to your plugin (to the items manager one too for that matter). I can imagine that from your perspective (being in the USA) sites usually will tend to be just 1 language but in this part of the woods it's totally different. So if you could add it, enabling users to have their blog or news in multiple languages, it would be grand.
2012-05-18, 23:29:47
Has anyone experienced the post order not being consistent? Sometimes my latest posts get positioned beneath older posts instead of showing up first? Same happens on the recent posts function. Any ideas?
2012-05-19, 00:31:54
andyash Wrote:Any hope of integrating a good comment system in this plugin or will this work with Pages with Comments plugin? A comment system will be in the next full version release (1.1). I have a custom made comment plugin using a database which I can add as an option at some point. andyash Wrote:RewriteRule ^blog/tag/([^/.]+)/?$ index.php?id=blog&tag=$1 [L] I am also attempting to get the pretty urls working. If you make any progress let me know. I am not that great with rewrites. bitwize Wrote:Has anyone experienced the post order not being consistent? Sometimes my latest posts get positioned beneath older posts instead of showing up first? Same happens on the recent posts function. Any ideas? I have not experienced this but will investigate it and keep an eye out.
2012-05-19, 00:37:35
Draxeiro Wrote:@mikeh: I am already using i18n functions for all the text in the plugin. There are 3 language files already created (en_US.php, es_ES.php, da_DA.php). I am aware a good portion of Get Simples user-base does not speak English. My lack of internationalization in some of my other plugins is pure laziness rather then ignorance, they are on my todo list I will look into allowing integration with Mvlcek's i18n plugin, however at the moment I am unaware of how it functions.
2012-05-19, 01:15:50
mikeh Wrote:andyash Wrote:Any hope of integrating a good comment system in this plugin or will this work with Pages with Comments plugin? Thank you for such a quick reply! If you would like to take a look at my files let me know. I have them up on staging sub-domain.
2012-05-19, 01:39:34
Version 1.0.3 Added To Extend
To enable Disqus Comments:
2012-05-19, 05:09:00
Version 1.1 Added To Extend
2012-05-19, 07:40:07
Danish language file revised accordingly.
Best
Is the archive array being sorted? Here's what my posts look like.
{BLOG/PAGE_TITLE} {BLOG/DATE} bacon Fri, 18 May 2012 15:36:51 -0700 // Newest Post test 1 Fri, 18 May 2012 15:35:45 -0700 // Oldest test 2 Fri, 18 May 2012 15:35:53 -0700 test 3 Fri, 18 May 2012 15:36:00 -0700 test 4 Fri, 18 May 2012 15:36:10 -0700 test 5 Fri, 18 May 2012 15:36:19 -0700 test 6 Fri, 18 May 2012 15:36:38 -0700 This is what I mean, I believe the array is being sorted before being displayed? edit: Seem to be alphabetized every time. |
« Next Oldest | Next Newest »
|