Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2022-03-23 18:54:25

Pat64
Plugin Author
From: France
Registered: 2005-12-12
Posts: 1,595
GitHub Twitter

Extract MAX value from custom_field

Hi all ;)

I want to convert a value stored in a custom field (number of views for the current page) to a “star rating”; the math formula is: current page views x 5 / Max value of views on the entire website.

So I need to extract this MAX() value. How to with a <txp:article_custom /> tag and maybe a FIELD() attribute?

Thank you in advance for your help.


Patrick.

Github | CodePen | Codier | Simplr theme | Wait Me: a maintenance theme | [\a mi.ni.ma]: a “Low Tech” simple Blog theme.

Offline

#2 2022-03-23 20:36:05

etc
Developer
Registered: 2010-11-11
Posts: 5,028
Website GitHub

Re: Extract MAX value from custom_field

That shouldn’t be difficult:

<txp:article_custom fields="max(cfname)" limit="0">
    <txp:custom_field name="cfname" />
</txp:article_custom>

Offline

#3 2022-03-23 20:44:02

jakob
Admin
From: Germany
Registered: 2005-01-20
Posts: 4,578
Website

Re: Extract MAX value from custom_field

Not sure if I’ve understood you correctly but could you not simply sort your articles by the pageviews custom field ordered by descending and limit output to the first one:

<txp:article_custom section="mysection" sort="custom_1+0 desc" limit="1">
    <txp:variable name="pageviews_max"><txp:custom_field name="pageviews" /></txp:variable>
</txp:article_custom>
<txp:php>
    global $variable, $thisarticle;
    $variable['star_rating'] = round( (intval($thisarticle['custom_1']) * 5) / intval($variable['pageviews_max']), 1);
</txp:php>

replacing custom_1 and pageviews with the custom field name and number you are using.


TXP Builders – finely-crafted code, design and txp

Offline

#4 2022-03-23 20:47:14

jakob
Admin
From: Germany
Registered: 2005-01-20
Posts: 4,578
Website

Re: Extract MAX value from custom_field

etc wrote #332980:

That shouldn’t be difficult:

<txp:article_custom fields="max(cfname)" limit="0">...

Neat. The fields attribute is new to me. It looks like it’s undocumented in the docs as yet.


TXP Builders – finely-crafted code, design and txp

Offline

#5 2022-03-24 03:16:24

Pat64
Plugin Author
From: France
Registered: 2005-12-12
Posts: 1,595
GitHub Twitter

Re: Extract MAX value from custom_field

etc wrote #332980:

That shouldn’t be difficult:

<txp:article_custom fields="max(cfname)" limit="0">...

I tried this:

<txp:article_custom fields="max(custom_1)" limit="0">
<txp:custom_field name="pageviews" />
</txp:article_custom>

… I got… a list of corresponding custom field values but not the MAX() one…

Trying this:

<txp:article_custom fields="max(pageviews)" limit="0">
<txp:custom_field name="pageviews" />
</txp:article_custom>

I got only one value but not the MAX() one…

Last edited by Pat64 (2022-03-24 03:19:29)


Patrick.

Github | CodePen | Codier | Simplr theme | Wait Me: a maintenance theme | [\a mi.ni.ma]: a “Low Tech” simple Blog theme.

Offline

#6 2022-03-24 08:27:07

etc
Developer
Registered: 2010-11-11
Posts: 5,028
Website GitHub

Re: Extract MAX value from custom_field

Pat64 wrote #332984:

I got only one value but not the MAX() one…

That’s probably due to the default varchar type of custom fields, so ‘5’ is greater than ‘12’. You can either try to convert pageviews cf to int or follow jacob’s advice, but ordering by pageviews+0 desc.

Offline

#7 2022-03-24 10:05:52

gaekwad
Server grease monkey
From: People's Republic of Cornwall
Registered: 2005-11-19
Posts: 4,134
GitHub

Re: Extract MAX value from custom_field

jakob wrote #332982:

It looks like it’s undocumented in the docs as yet.

github.com/textpattern/textpattern.github.io/issues/198

Offline

#8 2022-03-24 19:05:51

Pat64
Plugin Author
From: France
Registered: 2005-12-12
Posts: 1,595
GitHub Twitter

Re: Extract MAX value from custom_field

Fine.
Thank you, Oleg ;)

I’m using this with some good results (only one: the max value):

<txp:article_custom section='<txp:section />' fields="max(pageviews+0)" limit="1" sort="custom_2+0 desc">
<txp:custom_field name="pageviews" />
</txp:article_custom>

Note: pageviews is my custom field name and custom_2 its column into the textpattern table.

It seems obvious Oleg for all your advice given that you are one of the best users of Textpattern! A kind of magician.


Patrick.

Github | CodePen | Codier | Simplr theme | Wait Me: a maintenance theme | [\a mi.ni.ma]: a “Low Tech” simple Blog theme.

Offline

#9 2022-03-24 19:59:12

jakob
Admin
From: Germany
Registered: 2005-01-20
Posts: 4,578
Website

Re: Extract MAX value from custom_field

Pat64 wrote #332994:

I’m using this with some good results (only one: the max value):

<txp:article_custom section='<txp:section />' fields="max(pageviews+0)" limit="1" sort="custom_2+0 desc">...

What roles does the fields attribute play there? If you leave it out, I’m guessing (without having tested it) that it should also output a single article in your section with the greatest value for custom_2.


TXP Builders – finely-crafted code, design and txp

Offline

#10 2022-03-24 20:43:28

Pat64
Plugin Author
From: France
Registered: 2005-12-12
Posts: 1,595
GitHub Twitter

Re: Extract MAX value from custom_field

I did some tests on a local server with few articles. The code above seems to work. Unfortunately, not within a website in production… Still need some searches to make that working…


Patrick.

Github | CodePen | Codier | Simplr theme | Wait Me: a maintenance theme | [\a mi.ni.ma]: a “Low Tech” simple Blog theme.

Offline

#11 2022-03-24 20:52:33

etc
Developer
Registered: 2010-11-11
Posts: 5,028
Website GitHub

Re: Extract MAX value from custom_field

Pat64 wrote #332994:

It seems obvious Oleg for all your advice given that you are one of the best users of Textpattern!

That’s what usually happens after ~1300 commits, but thank you :-)

jakob wrote #332995:

What roles does the fields attribute play there? If you leave it out, I’m guessing (without having tested it) that it should also output a single article in your section with the greatest value for custom_2.

I concur, fields is useless and unused here (and it must be sort="custom_2+0", not pageviews). We could allow for expressions like max(cfname+0), but it feels ugly.

Offline

#12 2022-03-25 03:12:44

Pat64
Plugin Author
From: France
Registered: 2005-12-12
Posts: 1,595
GitHub Twitter

Re: Extract MAX value from custom_field

Here is my poor solution for the moment (it’s ugly):

A list of all values:

<txp:variable name="max_values"><txp:article_custom section='<txp:section />' limit="0" sort="custom_2"><txp:custom_field name="pageviews" />,</txp:article_custom></txp:variable>

… and the max one:

<txp:php>
/**
 * Rating value based on this
 * page view and max views
 */
global $variable;

$max = max(explode(',', $variable['max_values']));
echo ceil(custom_field(array('name'=>'pageviews')) * 5 / $max);

</txp:php>
etc wrote #332997:

I concur, fields is useless and unused here (and it must be sort="custom_2+0", not pageviews). We could allow for expressions like max(cfname+0), but it feels ugly.

Yes Oleg. Sorry, I didn’t try: only sort="custom_2+0" is needed.

Last edited by Pat64 (2023-06-30 12:03:51)


Patrick.

Github | CodePen | Codier | Simplr theme | Wait Me: a maintenance theme | [\a mi.ni.ma]: a “Low Tech” simple Blog theme.

Offline

Board footer

Powered by FluxBB