Osclass forums
Support forums => old => Topic started by: prutix on March 01, 2015, 04:05:20 pm
-
Hi all,
How to display the name of the alert in User account manager - "user-alerts.php" as in panel administrator Users -> Aletrs (/oc-admin/themes/modern/users/alerts.php)
Thank you!
(http://s14.postimg.org/vp26jbu29/user_alerts.jpg)
(http://s13.postimg.org/lbpvvj35j/admin_alerts.jpg)
-
Hi,
In your theme user-alerts.php:
1.- Locate:
<?php while(osc_has_alerts()) { ?>
and replace it with:
<?php while(osc_has_alerts()) {
$alert = json_decode(osc_alert_search(), true); ?>
2.- A few lines below, replace:
<?php _e('Delete this alert', 'modern'); ?></a></div>
with:
<?php _e('Delete this alert', 'modern'); ?></a><span style="padding-left: 100px;"><?php echo $alert['sPattern']; ?></span></div>
(This if for Modern theme, if you're using another one look for line containing 'Delete this alert' and insert the new span in its right place).
Regards
-
Hi,
In your theme user-alerts.php:
1.- Locate:
<?php while(osc_has_alerts()) { ?>
and replace it with:
<?php while(osc_has_alerts()) {
$alert = json_decode(osc_alert_search(), true); ?>
2.- A few lines below, replace:
<?php _e('Delete this alert', 'modern'); ?></a></div>
with:
<?php _e('Delete this alert', 'modern'); ?></a><span style="padding-left: 100px;"><?php echo $alert['sPattern']; ?></span></div>
(This if for Modern theme, if you're using another one look for line containing 'Delete this alert' and insert the new span in its right place).
Regards
Good job teseo!
Thank you very much.
I appreciate your help!
-
Glad to be of help. :)
Please add [SOLVED] to the title of this thread.
-
How can I add a few specific informations alert?
For example, category or location.
Thanks in advance!
-
I'm afraid that osc_alert_search() function doesn't return data in a friendly format, Search Pattern (what Admin Dashboard and this code of mine show) is the only clear parameter.
Regards
-
In panel administrato,r category displays each alert, but in when go on /oc-admin/themes/modern/users/alerts.php I can not find the code...
-
In panel administrato,r category displays each alert
I can't see anything of that, screenshot please.
Rehgards
-
In panel administrato,r category displays each alert
I can't see anything of that, screenshot please.
Rehgards
First, it is a search in the subcategory "Autoturisme" (a parent category "Auto-moto-ambarcatiuni")
The second is a search without any category.
(http://s22.postimg.org/m1g3svfwh/alert_with_category.jpg)
Another subjesct is the link "Dezactiveaza".
What is his function?
I suppose that with this function we can disable sending mail to users when appear new items according to their alerts.
We can put this link in User Account Manager (user-alerts.php)?
Thank you!
-
and how to add a category name and a link to the category?
-
Teseo, I would like to ad there a link to the search page for that alert with it's parameters.
I tried for link
osc_search_url(json_decode(osc_alert_search(), true));
But the json_decode(osc_alert_search(), true) is not in the format that the osc_search_url function gets it's params.
Is there a built in function that decodes that json stored in DB to a compatible osc_search_url function format?
And if there isn't, which function is encoding that json from the result of Params::getParamsAsArray();?
EDITED: Solved here https://forums.osclass.org/development/insert-the-search-url-of-an-alert-in-db-alerts-table-s_search-column/msg159295/#msg159295