Wow even more of a concern after changing these lines, my recommendations page actually shows my admin plugins manager even using a regular login without admin privileges, also shows friends and activity. crazy.
I guess just changing lines doesn't work, thought i was on a roll then. i will leave it to you, i'm new to this.
Hello, is there any way to switch off the error messages showing on the site?
I can't find out how, please help
hem... that was not so difficult, finally... (sorry I just begin to learn PHP & Elgg development)
Just put in comment line 37 : "var_dump($entities);" in file "/views/default/widgets/recommendations_received/view.php"
Now it's working perfectly.
Many thx Liry, you did a great job with this plugin !!!
@christophe - oh, just spotted it! I didn't even realize from your english that this is the error that you were referring to... thanks, it's fixed now.
I added on line 33
<?php echo elgg_view('input/securitytoken'); ?>
on line 107
<?php echo $vars['container_guid'] ? elgg_view('input/hidden', array('internalname' => 'container_guid', 'value' => $vars['container_guid'])) : ""; ?>
The plugin works perfectly with lord55 additions.
Many thx for your work Liri :-)
There's just a little problem left : the widget in the dashboard says "bool(false)".
I think the problem is in the file "views/default/widgets/recommendations_received/view.php", line 35 with the get_entities_from_metadata_multi method, but can't find how to solve the problem, if anyone can help me ?
Thx in advance !
Christophe
@lord55 - thanks, I added that. Indeed the security token was missing in that page.
@Christophe - I think that function changed for 1.7 so I took a look at reference.elgg.org and corrected it. Please test and let us know.
I updated the plugin now with lord55 and christphoe's comments, please test and confirm.
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors
i tried with command prompt also : tar -zxvf recommendations-1.2.tar.gz
i tried to use this plugin.But have a problem.After i create a new recommendation.
Have annoucement form is missing _token or _ts fields
i'm using elgg version 1.7.3.
any suggestions for me.
I'm working on 1.5, I've no idea what's changed.
Maybe one of the other 1.6 experienced developers could comment on this.
Hi,
Need help I getting the missing token security error I fixed it first in the/mod/recommendations/views/default/forms/recommendations/new.php
But now I can not approve the same error appears ...
Also when you go to someone else profile and click recommendation you will get a screen that is your !!!!
Please help
Fernando i could install bouth plugins (kevin`s and yours) but i still can't have a relationship between plugins....the name of form have to be celebrations o something like that? or i have to modified something in the code of celebrations, thanks again
last question, i get translate it into spanish but it doest'n show it in my screen and my language in elgg is spanish there is something i have to change in the file celebrations , i put it into the file langeuage the file es.php this is my file :
<?php
$spanish = array(
/**
* My HTML details
*/
// pagina
'celebrations:title' => "Mis eventos",
'celebrations:shorttitle' => "Ver eventos",
'celebrations:day' => "Dia",
// widget
'today_celebrations:title' => "Eventos de Hoy",
'today_celebrations:today' => "Hoy es",
'today_celebrations:description' => "Aniversarios, bodas...",
'today_celebrations:nacimiento' => "Cumpleaños",
'today_celebrations:santo' => "Día Festivo",
'today_celebrations:defuncion' => "Día del Santo",
'today_celebrations:nocelebrations' => "No hay eventos, pero puedes sugerir alguno",
/* Form fields */
'today_celebrations:profile_birthdate_label' => "Fecha (dd/mm/yyyy)",
'today_celebrations:profile_feastdate_label' => "Fecha del día festivo (dd/mm)",
/* Month name */
"month:1" => "Enero",
"month:2" => "Febrero",
"month:3" => "Marzo",
"month:4" => "Abril",
"month:5" => "Mayo",
"month:6" => "Junio",
"month:7" => "Julio",
"month:8" => "Agosto",
"month:9" => "Septiembre",
"month:10" => "Octubre",
"month:11" => "Noviembre",
"month:12" => "Diciembre"
);
add_translation("es",$spanish);
?>
@Fernando
Installed your plugin (good work). In the profile edit page, when I click to open the one of the select boxes (day, month or year) it opens and closes up the list of options immaditely, I am unable to view them. That is under Firefox 3.0.13 in Linux.
With Internet Explorer 8 (fully updated) under Windows XP it works ok.
So it's obviously a browser compatibility issue, can you look it up please?
@liri I know this issue, but I was working on the core and this issue is at the bottom.
As it works with anothers browsers and you can select it in firefox if you stay the cursor above the select box (I think that in the scroll bar), I had considered not important while it was another issues.
Thanks for your comment, I'll say you when I'll be able to correct it
Fernando
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
@Stonetrol2, I'll write up a quick tutorial when I get a chance soon on how to use this plugin to create future plugins.
@twitface, you can still use this plug-in to update the version in the manifest file
@edesignerz.net, it should remove some of the tedious work that people have to do just to create a plugin by letting you focus more on how to get things running:) thanks for using it!
I think I will integrate into Elgg as a plugin to generate new plugins from PHP by invoking this python script through a system call with the values input through some forms from the plugin's settings.
Its a great idea but not work here too: when i creat a group and after approval only admin can see the groups... the others cant, even after the plugin is disable!
I cannot delete a group. Does this plugin truly have this capability? If yes, how do I use it?
None of the groups created and approved are showing up for any users other than admin.... how can i fix this!?
HI , Thanks a lot for this extension. Will it be possible to make this compatable with 1.8 Please???? I think it is really useful extension for the community and i am sure that it will be used for the new version as well.
A small site access hack, for those who wish to use generic whitelist filtering instead of exact URL only :
in mod/siteaccess/start.php :
// Facyla : allow generic URL filtering, like pg/blog/$
$cutat = null;
$cutat = strpos($acl, '$');
if ($cutat > 0) {
$acl = substr($acl, 0, $cutat);
$url = substr($url, 0, strlen($CONFIG->wwwroot . $acl));
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
//system_message('Matching generic filtering on : ' . $url);
break;
}
You should end up with (inserted => bold) :
foreach($accesslist as $acl) {
$acl = trim($acl);
// Facyla : allow generic URL, like pg/blog/$
$cutat = null;
$cutat = strpos($acl, '$');
if ($cutat > 0) {
$acl = substr($acl, 0, $cutat);
$url = substr($url, 0, strlen($CONFIG->wwwroot . $acl));
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
//system_message('Matching generic filtering on : ' . $url);
break;
}
}
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
break;
}
}
Finally add generic URL(s) in plugin settings : write request URI (eg. : pg/blog) followed by the dollar ($) symbol ; all URL beggining by this exact match will become accessible.
In extenso, il you add the line : pg/blog/$, URL like pg/blog/username/read/... will become publicly available..
Enjoy ;)
Hello,
When I try to use Site Acess, the captcha image doesn't appear, so I cant' use the form :
I'm using Elgg 1.7.8
Thank you
After enabling the plugin, I do not see any chnage on my private messages form. Is that where the changes are supposed to appear. I would be greatly appreciated if anyone could guide me a bit.
@Shouvik: This plugin does not change the user interface of any component in Elgg.
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
sorry but caedes's version proved pretty buggy (at least on my 1.5) and after putting much effort on it I decided to let it go and whenever I have time to implement those addons mself.
So can't help ya there... contact caedes.
Hey Liri,
I am new to elgg. Your task management plugin is something that I would definitely like to have in my new network. Are you still working on group and other functionality discussed in this feed? Its an important plugin for sure. Can the tasks in your task manager be linked to wiki or calendar items for cross referencing in the overall project plan?
Thanks for the good work!
Will it work for 1.7? Also Can I able to add some additional fields in this plugins?
Thanks.
HI , Thanks a lot for this extension. Will it be possible to make this compatable with 1.8 Please???? I think it is really useful extension for the community and i am sure that it will be used for the new version as well.
A small site access hack, for those who wish to use generic whitelist filtering instead of exact URL only :
in mod/siteaccess/start.php :
// Facyla : allow generic URL filtering, like pg/blog/$
$cutat = null;
$cutat = strpos($acl, '$');
if ($cutat > 0) {
$acl = substr($acl, 0, $cutat);
$url = substr($url, 0, strlen($CONFIG->wwwroot . $acl));
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
//system_message('Matching generic filtering on : ' . $url);
break;
}
You should end up with (inserted => bold) :
foreach($accesslist as $acl) {
$acl = trim($acl);
// Facyla : allow generic URL, like pg/blog/$
$cutat = null;
$cutat = strpos($acl, '$');
if ($cutat > 0) {
$acl = substr($acl, 0, $cutat);
$url = substr($url, 0, strlen($CONFIG->wwwroot . $acl));
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
//system_message('Matching generic filtering on : ' . $url);
break;
}
}
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
break;
}
}
Finally add generic URL(s) in plugin settings : write request URI (eg. : pg/blog) followed by the dollar ($) symbol ; all URL beggining by this exact match will become accessible.
In extenso, il you add the line : pg/blog/$, URL like pg/blog/username/read/... will become publicly available..
Enjoy ;)
Hello,
When I try to use Site Acess, the captcha image doesn't appear, so I cant' use the form :
I'm using Elgg 1.7.8
Thank you
Thanks Liri, actually, Status field can replace Report field. It can be a drop down field which will enable the Task Owner to update task when needed.
I also agree with Pilt. You can make number 2 (Assigned to) an option and hidden field that the task owner can use and you can enable members to Join the Task, just like Event Calender plugin, indicating their willingness to participate in the Task. This way, Assigned To field would only be used optionally.
Basically, the group owner should be able to assign the Task, but if it not too much for you, Pilt's suggestion of allowing the Administrator to optioanlly be able to assign Task would be fantastic too.
Finally, on the listing page the following fields would be good:
Progress should be a hidden field and needs not appear on the Listing Page
Thanks.
Hi..
I'm currently Using Elgg 1.8
Is there any Task plugin for Elgg 1.8 Version.
I'm searching Task plugin for 1.8
Please help me
Thanks Liri, actually, Status field can replace Report field. It can be a drop down field which will enable the Task Owner to update task when needed.
I also agree with Pilt. You can make number 2 (Assigned to) an option and hidden field that the task owner can use and you can enable members to Join the Task, just like Event Calender plugin, indicating their willingness to participate in the Task. This way, Assigned To field would only be used optionally.
Basically, the group owner should be able to assign the Task, but if it not too much for you, Pilt's suggestion of allowing the Administrator to optioanlly be able to assign Task would be fantastic too.
Finally, on the listing page the following fields would be good:
Progress should be a hidden field and needs not appear on the Listing Page
Thanks.
Hi..
I'm currently Using Elgg 1.8
Is there any Task plugin for Elgg 1.8 Version.
I'm searching Task plugin for 1.8
Please help me
Thanks Liri, actually, Status field can replace Report field. It can be a drop down field which will enable the Task Owner to update task when needed.
I also agree with Pilt. You can make number 2 (Assigned to) an option and hidden field that the task owner can use and you can enable members to Join the Task, just like Event Calender plugin, indicating their willingness to participate in the Task. This way, Assigned To field would only be used optionally.
Basically, the group owner should be able to assign the Task, but if it not too much for you, Pilt's suggestion of allowing the Administrator to optioanlly be able to assign Task would be fantastic too.
Finally, on the listing page the following fields would be good:
Progress should be a hidden field and needs not appear on the Listing Page
Thanks.
Hi..
I'm currently Using Elgg 1.8
Is there any Task plugin for Elgg 1.8 Version.
I'm searching Task plugin for 1.8
Please help me
Thanks Liri, actually, Status field can replace Report field. It can be a drop down field which will enable the Task Owner to update task when needed.
I also agree with Pilt. You can make number 2 (Assigned to) an option and hidden field that the task owner can use and you can enable members to Join the Task, just like Event Calender plugin, indicating their willingness to participate in the Task. This way, Assigned To field would only be used optionally.
Basically, the group owner should be able to assign the Task, but if it not too much for you, Pilt's suggestion of allowing the Administrator to optioanlly be able to assign Task would be fantastic too.
Finally, on the listing page the following fields would be good:
Progress should be a hidden field and needs not appear on the Listing Page
Thanks.
Hi..
I'm currently Using Elgg 1.8
Is there any Task plugin for Elgg 1.8 Version.
I'm searching Task plugin for 1.8
Please help me
Thanks Liri, actually, Status field can replace Report field. It can be a drop down field which will enable the Task Owner to update task when needed.
I also agree with Pilt. You can make number 2 (Assigned to) an option and hidden field that the task owner can use and you can enable members to Join the Task, just like Event Calender plugin, indicating their willingness to participate in the Task. This way, Assigned To field would only be used optionally.
Basically, the group owner should be able to assign the Task, but if it not too much for you, Pilt's suggestion of allowing the Administrator to optioanlly be able to assign Task would be fantastic too.
Finally, on the listing page the following fields would be good:
Progress should be a hidden field and needs not appear on the Listing Page
Thanks.
Hi..
I'm currently Using Elgg 1.8
Is there any Task plugin for Elgg 1.8 Version.
I'm searching Task plugin for 1.8
Please help me
How I can create, for example, recent activities see only five innings and the other you see as your (and pages)
Is it compatible with elgg 1.7.1?
Thank you very much
Thanks a lot, Jonathan.
This plugin solved my problems with the default customindex file.
A special thanks for putting in an Ad in the module, which helped me in positioning a slide show exactly in its place. This is a good facelift.
I have one doubt though. What is "Latest discussion" supposed to cover/display? Nothing appears under it on my site regardless of activities everywhere.
PROBLEM: How do I change the modules? I have no settings or options link to edit?
seems my chat log stays on, how do i delete it? My test chat is on there from days ago, i want it to delete everytime you leave..is that possible?
hi all,
well, I working on a new version implementing v1.3 and fixing issues mentioned above. The IE still has problems if the chat is not embetted (however v1.3 fixed some IE related stuff) but I'll solve that for the new release.
For usability questions its a good idea to consult the phpfreechat homepage.
seems my chat log stays on, how do i delete it? My test chat is on there from days ago, i want it to delete everytime you leave..is that possible?
hi all,
well, I working on a new version implementing v1.3 and fixing issues mentioned above. The IE still has problems if the chat is not embetted (however v1.3 fixed some IE related stuff) but I'll solve that for the new release.
For usability questions its a good idea to consult the phpfreechat homepage.
seems my chat log stays on, how do i delete it? My test chat is on there from days ago, i want it to delete everytime you leave..is that possible?
hi all,
well, I working on a new version implementing v1.3 and fixing issues mentioned above. The IE still has problems if the chat is not embetted (however v1.3 fixed some IE related stuff) but I'll solve that for the new release.
For usability questions its a good idea to consult the phpfreechat homepage.
Hi i've found a little solution for the problem of the "default" value for moderation.
For the file /moderation/actions/friendrequests/add.php
after the line:
$moderation=$settings['moderation'];
simply put an if control
if ($moderation != "") {
//keep the same
}else{
//set as moderation
$moderation = 'moderation';
}
I've found some little problems like, for example, that not all the contents are available in the translation editor but need to be translated inside the code.
Btw a BIG ISSUE that 'ive found is that when someone accept friendship, this activity isn't set in the last activities.
Thanks for you reply Shellcode,
I tried adding in the siteaccess beta 2.0 version and after enabling only get this message "siteaccess-2.0 is a misconfigured plugin." Any other thoughts?
Hmmm... it shouldn't show up as siteaccess-2.0... it should be /mod/siteaccess
Do you have something like /mod/siteaccess-2.0/siteaccess ??? If so just move siteaccess to the /mod folder.
siteaccess-2.0 was just the filename but not the actual name of the folder....
Thanks for you reply Shellcode,
I tried adding in the siteaccess beta 2.0 version and after enabling only get this message "siteaccess-2.0 is a misconfigured plugin." Any other thoughts?
Hmmm... it shouldn't show up as siteaccess-2.0... it should be /mod/siteaccess
Do you have something like /mod/siteaccess-2.0/siteaccess ??? If so just move siteaccess to the /mod folder.
siteaccess-2.0 was just the filename but not the actual name of the folder....
Thanks for you reply Shellcode,
I tried adding in the siteaccess beta 2.0 version and after enabling only get this message "siteaccess-2.0 is a misconfigured plugin." Any other thoughts?
Hmmm... it shouldn't show up as siteaccess-2.0... it should be /mod/siteaccess
Do you have something like /mod/siteaccess-2.0/siteaccess ??? If so just move siteaccess to the /mod folder.
siteaccess-2.0 was just the filename but not the actual name of the folder....
Thanks for you reply Shellcode,
I tried adding in the siteaccess beta 2.0 version and after enabling only get this message "siteaccess-2.0 is a misconfigured plugin." Any other thoughts?
Hmmm... it shouldn't show up as siteaccess-2.0... it should be /mod/siteaccess
Do you have something like /mod/siteaccess-2.0/siteaccess ??? If so just move siteaccess to the /mod folder.
siteaccess-2.0 was just the filename but not the actual name of the folder....
Any ideas how to get this to add default notifications for the user to be enabled?
Diving into the notifications plugin code there's a method such as:
set_user_notification_setting($_SESSION['user']->guid, $method, ($personal[$method] == '1') ? true : false);
though I'm wondering what $method is?
@ SocialTrak Guru
It's great to have already a "built-in-friend" when you register and login for the first time.
I am a member of a fast growing elgg-site that uses the technique. But I suggest you make an arrangement with Jeroen, who has developed the login_redirector plugin. Because these two plugins clash. When both are enabled, I am thrown out of my site to get a blank page with an error message saying the page can't be found.
Personally, I can't part with login_redirector, it's such a useful plugin.
Can you do something about it, please?
Thanks.
This doesn't seem to be working with Elgg 1.6.1 could you please look into that?
Hi Kevin,
Nice Plugin !! Great Work :) While working with the plugin can see the field with Image upload option, tried video upload with this option but it doesn't turned up. Can you please advise if there is any other integration for video upload using this form plugin?
Thanks,
Anitha
Hi Kevin,
Using forms module have created continent, country, state select boxes. But now i need to populate countries based on the selection of a continent, as well populating state based on the selected country.Will it be possible to do it with Elgg Forms plugin?
Thanks in Advance!!
Anitha
Can you explain the "nonstandard-mta" setting? If you use SMTP it only uses \n endings for the headers but for php mail() delivery it uses \r\n line endings.
This causes issues with Cisco Ironport security devices which confuse the \r\n for two line breaks and insert an extra header plus blank line in the middle of the mail headers, breaking the mail message.
Is there a good reason to default to using \r\n when not using SMTP delivery? It seems to just add problems. I have found plenty of people reporting issues with \r\n line endings with PHPMailer whether or not it is "standard".
@Dave The nonstandard setting affects the line endings used. Quoting from RFC 5322 (http://tools.ietf.org/html/rfc5322):
"Header fields are lines beginning with a field name, followed by a
colon (":"), followed by a field body, and terminated by CRLF"
Selecting non-standard in the settings uses LF in the header. This is sometimes required if your mail transfer agent is doing funky things by reformatting the header (auto replacing LF with CRLF for example)
Just a note - the release you are commenting on is quite old. You probably want to upgrade. See the list of releases on the side.
hi cash, I'm still a newbie in using elgg. I'm just gonna ask if I should tick the "Override default Elgg mail handler" upon install? because im having a problem here, some of my audience does not receive their verification email. Please reply asap. :D God bless!
This could be a great plugin, but there are a few issues
Many translations missing = to much hardcoded english.
The topbar extension doesn't work (could be a 1.5 issue)
And setting the default moderation level as admin would be so nice
Keep up the good work
slyhne
@Webcubes it's a great plugin, I'll be happy to contribute the english translation instead of all the hard-coded text in the plugin once you get it compatible with 1.5 so I can test it :-)
Okay my file arrived okay and installation will take place this weekend - thanks to Dr Sanu for fixing things..
Any one here do me a favour with a few italian translations for these sentences ? :-)
"Create Ad categories"
"Set here some predefined ad categories that will be used as categories for posting Classifieds, enter them below, separated with commas."
"Site adcategories were successfully saved."
"New Classified post"
"Classifieds Tag cloud"
"Would you like to change the existing image?"
Hi Kevin,
Nice Plugin !! Great Work :) While working with the plugin can see the field with Image upload option, tried video upload with this option but it doesn't turned up. Can you please advise if there is any other integration for video upload using this form plugin?
Thanks,
Anitha
Hi Kevin,
Using forms module have created continent, country, state select boxes. But now i need to populate countries based on the selection of a continent, as well populating state based on the selected country.Will it be possible to do it with Elgg Forms plugin?
Thanks in Advance!!
Anitha
Okay my file arrived okay and installation will take place this weekend - thanks to Dr Sanu for fixing things..
Any one here do me a favour with a few italian translations for these sentences ? :-)
"Create Ad categories"
"Set here some predefined ad categories that will be used as categories for posting Classifieds, enter them below, separated with commas."
"Site adcategories were successfully saved."
"New Classified post"
"Classifieds Tag cloud"
"Would you like to change the existing image?"
