Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 25/11/2021 Black Friday Promotion

    BIG SALE, 35% discount for all our extensions. Use BF21 coupon code. Hurry up the discount is valid till 1 December.

  • 30/04/2021 Important information

    We transferred to another hosting so if you are experiencing any problem let us know. We will fix it as soon as possible.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Using Data, ARTICLES can we select articles by TAG
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Using Data, ARTICLES can we select articles by TAG
#64916
Using Data, ARTICLES can we select articles by TAG 3 Years, 10 Months ago Karma: 0
On the Data builder, where you can select by articles...

Can you select the ARTICLES by TAG?

Can you choose to display specific CUSTOM FIELDS in the output?

thanks!
The administrator has disabled public write access.
 
#64919
Re:Using Data, ARTICLES can we select articles by TAG 3 Years, 10 Months ago Karma: 739
Hello,

Sorry, but articles data query builder doesn't support ability to select by tags.

About custom fields, could you specify the widget (tabs, accordion or another) which you use the created query?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#65011
Re:Using Data, ARTICLES can we select articles by TAG 3 Years, 10 Months ago Karma: 0
I was hoping to create a 'list view' in smart content, using a table...ideally..

1. select articles by tag
2. include specific custom fields in the display

But since we can't select by tag, at least for now, it doesn't help...although we could probably create the sql statement to build it manually.
The administrator has disabled public write access.
 
#65030
Re:Using Data, ARTICLES can we select articles by TAG 3 Years, 10 Months ago Karma: 739
Hello,

The following SQL query can be used if want to select articles with "Red" or "Green" tag:

Code:


SELECT
  C.*
FROM
  #__content C INNER JOIN #__contentitem_tag_map TM
    ON C.id = TM.content_item_id
  INNER JOIN #__tags T
    ON TM.tag_id = T.id
WHERE
  T.path IN ('red', 'green')
GROUP BY
  C.id



It can be used with "DataTable" widget to show articles in a table view. Repeater plugin can be used if you need a custom layout.

Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1