some doubts

Elegant Joomla template designed especially for both professional and personal website presentation.
GK User
Wed Dec 29, 2010 10:26 pm
Hi,

I'm using the quickstart installation, and it's working fine.

But I don't know how to do these things:

1. I don't want to show comments on the posts, and neither the posibility to leave a comment. How could I do it? Because I tested disabling the jcomment component, and also the plugins withs the word "comment" in their title, but this caused the site returned an error.

2. Where should I change the text "Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Lorem ipsum dolor sit amet..."?

3. How could I change the text and image of about me on frontpage? Because I changed these things on the post called "about me", but I'm still seeing the old text/image on the frontpage (but not on the posts)

4. Where should I change the vertical words "personal" and "portfolio" on the frontpage?

Thank you!
User avatar
Fresh Boarder

GK User
Thu Dec 30, 2010 2:00 am
Hi

1) Please check if you also have K2 comments system enable.

2 and 3) These are joomla custom modules. The header is using "[space]text" module suffix.

4) On template parameters, change text on "Features" tab.

Cheers
User avatar
Platinum Boarder

GK User
Thu Dec 30, 2010 9:13 am
Thank you for your help!

Items 2, 3 and 4 are fixed now :)

Regarding to item 1, I disabled K2 comments and so the posts now doesn't use comments. This is OK.
The problem is that, on frontpage, the post with the title "Vestibulum vitae ligula nec." still has the texts "comment 0" and "add comment".
So, I disable jcomment component and the following plugins:

Content - JComments
Editor Button - JComments ON
Editor Button - JComments OFF
Search - JComments
System - JComments
User - JComments

and now I'm getting the error

Fatal error: Class 'JCommentsContentPluginHelper' not found in D:xampphtdocsisj2011templatesgk_postnotehtmlcom_contentcategoryblog_item.php on line 87

when I load the web. I did some test, and the problem appears just when I disable the plugin "Content - JComments".

Thank you.

PS: one more question: how can I change the language for the item menu's "search" and "tools"? (they are above the main menu).
User avatar
Fresh Boarder

GK User
Mon Jan 03, 2011 8:37 am
Hello,

I will appreciate any kind of help here.

Thank you!
User avatar
Fresh Boarder

GK User
Mon Jan 03, 2011 11:12 am
Regarding to the menu items "Tools" and "Search", now I know that Tools is disabled by an option on the features tab of the template.
But "search" is something strange, because this is the standard search module of joomla. So, I don't know why this is showing "search" instead of "buscar" (spanish translation).
This template doesn't use the k2 search plugin, but I think that is the template itself that put that text above the main menu. However, I don't know how to disable it.
What I did was disable the search module of joomla, and then enable it again. I did it 2 times, and suddenly the item "search" is not showing anymore on the template. I don't know why this is happening, and I think this isn't a right way to do it. Anyway, this "effect" is was I´m looking for...

BTW: does exist a map showing where the different positions for the modules on this theme are?

I still don't know how to disable the comments on the standard articles of joomla.

Thank you.
User avatar
Fresh Boarder

GK User
Mon Jan 03, 2011 2:30 pm
Hi again

This comes from JComments and our component files prepared for this template.
Please keep Content JComments plugin enable. If you don't want to use JComments, you can disable comments if you click on "Restore Default" option on JComments component settings (see right top button). By doing this, none categories will be selected, then comments will be disabled.

In other hand, if you don't want to use it and want to remove this component, you must open the following file ../gk_postnote/html/com_content/category/blog_item.php and comment this lines:

Code: Select all
<?php
         
         $comments = JPATH_SITE . '/components/com_jcomments/jcomments.php';
         if (file_exists($comments) ) :
            require_once($comments);
             if (JCommentsContentPluginHelper::checkCategory($this->item->catid) && (JCommentsContentPluginHelper::isEnabled($this->item, false) || !JCommentsContentPluginHelper::isDisabled($this->item, false))):
            $jcomment_count = JComments::getCommentsCount($this->item->id, 'com_content');
         
      ?>
            <a class="comments" href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->id, $this->item->catslug,  $this->item->sectionid)); ?>#comments"><?php echo $jcomment_count; ?> <?php echo JText::_('COMMENTS'); ?></a>      
         <?php endif; ?>
      <?php endif; ?>

like this
Code: Select all
<?php
         
         //$comments = JPATH_SITE . '/components/com_jcomments/jcomments.php';
         //if (file_exists($comments) ) :
            //require_once($comments);
             //if (JCommentsContentPluginHelper::checkCategory($this->item->catid) && (JCommentsContentPluginHelper::isEnabled($this->item, false) || !JCommentsContentPluginHelper::isDisabled($this->item, false))):
            //$jcomment_count = JComments::getCommentsCount($this->item->id, 'com_content');
         
      ?>
            <!--<a class="comments" href="<?php //echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->id, $this->item->catslug,  $this->item->sectionid)); ?>#comments"><?php //echo $jcomment_count; ?> <?php //echo JText::_('COMMENTS'); ?></a>-->      
         <?php //endif; ?>
      <?php //endif; ?>
User avatar
Platinum Boarder

GK User
Mon Jan 03, 2011 2:32 pm
Bacca wrote:PS: one more question: how can I change the language for the item menu's "search" and "tools"? (they are above the main menu).

You can change or translate on this file:
../language/en-GB/en-GB.tpl_gk_postnote.ini

Cheers ;)
User avatar
Platinum Boarder

GK User
Mon Jan 03, 2011 6:54 pm
Thank you very much!!
User avatar
Fresh Boarder


cron