You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download category can be paginated.
Default for url (canonical, og:url) is e_SELF
/**
* Returns with the current URL.
*/
function metatag_global_token_site_current_page_url()
{
return defset('e_SELF', '');
}
But each page have different url
for example (you got this url when you click on pagination under list)
/download/category/6/stuff-in-development/?order=id&sort=desc&view=3&from=6
is different that
/download/category/6/stuff-in-development/
but e_SELF returns /download/category/6/stuff-in-development/ for all pages.
e_REQUEST_URL would be probably a better idea
The text was updated successfully, but these errors were encountered:
I think page number should be part of "entity" - in most case it's 1, only with news and downloads category list could be different (no idea if pages can be paginated).
Download category can be paginated.
Default for url (canonical, og:url) is e_SELF
But each page have different url
for example (you got this url when you click on pagination under list)
/download/category/6/stuff-in-development/?order=id&sort=desc&view=3&from=6
is different that
/download/category/6/stuff-in-development/
but e_SELF returns
/download/category/6/stuff-in-development/
for all pages.e_REQUEST_URL would be probably a better idea
The text was updated successfully, but these errors were encountered: