2012-06-28, 21:21:14
TIDEngine News/Blog Manager
|
I did a short test on fresh GS instance with latest TE 1.5 on apache 2 with php 5.2.16
Installation went fine w/o errors. After adding a new page and setting it as a "Master News Page" I've added Code: <?php tide_show_news(return_page_slug()); ?> Code: <?php get_page_content(); ?> But...t ! 1. The news refuse to work when they are displayed on page named "news" with fancy urls enabled . Next thing is that the url structure looked terribly. Example news "first entry" on page "announcements" had an URI like: domain/page-announcements-news-first-entry Hopefully I was able to fix it, and get a nice /page/newsURI link structure. I hope you will consider adding this to your plugin, and tweak rest of things, as this goes for pages only: .htaccess: Code: #Rule for pages Code: $url = SITE_URL . $page .'/'. $news; Thus a checbkox could enable/disable adding a /content in URI Code: RewriteRule ^content/?([A-Za-z0-9_-]+)/?([A-Za-z0-9_-]+)/?$ ^index.php?id=$1&tide_show_news¤t_news=$2 [L] Mine solution fixes also displaying news on page named "news". And - what I wanted to point next - fixed problems with dates, as they were not being shown. btw. after I renamed the page, to which I already added couple news, they disappeared in news management panel. I had to manually change the name of the directory in which files were saved, and - I don't remember if I had to - but open resave the news again. 2. I also wanted to grab a list of news from their proper page and show in a box on homepage. Calling <?php tide_news_menu('news'); ?> works perfect, but it offers only basic behaviour of listing news from all or certain page. Is it already possible to invoke the function with parameters to format outputted data in the way I like ? For example showing in a box last 3 entries, formatted in the way: header, date, excerpt, read more, and a link to the page with all newses at the bottom ? And as it goes about excerpt it could offer couple formatting options like: amount of chars and/or paragraphs or be cut by a "page break" button available in ckeditor. But it might not be that simple, as there's already a news summary, for news list on proper page. Maybe using twice the page break would be possible ? 3. templates I've noticed there's a templates directory with .tpl files. I assume those are views of all components used in tidenews. Would it be possible to implement an option to create (manually) additional views, and assign them for specific page ? This could resolve the question I asked in earlier point. I'd also appreciate an option to create categories and assign them to slugs, as it could simplify the workflow. It goes like: add news -> choose category -> save This way if a slug name/url changes, news related to it could be easily maintained (look at point 1). 4. hooks to other plugins I've noticed that non of most popular plugins doesn't work with tidengine. It would be great if news plugin allowed to use i18n gallery, and search (this one has an api). Considering most of above points, this would be a base to allow multilingual, dynamic articles. It surely needs some tweaks for a custom url structure along with rewriting links. 5. the design part Since news summary isn't stripped from html tags, it allows adding thumbnails. That's nice. But the default look of news list is horrible. Like the link structure This website explains one thing: http://comicsanscriminal.com/ Default tpl should be as transparent as possible. Thus all the content should be shown almost as plain text. No backgrounds, no rounded corners, no custom fonts and so on. This way the plugin should inherit styles from currently used GS theme. The more, allowing to enable/disable things like date/ read more, make the header clickable or not. But those are fluff and aren't that important. K, that's all for now. It's fantastic that more news/blog plugins started to appear ! edit: two more things Automatically created URI's lack transliteration of special chars, thus an URI contains a weird "words". This shouldn't be a big problem to implement, as GS handles this thing nicely. And about creating categories. Binding them to pages, and then choosing categories from dropdown list during news creation, would be fantastic. If a website has >30 pages, choosing the right one from dropdown might be challenging
Addons: blue business theme, Online Visitors, Notepad
2012-06-30, 06:48:15
Thank you for response. I will try to solve your doubts.
Quote:After adding a new page and setting it as a "Master News Page" I've added You add directly to page content over Admin Page, not directly in template. I did not make it that way. Quote:<?php tide_show_news(return_page_slug()); ?> Quote:1. This should not be problem. I add user to choose SEPARATOR. This was SEO solution all news in document root. Quote:Mine solution fixes also displaying news on page named "news". There are no problem with dates as far as I know. All looks as version 1.2 ???? Quote:btw. after I renamed the page, to which I already added couple news, they disappeared in news management panel. I had to manually change the name of the directory in which files were saved, and - I don't remember if I had to - but open resave the news again. Mate This should include changing GetSimple core, and I'm not Core Dev. I could find other solution. Quote:I also wanted to grab a list of news from their proper page and show in a box on homepage. That is not problem. Quote:And as it goes about excerpt it could offer couple formatting options like: amount of chars and/or paragraphs or be cut by a "page break" button available in ckeditor. But it might not be that simple, as there's already a news summary, for news list on proper page. Yes it is possible, default is 100 chars. Quote:3. templates It is possible but that would be over complicated for common user. I will write Page Menus Plugin for that. Have on my mind, but that is not related to News but to Pages. Quote:I'd also appreciate an option to create categories and assign them to slugs, as it could simplify the workflow. For now Category == Page. When you choose New Page that is News Page that will hold News as News Category. Quote:4. hooks to other plugins I will do that must check a little. I try for now to make Stable Plugin. Quote:Considering most of above points, this would be a base to allow multilingual, dynamic articles. Url structure is not problem (to implement your idea). My concept was different, but I will add your ideas. Quote:5. Wht that sould be a problem you have CKEditor. Or you means fixed News thumbnails??? Quote:But the default look of news list is horrible. Like the link structure You have news.tpl and tide_news.css. You can create design as you like. I will build Plugin editor. Quote:Default tpl should be as transparent as possible. Thus all the content should be shown almost as plain text. You have news.tpl and tide_news.css. You can create design as you like. I will build Plugin editor. Quote:Automatically created URI's lack transliteration of special chars, thus an URI contains a weird "words".I remove all special chars from News Slug. I will change that. Quote:And about creating categories. Binding them to pages, and then choosing categories from dropdown list during news creation, would be fantastic. If a website has >30 pages, choosing the right one from dropdown might be challenging Means multiple Categories on one page. That shouldn't be a problem. Thanks for your Response. I will try to improve most things. More response are welcome. If I know users needs I will write better code. Thank you again.
2012-06-30, 16:41:11
1. add the ability to change the date format, at least in the language file
2. As in the Russian language are used for nouns Cases, it would be better able to replace in line 703 Code: $data['page_title'] = i18n_r('tide_news/NEWS_IN').'<span style="font-weight:bold;">'. get_page_clean_title(false);'<span>'; Code: $data['page_title'] = i18n_r('tide_news/NEWS_IN') . $page_name;
2012-06-30, 18:11:24
Thanks for suggestions:
Quote:1. add the ability to change the date format, at least in the language file It will be included in new version. Quote:2. As in the Russian language are used for nouns Cases, it would be better able to replace Included
2012-07-01, 00:30:47
bogyvet Wrote:Thank you for response. I will try to solve your doubts.I don't follow. Invoking <?php tide_show_news(return_page_slug()); ?> shouldn't be done in template ? All chars like "<" are changed to entities by ckeditor, thus I didn't believe that pasting php code will work just like that Quote:This should not be problem. I add user to choose SEPARATOR. This was SEO solution all news in document root. Could you elaborate a bit about "separator" option ? Can't find anything about that. Quote:There are no problem with dates as far as I know. All looks as version 1.2 ????I might just mislooked the date. Dates work fine on mine theme page. Quote:Maybe already mentioned idea with categories assigned ID would solve that ?Quote:btw. after I renamed the page, to which I already added couple news, they disappeared in news management panel. I had to manually change the name of the directory in which files were saved, and - I don't remember if I had to - but open resave the news again.Mate This should include changing GetSimple core, and I'm not Core Dev. I could find other solution. Where directories would just be created with something like news-categoryID, and all settings about them could be taken from xml file. Quote:AWESOME !Quote: Is it already possible to invoke the function with parameters to format outputted data in the way I like ?That is not problem. Quote:awesome againQuote:4. hooks to other plugins Quote:Please, be more specific. Plugin description mentions only about features and usage.Quote:Considering most of above points, this would be a base to allow multilingual, dynamic articles. A short roadmap or changelogs would shred more light on things you plan to make with your plugin Quote:Quote:5. mmmm..I didn't even think about dedicated option for news thumbnails. It could be a great feature, but should definitely offer image resizing. Quote:I didn't thought in that way, but it's a great idea !Quote:And about creating categories. Binding them to pages, and then choosing categories from dropdown list during news creation, would be fantastic. If a website has >30 pages, choosing the right one from dropdown might be challengingMeans multiple Categories on one page. That shouldn't be a problem. Quote:Thanks for your Response. I will try to improve most things. More response are welcome. If I know users needs I will write better code.no prob I just like the concept and realization, especially news management, as it seems to be clear and simple. Today I wanted to test tidengine on my BB theme demo page, and stepped in several other problems with this plugin. Firstly I forgot to backup .htaccess file before installing tidenews. After I realized that and looked inside the .htaccess, I enountered a complete mess. I had additional, custom rewrite rules,a nd tidengine added its own rewrite rules 3 times in diffetent places. This saying plugin should make a backup of htaccess file before adding own rules, or inform the user to manually add rules and list them. Whereas a checkbox "do not add rewrite rules automatically" would be also great, because not everyone will have FURLs enabled. From the other hand, advanced users may have custom rewrite rules like me, and an unpleasant surprise might await them. One thing I forgot to mention was socialnetwork share functionality. You implemented sharethis but there's no way to customize the media, thus all popular are being shown as a default option. Options to customize it would be great. I'm also not sure what is the purpose of twitter settings inside tide options ?
Addons: blue business theme, Online Visitors, Notepad
2012-07-01, 01:58:34
Quote:Invoking <?php tide_show_news(return_page_slug()); ?> shouldn't be done in template ? There is build in functions that checks php code: Quote:if (!function_exists('eval_php_in_content')) { Quote:Could you elaborate a bit about "separator" option ? Means you like / or - or_. Quote:Maybe already mentioned idea with categories assigned ID would solve that ? I will try to figure out that. Example. 1. Create Category. 2. Assign category to page. 3. Create news and assign to category, that is not problem. 4. Delete Page, What now??? We loose category parent. How to reassign category to new page?? OK I figured out.... Thanks. Quote:Please, be more specific. Plugin description mentions only about features and usage. It will be. Quote:mmmm..I didn't even think about dedicated option for news thumbnails. I will add Create News Image uploader. I think that s best option. Quote:And about creating categories. Binding them to pages, and then choosing categories from dropdown list during news creation, would be fantastic. If a website has >30 pages, choosing the right one from dropdown might be challenging Mention before... Quote:no prob Thanks... Quote:Today I wanted to test tidengine on my BB theme demo page, and stepped in several other problems with this plugin. I didn't think about that. My code find and replace with my rewrites. But backup is ok. Quote:RewriteCond %{REQUEST_FILENAME} !-f Quote:One thing I forgot to mention was socialnetwork share functionality. This is basc socialnetwork share functionality. I have not time. If you like to see complete functionality check my plugin for e107 CMS te-AddThis. Twitter settings is for future menu. Thanks again.
2012-07-04, 03:05:12
In next few days will be released TIDEngine News/Blog Manager version 2.0 with a lot of New Features and improved Functionality.
I try to improve TIDEngine News/Blog Manager version functionality considering all suggestions I get as response. So in that matter I hope that all End Users will be satisfied. Some of the New Features: -Core independent full CKEditor. - CKEditor SyntaxHighlighter plugin integrated. - CKEditor Read more, integrated for extended news. - Date format based on Localisation language and easy way to adjust Date Format. - Codemirror File Editor for Plugin Templates and CSS files. - Improved Design and Functionality. If I manage I will integrate TIDEngine News/Blog Manager as two separate systems. News Manager base functionality (as in Version 1.5), and independent Blog Management System that will be Pages independent. Also any community response will help me a lot. So I ask you to give comments, suggestions, ask for new features.
2012-07-07, 20:25:08
Hi, this looks like a great plugin, and would like to use it to display events listings. Is there a way to modify the code so that I can specify the post's date, then have the posts appear on the news page earliest > latest?
2012-07-09, 19:35:42
Quote:danielmooreukPost date is build in version 2.0 it will be released in few days. I do all myself so testing takes a lot of time. News order will be also be included. v 1.5 sort new by file creation/ modification date. In v 2.0 you can choose news order. Thanks for response.
2012-07-13, 13:29:48
bogyvet Wrote:Quote:danielmooreukPost date is build in version 2.0 it will be released in few days. I do all myself so testing takes a lot of time. Ahh, this sounds great. I eagerly await the next version
2012-07-13, 18:24:23
Is it possible to put TAGS as a front end option?
2012-07-13, 19:09:46
Hi there,
I seem to get an error when I format the custom blog post to the template I am using. When I save the code I've placed in the Custom Blog Box, it saves with this -> \ before every " as seen in the attachments. And when I save it again it adds more back-slashes. Any thoughts?
2012-07-15, 02:26:54
motionrepubliq Wrote:Is it possible to put TAGS as a front end option? Tags are implemented in new version 2.0 that will be released soon.
2012-07-15, 02:31:41
That is not TIDEngine News/Blog Manager issue. As far as I know that is magic_quotes problem. You have them enabled with hosting and script escapes them.
2012-07-16, 23:17:15
bogyvet Wrote:That is not TIDEngine News/Blog Manager issue. As far as I know that is magic_quotes problem. You have them enabled with hosting and script escapes them. Is there a way I can bypass this?
2012-07-16, 23:36:09
bogyvet Wrote:That is not TIDEngine News/Blog Manager issue. As far as I know that is magic_quotes problem. You have them enabled with hosting and script escapes them. I have contacted support for my server, they said to upload a php.ini file to where the information is stored, but seeing its a custom field post, I'm not sure where your plugin is storing this information when I hit save on the settings.
2012-07-18, 07:51:31
motionrepubliq Wrote:bogyvet Wrote:That is not TIDEngine News/Blog Manager issue. As far as I know that is magic_quotes problem. You have them enabled with hosting and script escapes them. You are using some other GetSimple blog plugin not TIDEngine News/Blog Manager. Because I haven't admin page like you show on image. So as I say that is other plugin issue. Go to plugins in Admin selection and check that.
2012-07-24, 22:02:30
Hi, I'm using TIDEngine plugin for publishing news and it works great!
Nice! I'm using latest version of getSimple CMS and TIDEngine News/Blog Manager Plugin. My issue is when single news is displayed. On the master page the news are properly listed with the link/heading, excerpt text and pagination at the bottom. When I visit the single news page I have the same structure with the same heading displayed twice: Code: <!-- title and content --> I can use CSS solution "display:none" but there is no original ID or Class for single page display. The HTML structure for the heading stays the same in both listed and single page view. I hope someone can help me solve this issue , thanks! BTW everything else works great!
2012-07-25, 03:12:41
kapsarovb:
Please wait for few days new version will be released. I have no time to search old version. Please understand me. Check for version 2.0 for few days.
Hi, great little plugin.
How do I remove the dashes on the tide_news_menu() outputs please? Also, how can I remove page-index-news from the URL, for SEO reasons. Thanks a lot
2012-08-01, 00:47:13
Great plugin
I experience a weird bug: when adding news, the summary's WYSIWYG acts weird: has no background and won't let me choose images from it's media manager. The full-article is OK .... I tested it over and over with all browsers and in a few sites - all the same .... Nothing seems odd at templates/create_news.tpl -------------------------------------------------------- EDIT Sorry - solved with replacing admin/filebrowser.php http://code.google.com/p/get-simple-cms/...rowser.php .... Still got issues with the rss ... ----------------------------------------------------------- Hope version 2 will bring site-search compability - none of the news/articles/bogs has ...
2012-08-07, 02:42:05
TIDEngine News/Blog Manager Version 2.0 Released. Separate extend download.
http://get-simple.info/extend/plugin/tid...er-20/495/ |
« Next Oldest | Next Newest »
|
Users browsing this thread: 1 Guest(s)