Display the full Joomla article in Articles-category module - joomla3.0

I have an Articles-category module assigned at home page. It only show a list of article titles and intro-text. Now I want to show full article (with all imagines and text) for each item list.
Please help.

Related

2sxc - dnn - News app v3.1.5 - Problem with filtering

Hello 2sxc News app experts,
hopefully you can help me with my 2sxc News app v3.1.5 (2sxc v10.25.2).
I am struggeling with following problem: On one page I inserted the News app. Created some categories (category1..3). After this I created some news items and chose one category for every news item.
After this I created a News module on another tab to show the newest 3 items of a dedicated category. I modified the ViewConfiguration (id of the previous module, tab of the previous module, "category1").
What I expected was to see all news items of "category1". But unfortunately I see all items. The filter did not work.
What I tried so far (with no success):
Recreation of categories (delete categories from news items, deletion of all Categories, creation of categories, adding one category to a news item).
Export and reimport of data (export all data to xml, deletion of all data, reimport of all data)
What I can see in query designer is, that the link from "ModuleDataSource" to "View Category" is showing 1 item (probably the category of the ViewConfiguration), but the result of RelationshipFilter after "View Category" to "StreamFallback" is showing 0 items. So the fallback comes in play and all items are showing.
From here I have no idea what to check or what to configure, to get the Category of the ViewConfiguration get working. Has anyone a hint or an idea?
Any help is appreciated. Thank you very much!
welcome to StackOverflow :)
So first of all - we just released a new News app V4 today! https://2sxc.org/en/apps/app/news-app-v4
It's a complete rework of the News so if you're just getting started - I would start there. My guess is whatever you need is already fixed ;)

In Drupal 7 views how to give external link (another website) to a title?

Iam new to drupal 7 views.
I have a content type contains title, description fields. I want the content title's to scroll at the top of the page, so that i created a view and it works fine.What is my question is, i want to link a content (eg: 1st content (title) in a scroll) to another website instead of content page, the remaining contents linked to the content page. Is it possible?.If it is possible how it can be done?..
Thanks in advance,
A.John Melchior.
Yes, it's possible.
One way to do it, would be to use the Link module to create a link field in your node.
Use the link field to input the external link value.
In views add the link field, before the title ( order is important ) and exclude it from display
Add the node title field in the views and in the rewrite field output option, use one the link field token as your path.
I'm not looking at the Views UI right now , but you should find at least a couple of ways to redirect content when the node title is clicked. You should have the Rewrite field output and the Output this field as a link.
You could make use of Display Suite coupled with the description above.
Create a link field for your nodes.
Create 2 view modes for your content type via Display Suite. View Mode 1 will show the link field as the first data element, View Mode 2 will show the title as the first element.
Configure your view to show output using Display Suite, configured to show the first record using View Mode 1, all others using View Mode 2.

How to list most visited links in Drupal from different pages?

I have made one block for most visited links (Top Links) in my drupal website but I dont know how to list most visited from different pages. For example, if I have created a page named drupal and within that page i have added some content with some title, then i have to examine and count those titles and list the top visited title from each and every page on my homepage(only one from each and every title that is most visited) and list them on my homepage block.
Could anyone help me with this.
Thanks in advance!
Make sure the statistics module is enabled. Visit /admin/config/system/statistics (Drupal 7) and make sure Count content views is enabled (ticked).
Use views to create a block the usual way; for example add a field like Content: Title. Then make sure you add a sort criteria of Content statistics: Total views (desc).

How to know the link clicked by the user to set the breadcrumb using views in drupal 7?

I'll try to explain my problem giving a little context first.
I'm building a catalog of products and to categorize them I'm using a taxonomy tree with 4 sublevels. Each product can be related with one or more subcategories.
I used views to navigate the taxonomy tree to access the products related with each subcategory. To manage the breadcrumbs in here I redefined the hook_breadcrumb() function on my template.php and this is working perfectly.
The problems start here: when I get to the last level of subcategories I have the respective products and when I click one of the products it will enter the node page of that product. At this time I lose my breadcrumb trail because I entered the node. I could get the taxonomy tree of that product to build the breadcrumbs but the problem is that the product can be related with multiple subcategory terms.
So, in order to solve this problem I think that I need to know from wich path trail the visitor arrived to the product. In other words, I need to know the last taxonomy subcategory that the user visited to enter a specific product so that I can build the breadcrumbs correctly with that information.
So, can someone help me on how to know the path that the user was before entering a node?
Thanks in advance!
You can check http://drupal.org/project/cookiecrumbs a recent project which uses browsers history to show breadcrumb

Node referencing: How do you display (with VIEWS) a node(edition) with all its references (articles)?

Ingredients:
Drupal7 + References + Views module installed 2 content types:
magazine issue + magazine articles (for each issue)
Article c-type has a reference field: issue_no which displays the
issue it belongs
I made a Views to display me a plain list of issues only.
Requirements
1. When I click on the issue in the issue list I want to see all its references nodes(=articles) attached
2. I need to highlight the latest issue in the list by creating a separate page VIEW on the frontpage that contains articles of the latest view.
I would appreciate any help.
Recently I have done something similar for a project. In article view page go to advanced-> add a contextual filter of issue no. In magazine issue view page in fields-> add -> add a custom text field -> rewrite results -> select Output this field as a link to link it to your article view page with argument as issue no.
For example if your article list view page is article_list, you can add a rewrite result in custom text as article_list/[field_issue_no]; where [field_issue_no] is your issue no field.

Resources