AleksDerFar
Forum Replies Created
-
Forum: Plugins
In reply to: [Shortcode in Menus] Warning: Creating default object from empty valueIt works perfect thank you!.
Forum: Plugins
In reply to: [Theme My Login] Widget redirects to a blank screenFIXED
Copy: \wp-content\plugins\login-with-ajax\widget\default\widget_out.php
to: \wp-content\themes\YOURTHEME\plugins\login-with-ajax\default\Edit widget_out.php and delete all lines from 69 to 96:
from: <?php if( get_option(‘users_can_regi……..
to: <?php endif; ?>
both inclusive.Now you have TML login, register, etc… with login with ajax profile menus.
(Maybe this should be in LWA but seems forgotten).Forum: Plugins
In reply to: [Theme My Login] Widget redirects to a blank screenIt’s a conflict with login with ajax which I need to access users profile.
Anyway when I disable login with ajax and I keep user/pass empty/wrong redirects me to the /login page with no message of wrong password.
I’m looking for a solution.Sorry for my engrrishh.
Forum: Plugins
In reply to: [Theme My Login] Widget redirects to a blank screenUpdate: Blog style is not the problem. I get the same blank page in blog style.
I will be grateful.
I get http…/logout/?_wpnonce=xxxxxxxx with a blank page with that fix. I get something similar with login but it works ok on my localhost with the same web.
Any suggestion?Forum: Plugins
In reply to: [Theme My Login] Widget redirects to a blank screenThere seems to be a problem when you use a page as main and not the blog style.
Forum: Plugins
In reply to: [Theme My Login] "Register" word can't be translatedSolved: edit register page title.
Forum: Plugins
In reply to: [bbp user online status] Show a red / green circle?I’m sorry I’ve been offline several days but luckily Lee is here.
Since I’m having problems with dashicons in Firefox I did the same with font awesome icons.
Lee code edited:
if (is_user_online($user_id)) { echo '<span class="user-status-online fa fa-user" title="Online"></span>'; } else { echo '<span class="user-status-offline fa fa-user" title="Offline"> </span>';.user-status-online.fa.fa-user {color: #0ab40a;} .user-status-offline.fa.fa-user {color: #a00a0a;}Forum: Plugins
In reply to: [bbp user online status] Error deactivating the pluginI’m sorry I’ve been offline several days thanks for the answer.
The plugin works perfect if I enable/disable it from plugins menu. I get that error disabling it from bbp-uos settings but it can solved leaving it checked all the time.Error pic:
http://i.imgur.com/0VEdkkC.gifGood work and sorry my english sux.
Forum: Plugins
In reply to: [GD bbPress Tools] Multiple quote buttons on last updatehere linked images:
problem 1 on 1.7Forum: Plugins
In reply to: [bbp user online status] Show a red / green circle?I’ve been looking and it isn’t difficult adding a class and icon or image into display.php
Is there any way to display that image or icon in the left side (before) of username?
Solved. I really do not know how.
Forum: Plugins
In reply to: [Front End PM] Translation problemPerfect! I can now translate properly into spanish thanks.
To get plural form on 0 messages/announcements change
( $x > 1 )to( $x <> 1 )
Right here in functions.php
$sm = ( $numNew > 1 ) ? __('new messages', 'fep'): __('new message', 'fep');
And here in fep-announcement-class.php
$sa = ( $numNew > 1 ) ? __('new announcements', 'fep'): __('new announcement', 'fep');For the next update would be great get “No new messages or new announcements” to avoid those red numbers.
Forum: Plugins
In reply to: [Front End PM] Translation problemIt works better now thanks. I found a problem with plural form on Announcement box.
On the other hand spanish plurals are a little different from English. For example:
English plural: “new messages“
Spanish plural: “news messages“
There is a way to get a plural for “new” too?Forum: Plugins
In reply to: [Front End PM] Translation problemCompleting the previous post.
When I translate top notification bar “%d new message%s” or ” %d new announcement%s” to “%d nuevo%s mensaje%s” or “%d nuevo%s anuncio%s” I get a php error. Only when I disable the first %s the problem is solved.On the other hand I’m unnable to translate “You have (x) new message and (x) new announcement” from Front End PM page using translate files only editing php files directly.