Yes, it's possible. Simply edit the tab template within CB Articles template folder below.
components/com_comprofiler/plugin/user/plug_cbarticles/templates/
yes... thats really closer of what i was looking for! i just need a little help
thanks for the info, was very useful!
i started to edit the: plug_cbarticles\templates\default\tab.php and got good results, i would like some help if possible with one part!
in the line 23 to 26 of the file tab.php there is this code:
Code:
.'<div class="articlesContent1">' . $row->getTitle( 0, $row->getArticle()->published ) . '</div>'
.'<div class="articlesContent2">' . ( $row->getArticle()->section ? $row->getSectionTitle( 0, $row->getArticle()->section_published ) : CBTxt::T( 'None' ) ) . '</div>'
.'<div class="articlesContent3">' . ( $row->getArticle()->category ? $row->getCategoryTitle( 0, $row->getArticle()->category_published ) : CBTxt::T( 'None' ) ) . '</div>'
.'<div class="articlesContent4">' . cbFormatDate( $row->getArticle()->created ) . '</div>'
i changed to that, and is starting to be more or less how i want!:
Code:
. '<div class="articlesContent1_costum"><h2>' . $row->getTitle( 0, $row->getArticle()->published ) . '</h1></div>'
. '<div class="articlesContent3_costum">' . CBTxt::T( 'Category: ' ) . ( $row->getArticle()->category ? $row->getCategoryTitle( 0, $row->getArticle()->category_published ) : CBTxt::T( 'None' ) ) . '</div>'
and i would like to insert more some lines that would be some thing more or less like that (but i don't know much about the codes, can you help me with that?):
Code:
. '<div class="intro_text_costum"><p>' . $row->getIntroText( 0, $row->getArticle()->published ) . '</p></div>'
. '<div class="read_more_costum"><p>' . $row->getReadMore( 0, $row->getArticle()->published ) . '</p></div>'
. '<div class="edit_buttom_costum"><p>' . $row->getEditButton( 0, $row->getArticle()->published ) . '</p></div>
probably the edit button need some restriction to be seen just by the user, about the edit button, i was thinking just in it be a short cut, instead of the author need to go to the article to see the edit button, he could just see it on his CB article tab
i tried to see some documentation to write this lines but i didn't understand how to... yet...
How is now, more or less!
How i am looking for more or less!
thanks a lot