GetSimple Support Forum

Full Version: GS Blog v1.4
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Hi Oleg06, my guess is that "i18n plugin" might be able to do that.
Plus Dominion Blog/News is an interesting plugin as well.

But either way, it's hard to handle.

Errors (403 or 500 or...) happen too often.

http://getsimple.coolblog.jp/index.php?id=blog

click the title then open the following page but

http://getsimple.coolblog.jp/index.php?i...&post=test

title link(dsad) doesn't disappear . Can you fix it?

This site is a test site so will disappear in one week or so. I am using Dominion blog plugin and GS blog plugin.
Hi Mikeh. Your plugin is very good for me. Thank you.
Please, let me know how I can reduce size of Display Posts Thumbnails from 200x200 px to 75x75.


Thanks a lot and wish you Happy New Year.
in file gsconfig on line 25 resize thumbnails
# Default thumbnail width of uploaded image
define('GSIMAGEWIDTH', '200');
Thank you Oleg06!
The problem I am experiencing with this plugin is with recent post excerpts displayed in the sidebar. The blog seems to give them tags as <li>s in an <ul> which the stylesheet then gives generous margins and padding so that I have

a long thin
column of
words as
if e e
cummings
was blogging

Changing the style just for blog exerpt <ul>s in the sidebar has proved beyond me. Is there a way to do that, or can I make them just plain <p>s so they take up the full width?
Hello!

I can't find the way to display the contents of CutomFields.
And, in case of WYSWIWYG Type Custom Fields, they neither show the Editor nor save the data.
Am I missing something?

Kind regards,
Serenado
After creating the fields, you must edit frontEndFunctions.php, inserting it in any row between 30 and 73 the following code <?php echo ->name_of_your_field; ?>
Hello Oleg06.

(2012-12-30, 02:08:03)Oleg06 Wrote: [ -> ]After creating the fields, you must edit frontEndFunctions.php, inserting it in any row between 30 and 73 the following code <?php echo ->name_of_your_field; ?>

This works great. Thanks a lot!

Do you know how I can handle the other issue too?
Quote:
in case of WYSWIWYG Type Custom Fields, they neither show the Editor nor save the data.
I created 2 additional custom-fields of the type WYSIWYG, but the WYSIWYG-Editor won't show up and if I type something into the textearea and save, nothing was saved at all (the textarea is empty again).

Kind Regards,
Serenado
Unfortunately I'm in php do not understand anything, so can hardly be helpful in this matter Smile
(2012-12-30, 09:17:23)Oleg06 Wrote: [ -> ]Unfortunately I'm in php do not understand anything, so can hardly be helpful in this matter Smile

I understand.
If someone could help me out with this issue, that would be great.

Kind regards,
Serenado
Hi, Oleg06. Your site below is excellent!
http://without-db.ru/getsimple-cms

tidengine-newsblog-manager

http://get-simple.info/extend/plugin/tid...er-20/495/

This plugin is also interesting. I guess you can handle it skillfully.

..... I used this plugin but I can't log in the control panel cuz

I worked on php. haha

I want you to make more good themes. Particularly I want themes with nice dropdown menu and breadcrumb.
.....

EDIT by Connie: deleted 2 links which link to 404 pages
I use on their sites only plugins from Martin Vlcek series i18n http://get-simple.info/extend/a/mvlcek and this plugin TIDEngine News/Blog Manager 2.0 I did not even try Smile
I see. I want you to try it on some test site.

http://get-simple.info/forums/showthread.php?tid=3280

Tidengine-newsblog-manager didn't have a good reputation but it's worth try.

I am going to try gp cms and goeasy cms. hehe.
I tried the new version 2.2 TIDEngine News/Blog Manager, no link in the sidebar does not work, and previous versions had problems, so I refuse to use it by testing version 1.5
Hello,

I handled the following issue:

(2012-12-30, 07:39:20)Serenado Wrote: [ -> ]
Quote:
in case of WYSWIWYG Type Custom Fields, they neither show the Editor nor save the data.
I created 2 additional custom-fields of the type WYSIWYG, but the WYSIWYG-Editor won't show up and if I type something into the textearea and save, nothing was saved at all (the textarea is empty again).

1) WYSYWIG EDITOR won't show up unless you comment the following code in file
{ROOT}\GetSimple\plugins\blog\ckeditor.php
Code:
// line 29ff
<script type="text/javascript">
      /* var editor = CKEDITOR.replace('post-content', {
        skin : 'getsimple',
        forcePasteAsPlainText : true,
        language : '<?php echo $EDLANG; ?>',
        defaultLanguage : 'en',
        <?php
        if (file_exists(GSTHEMESPATH . $TEMPLATE . '/editor.css')) {
          $path = suggest_site_path();
          ?>
          contentsCss: '<?php echo $path; ?>theme/<?php echo $TEMPLATE; ?>/editor.css',
          <?php
        }
        ?>
        entities : true,
        uiColor : '#FFFFFF',
        height: '<?php echo $EDHEIGHT; ?>',
        baseHref : '<?php echo $SITEURL; ?>',
        toolbar :
        [
        <?php echo $TOOLBAR; ?>
        ]
        <?php echo $EDOPTIONS; ?>,
        tabSpaces:10,
        filebrowserBrowseUrl : 'filebrowser.php?type=all',
        filebrowserImageBrowseUrl : 'filebrowser.php?type=images',
        filebrowserWindowWidth : '730',
        filebrowserWindowHeight : '500'
      });
      */
    </script>

2) In order the contents to be save you must give the LABEL and NAME the same title on creation in CustomFields

Kind regards,
Serenado
I'm trying to get the blog plugin working and I'm encountering two errors.

1) After I insert an image into a post, all is good until I try to later edit the post and the image tag is "translated" into

Code:
&lt;img alt=&quot;\&amp;quot;\&amp;quot;&quot; data-cke-saved-src=&quot;\&quot; src=&quot;\&amp;quot;/data/uploads/images/blog/thank-you-rocks.jpeg\&amp;quot;&quot; style=&quot;\&amp;quot;width:&quot; 300px;=&quot;&quot; height:=&quot;&quot; 225px;\&quot;=&quot;&quot;&gt;

2) I can't get the "Previous Blog Page" and the "Next Blog Page" links to appear.

From reading the forum, I'm guessing this works for everyone else so it's something at my end. If anyone can provide a clue to help me resolve this, it'd be appreciated.
1) probably happens because this plugin (like some others) is designed to work only on PHP with magic quotes gpc disabled.

Depending on your server, might be fixed by adding this to your GS root .htaccess file:

Code:
php_flag magic_quotes_gpc off
(2013-01-01, 02:50:08)Carlos Wrote: [ -> ]1) probably happens because this plugin (like some others) is designed to work only on PHP with magic quotes gpc disabled.

Depending on your server, might be fixed by adding this to your GS root .htaccess file:

Code:
php_flag magic_quotes_gpc off

Works!

Thank You, Sir!
......

If you click the title or readmore or thumbnail, you can read full article but I want to
remove the link on ....

this page, "grammar." I want to display "grammar" as a plain text.[/code]

PHP Code:
<?php
        
if(isset($_GET['post']))
        {            
            echo 
'<p><img src="'.$SITEURL.'data/uploads/'.$post->thumbnail.'" style="float:left;" /></p>';
                    }
                
?>
    </br>
        <div class="blog_post_container">
    
            <h3 class="blog_post_title"><a href="<?php echo $url?>" class="read_more_link"><?php echo $post->title?></a></h3>
            <?php if($blogSettings["displaydate"] == 'Y') {  ?>
                <p class="blog_post_date">
                    <?php echo $date?>
                </p>
            <?php ?>
                <div class="blog_post_content">
                <?php ...... 

I can't fix it within my ability.

EDIT by Connie: deleted links which points to 404
Is it possible to include the blog pages in the sitemap.xml, I've noticed these doesn't show up in my sitemap, and I didn't found any setting which could enable this? Thanks in advance!
No, there's no such setting.

But it's not GS Blog's fault. Plugins like this cannot include their posts/items in sitemap.xml because of an issue in GS 3.1.x
Will this be different in GS3.2?
I don't know. Latest beta and current dev versions still have this issue.

But at least 3.2 will allow disabling Sitemap generation, so a plugin could disable it and generate the whole sitemap.xml (pages+posts) on its own.

...And if not, at least you will be able to have no Sitemap, instead of having an incomplete one.
Coding is not working for me. Especially I have a problems with lang files, because I can see " {blog/PLUGIN_DESC}" etc. instead of normal phrases.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21