Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • andynet69 Friend
    #120049

    Good morning to everybody,
    I am Andrew, Italian, but I write you from Venezuela, I am a new client of joomlart, and I am in love of the template teline, but as already seen in the forum, I don’t succeed to the news to make under the form visible ja-news.
    my problem and that I don’t understand very of English, and I/you/they have not succeeded in understanding whether to change the formulations in the form ja-news because you result as in the demo.
    A thanks anticipated to whom can help me with calm and simple explanations..
    hi from the Caribe

    Other small question: does it serve the file quikstart to what? is it had to install to the place of joomla?

    andynet69 Friend
    #219394

    <em>@andynet69 14570 wrote:</em><blockquote>Good morning to everybody,
    I am Andrew, Italian, but I write you from Venezuela, I am a new client of joomlart, and I am in love of the template teline, but as already seen in the forum, I don’t succeed to the news to make under the form visible ja-news.
    my problem and that I don’t understand very of English, and I/you/they have not succeeded in understanding whether to change the formulations in the form ja-news because you result as in the demo.
    A thanks anticipated to whom can help me with calm and simple explanations..
    hi from the Caribe

    Other small question: does it serve the file quikstart to what? is it had to install to the place of joomla?</blockquote>

    I have resolved my problems with ja-news, but I would like to ask because in my site in local, after having selected the title category, the home page results as in the photo, instead of being with in the demo of teline


    1. telinedemo
    2. teline
    andynet69 Friend
    #219397

    <em>@andynet69 14570 wrote:</em><blockquote>Good morning to everybody,
    I am Andrew, Italian, but I write you from Venezuela, I am a new client of joomlart, and I am in love of the template teline, but as already seen in the forum, I don’t succeed to the news to make under the form visible ja-news.
    my problem and that I don’t understand very of English, and I/you/they have not succeeded in understanding whether to change the formulations in the form ja-news because you result as in the demo.
    A thanks anticipated to whom can help me with calm and simple explanations..
    hi from the Caribe

    Other small question: does it serve the file quikstart to what? is it had to install to the place of joomla?</blockquote>

    I have resolved my problems with ja-news, but I would like to ask because in my site in local, after having selected the title category, the home page results as in the photo, instead of being with in the demo of teline

    ShannonN Friend
    #219410

    andynet69;14580I have resolved my problems with ja-news, but I would like to ask because in my site in local, after having selected the title category, the home page results as in the photo, instead of being with in the demo of teline

    The quickstart is a complete installation of Joomla and the teline template ja news etc all set up to look like the demo site

    It will look slightly different to the demo because you have different information and layout

    Hieu Nguyen Admin
    #219420

    You have to config Ja-News module show only in homepage. It will display correct.

    andynet69 Friend
    #219422

    Ok thanks,
    everything works now well, but I perhaps has a greater problem:
    what I would like it was possible to point out the sections I modulate ja-news of it, because I have more than 200 categories example:
    Moviles:
    alcatel
    nokia
    samsung
    sonyericsson
    telit
    motorola
    sagem

    Review:
    alcatel
    nokia
    samsung
    sonyericsson
    telit
    motorola
    sagem

    Is it possible to modify the form ja-news to insert the sections?

    Hieu Nguyen Admin
    #219431

    You just choose section you want to show ja news module.

    Khanh Le Moderator
    #219433

    Currently JA News only supports to display news in categories. If you have such many categories, you need modify the module to display news in sections instead of categories. You could make the change by yourself or wait for the update or request a modification from joomlart (you must to pay some fee).

    andynet69 Friend
    #219448

    I have become client of joomlart to buy the template teline, if I had known that the sections she could not be visualized, (in the demo is not seen), I would otherwise have thought. To this point I am forced to modify the form ja-news, if there is no anybody that can tell me what lines of code to be changed, are prepared to pay a further tax!!!
    Excuse me terrible English.

    SHoggard Friend
    #219555

    <blockquote>Currently JA News only supports to display news in categories. If you have such many categories, you need modify the module to display news in sections instead of categories.</blockquote>

    Any idea when the Update will be available?

    I’m a bit puzzled by the ‘fee’ part of your reply –

    I ‘assumed’ like andynet that Teline created a Front Page using Sections – the most logical 2nd level in Joomla – but seemingly it skips them & goes to Categories…. fortunately I don’t have 200 categories like andynet – but they are logically grouped as sub-topics of a Main Topic Area… it doesn’t seem logical to miss out Sections & go directly to Categories

    OR to charge a ‘modification’ fee UNLESS you clearly state that by using Teline users will have to abandon their Section level …. or have I misunderstood?

    andynet69 Friend
    #219568

    <em>@SHoggard 14786 wrote:</em><blockquote>Any idea when the Update will be available?

    I’m a bit puzzled by the ‘fee’ part of your reply –

    I ‘assumed’ like andynet that Teline created a Front Page using Sections – the most logical 2nd level in Joomla – but seemingly it skips them & goes to Categories…. fortunately I don’t have 200 categories like andynet – but they are logically grouped as sub-topics of a Main Topic Area… it doesn’t seem logical to miss out Sections & go directly to Categories

    OR to charge a ‘modification’ fee UNLESS you clearly state that by using Teline users will have to abandon their Section level …. or have I misunderstood?</blockquote>

    Hi SHoggard,
    you I will say more, in another topic I have asked a help to modify the form payment ja-news, and have answered me to go on joomlalancers.com, then I don’t satisfy I have written a private message to the admin, but until now has not answered me..
    Really a good service….. I hope not to have thrown away my money

    Khanh Le Moderator
    #219593

    I assumed that this is not very difficult thing to fix and you should make change by yourself. Here is the solution to change from selecting Categories to Sections:

    Open and edit file modules/ja_news.php.

    1. Arround line 193, search following code:


    $query = "SELECT id FROM #__categories WHERE published = 1;";

    and change to


    $query = "SELECT id FROM #__sections WHERE published = 1;";

    2. Arround line 333, search code


    . ( $catids ? "n AND ( a.catid = {$catids[$k]} )" : "" )

    and change to


    . ( $catids ? "n AND ( a.sectionid = {$catids[$k]} )" : "" )

    Now in the Category ID parameter in the JA News module, you could specify section ids (or leave it blank) which you want to display by JA News module.

    Karibu Friend
    #219600

    <em>@oceandragon 14608 wrote:</em><blockquote>You have to config Ja-News module show only in homepage. It will display correct.
    </blockquote>

    I am trying it out and I have select the ja-news to the mainmenu/ home but this continues to appear on the content items ie newsflash, FAQs etc. What can I do. Thanks someone out there.

    Karibu Friend
    #219675

    Finally , I found way out. Originally I had unpublish the news component, this caused the news content when clicked more, the detailed content comes on top first pushing the ja-news beneath it. This happens on all the home page. By publishing news in the nenu solves the problem. Wow

Viewing 14 posts - 1 through 14 (of 14 total)

This topic contains 14 replies, has 6 voices, and was last updated by  Karibu 17 years, 6 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum