Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: aro_myadmin
One thing I noticed is that it does something strange to rss_unlimited_categories in the write screen.
Thanks for the heads up – I fixed the glitch and will fold it into the plugin with the next update.
Travel Atlas * Org | Start Somewhere
Offline
Re: aro_myadmin
If its possible, could you tell me what to change to fix it?
Thanks!
rloaderro wrote:
bq. One thing I noticed is that it does something strange to rss_unlimited_categories in the write screen.
Thanks for the heads up – I fixed the glitch and will fold it into the plugin with the next update.
Offline
Re: aro_myadmin
The problem is the rss plugin uses the same class for it’s multiple select. So first you have to target all multiple selects and give them their own class. This can be done in the aro_myadmin_js function, add the following around line 225:
// target multiple selects
\$("select[multiple]").addClass("multiple");
Then you can add a line in the myadmin.css to give a height to selects with the “multiple” class:
select.multiple {
height: 80px;
}
Travel Atlas * Org | Start Somewhere
Offline
Re: aro_myadmin
Thank you very much! This worked perfectly.
rloaderro wrote:
The problem is the rss plugin uses the same class for it’s multiple select. So first you have to target all multiple selects and give them their own class. This can be done in the aro_myadmin_js function, add the following around line 225:
// target multiple selects
\$("select[multiple]").addClass("multiple");
Then you can add a line in the myadmin.css to give a height to selects with the “multiple” class:
select.multiple {
height: 80px;
}
Last edited by typeshige (2008-04-24 00:17:59)
Offline
Re: aro_myadmin
Awesome Plugin! Installed a few minutes ago and works great!
Just a little detail:
As you see, there’s some trouble with some spanish characters in the Dashboard.
Anyway, my quick solution was to modify this:
<li><a href="?event=list"><txp:php>echo ucfirst(strtolower(gTxt('more').' '.gTxt('articles')));</txp:php></a></li>
to
<li><a href="?event=list">Más artículos</a></li>
but that’s not a real solution, I know.
Thanks for this great plugin!
Last edited by duchamp (2008-05-03 11:32:04)
Offline
Re: aro_myadmin
hi Alex!
Thanks for the kind words. A few quick questions – what version of PHP are you using?
Also, what happens if you try:
<li><a href="?event=list"><txp:php>echo ucfirst(gTxt('more').' '.gTxt('articles'));</txp:php></a></li>
Or even:
<li><a href="?event=list"><txp:php>echo gTxt('more').' '.gTxt('articles');</txp:php></a></li>
Also, have you tried updating the Spanish language pack under Admin > Preferences > Languages?
Thanks again!
Travel Atlas * Org | Start Somewhere
Offline
Re: aro_myadmin
rloaderro wrote:
hi Alex!
Thanks for the kind words. A few quick questions – what version of PHP are you using?
I’m testing this under my Local server (xampp) using PHP Version 5.2.5
Also, what happens if you try:
<li><a href="?event=list"><txp:php>echo ucfirst(gTxt('more').' '.gTxt('articles'));</txp:php></a></li>
Or even:
<li><a href="?event=list"><txp:php>echo gTxt('more').' '.gTxt('articles');</txp:php></a></li>
… ummmh nothing happens! :S
Maybe I must to change something in my php.ini … not sure …
Also, have you tried updating the Spanish language pack under Admin > Preferences > Languages?
Its a fresh Textpattern 4.0.6 with everything updated
Offline
Re: aro_myadmin
OK – I fixed this. Please re-download the plugin. This minor update also includes the rss_unlimited_categories fix. If you still find any problems please let me know – thanks!
Travel Atlas * Org | Start Somewhere
Offline
Re: aro_myadmin
It Works fantastic! Thanks a ton
That problem was just in my local server, in my on-line website the plugin works without any trouble.
Just another question:
could be possible to use the plugin to also skin the Plugins Tab and the Login screen?
cheers!
Offline
Re: aro_myadmin
Forget it! I realise that adding the line of code that you indicated in the Help to the textpattern/index.php solves that! … and then … this Plugin is almost perfect!
I need to parse/publish an article in the Dashboard and this would be completely perfect!
Offline
#23 2008-05-03 14:39:34
- FireFusion
- Member
- Registered: 2005-05-10
- Posts: 698
Re: aro_myadmin
Is it possible to get the dashboard without the style changes?
Offline
Re: aro_myadmin
hi FireFusion,
I think the best you could do would be to download the plugin, take a look at the PHP / TXP code used to generate the dashboard, and use that as reference with the asy_dashboard plugin.
Forget it! I realise that adding the line of code that you indicated in the Help to the textpattern/index.php solves that!
Yes – with that line the plugin is nearly seamless. The best part is toggling the plugin on/off in the admin panel and you can see how complete + unobtrusive the plugin is.
Cheers!
Travel Atlas * Org | Start Somewhere
Offline