Osclass forums
Development => Plugins => Topic started by: sydcode on December 25, 2012, 06:58:32 pm
-
Merry Christmas! :) Here is a little present from sharkey (http://forums.osclass.org/index.php?action=profile;u=11728) and myself.
Custom Attributes supports:
- Four input types (text, select, radio, and checkbox).
- Ability to make them required or searchable.
- Choice of alphabetical or custom ordering.
- Editing of inputs and values.
- Attribute groups, with category selection.
- Optional group headings.
This is a beta version! Please don't expect it to be perfect.
We hope you find it useful, and we're looking forward to your comments.
Requires version 3.0 or greater.
Update (4th March 2013):
I've uploaded a new beta version. Thanks for your patience!
This plugin is still in development so there may be lots of bugs.
Update simply by clicking on the cross button and uploading the file.
Don't uninstall or you will lose your existing fields and values.
Good luck :)
Update (5th March, 2013):
Fixed bugs and added Jay's updates. Custom Attributes (https://github.com/sydcode/custom_attributes) is now on GitHub.
Remove "-master" that GitHub adds to the plugin folder. Better yet, use the SourceForge link below.
Update (12th March, 2013):
Added language support.
Update (17th June, 2013):
Added date field (jQuery datepicker) and textarea field.
Added limits (min-max) option for text fields.
Added support for Bender theme.
Bug fixes, thanks Aficionado and sirjones!
Fixed deprecated hooks (v3.2 ready)
Many small improvements.
Update (20th December, 2013):
Removed search filter to fix wildcard bug. Thanks dev101!
Added settings "Hide empty attributes" and "Uninstall data".
Allowed multiple installs and custom folder names.
Fixed bug causing groups to reset on values page.
Fixed bug in search fields. Thanks mestr!
Remember! DO NOT uninstall the old plugin or your data will be lost.
Just hit the plus button and upload the new plugin.
Download Custom Attributes (121KB):
http://sourceforge.net/projects/custom-attrs/files/latest/download
-
I want to clarify Sydcode was paid to create this plugin.
I requested it be given back to the community but I do not expect him to maintain it.
If anyone needs help with another project I would strongly suggest hiring him, he does amazing work and you can verify through this plugin. I would ask if you hire him to be as generous as I (shameless plug) and share his work.
Thank you and Merry Christmas!
-
Oh my goodness! Thank you so much! This is the kind of plugin we've been needing here. I just installed it and played with it a little, and so far so good. I haven't done all that I need to with it, so I'll keep you updated on how it works once I have everything set up. I've been wanting a plugin that would allow you to add custom fields that are searchable without having to basically create your own attributes plugin. One thing for now, is there a way to add different attributes to different categories. Right now it looks like if I check more than one category, it will add those attributes to all the cats that are checked?
-
... a plugin that would allow you to add custom fields that are searchable ...
You guys nailed it! That's the kind of stuff that can make OSClass a real contender. The initial excitement over the script had almost faded after noticing that almost EVERYTHING needs to be coded afterwards if one wants modifications. Kudos, guys!
-
How are we to translate? Not a plugin, but the check-box, fields, headers etc ...
Such is the custom fields. But still can not translate?
Thanks.
-
Great plugin....but if i want to have this plugin under another name to use it in different categories...witch lines should i change in the php files?....for exampel i installed it under the name custom_attributes and i use it in the service category....but i want to make other attributes to use them in job category.....is like i instaled this plugin twice but under different names...how do i do that? tks in advance.
-
How are we to translate? Not a plugin, but the check-box, fields, headers etc ...
Such is the custom fields. But still can not translate?
Thanks.
Modify conf.php
Line 119
<h2 class='render-title' style='margin-bottom: 10px; margin-top: 0;'><?php _e('Heading', PLUGIN_NAME); ?></h2>
Line 134
<h2 class='render-title' style='margin-bottom: 10px; margin-top: 0;'><?php _e('Add Attribute', PLUGIN_NAME); ?></h2>
Line 162
<h2 class='render-title' style='margin-bottom: 10px;'><?php _e('Delete Attribute', PLUGIN_NAME); ?></h2>
Lines 218 -223
<select class='field_type' name='edit_type'>
<option value='text'<?php if ($type == 'text') echo " selected='selected'"; ?>><?php _e('Text', PLUGIN_NAME); ?></option>
<option value='select'<?php if ($type == 'select') echo " selected='selected'"; ?>><?php _e('Select', PLUGIN_NAME); ?></option>
<option value='radio'<?php if ($type == 'radio') echo " selected='selected'"; ?>><?php _e('Radio', PLUGIN_NAME); ?></option>
<option value='checkbox'<?php if ($type == 'checkbox') echo " selected='selected'"; ?>><?php _e('Checkbox', PLUGIN_NAME); ?></option>
</select>
-
Oh my goodness! Thank you so much! This is the kind of plugin we've been needing here. I just installed it and played with it a little, and so far so good. I haven't done all that I need to with it, so I'll keep you updated on how it works once I have everything set up. I've been wanting a plugin that would allow you to add custom fields that are searchable without having to basically create your own attributes plugin. One thing for now, is there a way to add different attributes to different categories. Right now it looks like if I check more than one category, it will add those attributes to all the cats that are checked?
Great plugin....but if i want to have this plugin under another name to use it in different categories...witch lines should i change in the php files?....for exampel i installed it under the name custom_attributes and i use it in the service category....but i want to make other attributes to use them in job category.....is like i instaled this plugin twice but under different names...how do i do that? tks in advance.
I only use one category and did not consider needing this for multiple categories so I'm not sure it's possible without extensive modifications. It's all or nothing right now.
Maybe Sydcode will answer but my intent was to create this based on my needs and hope someone else in the community enhances it.
ETA:
I just noticed this;
Todo:
- Move inline styles to stylesheets.
- Add category selector.
-
How are we to translate? Not a plugin, but the check-box, fields, headers etc ...
Such is the custom fields. But still can not translate?
Thanks.
Modify conf.php
Line 119
<h2 class='render-title' style='margin-bottom: 10px; margin-top: 0;'><?php _e('Heading', PLUGIN_NAME); ?></h2>
Line 134
<h2 class='render-title' style='margin-bottom: 10px; margin-top: 0;'><?php _e('Add Attribute', PLUGIN_NAME); ?></h2>
Line 162
<h2 class='render-title' style='margin-bottom: 10px;'><?php _e('Delete Attribute', PLUGIN_NAME); ?></h2>
Lines 218 -223
<select class='field_type' name='edit_type'>
<option value='text'<?php if ($type == 'text') echo " selected='selected'"; ?>><?php _e('Text', PLUGIN_NAME); ?></option>
<option value='select'<?php if ($type == 'select') echo " selected='selected'"; ?>><?php _e('Select', PLUGIN_NAME); ?></option>
<option value='radio'<?php if ($type == 'radio') echo " selected='selected'"; ?>><?php _e('Radio', PLUGIN_NAME); ?></option>
<option value='checkbox'<?php if ($type == 'checkbox') echo " selected='selected'"; ?>><?php _e('Checkbox', PLUGIN_NAME); ?></option>
</select>
Hello.
I'm talking about information that is presented in front end user.
Not translate plugin, but users see the data.
The same problem has "add custom fields in menu item".
Be possible to translate each attribute in languages enabled on the site.
When you add an attribute if you write in English, appears only in English ...
-
Need add locale function to the plugin...
Thanks ;)
-
Thank you sharkey! Very kind of you to say that. :)
I'll add more features once the holidays are over. The first will be a category selector, followed by localization. Do you guys think it's worth having import and export functions?
instaled this plugin twice but under different names...how do i do that?
That's a lot of work. Everything is stored in custom tables so a lot of code needs to be changed. The category select will be added very soon.
-
looks Great hop will work
-
Hi sydcode,
I have just tried your plugin. It does seem to be working for the most part. The one part that is not working for me is searching by the attributes. It could be other plugins conflicting I will try on a fresh install once and see if that helps.
I also would think and import and export function would be very useful.
Jay
-
Hi sydcode,
I have just tried your plugin. It does seem to be working for the most part. The one part that is not working for me is searching by the attributes. It could be other plugins conflicting I will try on a fresh install once and see if that helps.
I also would think and import and export function would be very useful.
Jay
Hi Jay,
Does it work for you?
It's working great for me with only 1 quirk. The edit values section shows the ad's with that value. I don't understand that design.
-
Hi sharkey,
I just tried it on a new install and it is working just fine. I am thinking I may have had another attribute plugin installed on my other site and that is why it was not working right.
I do not quite follow the following line.
The edit values section shows the ad's with that value. I don't understand that design.
Jay
-
Hi
I have a small fix for you. Currently with the following lines of code brakes the search from searching the description.
if (!empty($params['sPattern'])) {
$pattern = trim($params['sPattern']);
Search::newInstance()->addConditions("s_title LIKE '%". $pattern . "%'");
}
The solution is to remove the above lines. The line numbers are 108 to 111.
Jay
-
Would it be as effective to use this instead of car attributes?
Could we have the vehicle makes and models still?
Thanks
-
in which files are the above lines located?
-
Hi
The lines are in the index.php file of the plugin.
Jay
-
thanks a lot.
-
any idea why the search returns duplicate items?
-
Would it be as effective to use this instead of car attributes?
Could we have the vehicle makes and models still?
Thanks
I believe this plugin is better but .......
a) I'm biased
b) this is beta
c) I've never used cars attributes so it may have some feature I'm not aware of.
Try both and let us know which meets your needs better and why. ;)
Thinking about it cars attributes probably does something like
Car>Honda>CRV>4 cyl>4 door>
with sub attributes.
-
any idea why the search returns duplicate items?
Is the duplicate a sponsored ad? That's the only issue I've had.
-
nope its normal ads. some of them come 2 and 3 times...
-
I'll notify Sydcode an alternate way and see if we can drag him here. :P The testing I've done is very limited as I have no end users so any ads are one's I've made up.
P.S. Did you make any changes? I haven't made any including what Trains fixed yet.
-
thanks a lot. the site is www.immoeuro.be.
if you search with the term "flat" you will see the double ads.
thanks in advanced
-
I very much like this plugin, but i dont think its possible to have drop down selections for vehicle makes and models like in car attributes, for example if i select nissan, then all the nissan models will appear, if i change to jaguar, then the model selections change to jagaurs, i havent played with it much so not 100% sure.
Maybe i can install the cars attributes and just use that for makes and models, but im struggling to delete all the other parts to this like airbags, fuel type etc without any problems, if i can do this then i can then use this plugin for any other fields i choose, maybe the can be combined?
-
@admymotor,
Currently the custom attributes plugin does not support sub selects yet. It is possible just has not been implemented.
Jay
-
I am will defo looking forward to that, think that would be ideal.
-
Sorry guys, I've been away.
Currently with the following lines of code brakes the search from searching the description.
Yes, I should've added descriptions to that line. Here's the fix.
Search::newInstance()->addConditions("(s_title LIKE '%". $pattern . "%' OR s_description LIKE '%". $pattern . "%')");
Just a reminder, that code forces "Like" results instead of the usual keyword results. I'll put in an option to allow you to choose which one to use.
-
hey syscode. thanks for the update. any info regarding the duplicates search results?
-
When I try searching, there isn't result. I checked the "search". I have item with Attribute and this is text. I have modern theme.
Have I change file too?
-
I find in the search widget and I can use, when I clicked Apply button. There isn't this options with index.php?page=search. Can I put here? So not only in category, this have is default option. Because I want using everywhere.
-
How can I creating more box?
Example
Car box
- color
- type
- etc.
People box
- male or female
- hight
- etc.
So I like creating more box with more "Heading". So have I write the in plugin example the new table and installed in new plugin folder? Or what can I doing?
-
I want to clarify Sydcode was paid to create this plugin.
I requested it be given back to the community but I do not expect him to maintain it.
If anyone needs help with another project I would strongly suggest hiring him, he does amazing work and you can verify through this plugin. I would ask if you hire him to be as generous as I (shameless plug) and share his work.
Thank you and Merry Christmas!
Been using your plugin. It is very nice and so are you for giving. I am not by any standrad a programer but if I ever have a few extra dollars I will thank you properly.
Tom
-
Im wondering wether the duplicates and sometime more than two problem of the search results can be fixed with select distinct ... is that possible? Im not familiar with php, ive tries and failed. any help from the author on this?
-
checkbox with "or" logical.
I want this:
The user check next values: green, red, blue.
After he see the green, red or blue color clothes. The all items where there is one color!
Can you help me?
-
Merry Christmas! :) Here is a little present from sharkey (http://forums.osclass.org/index.php?action=profile;u=11728) and myself.
Custom Attributes supports:
- Four input types (text, select, radio, and checkbox).
- Ability to make them required or searchable.
- Choice of alphabetical or custom ordering.
- Editing of inputs and values.
- Optional heading.
Todo:
- Move inline styles to stylesheets.
- Add category selector.
This is a beta version! Please don't expect it to be perfect.
We hope you find it useful, and we're looking forward to your comments.
Thank a lot for this wonderfull (beta) plugin !!! I've just installed and i'm trying to make it work like a charm ;D
1 - Which function should I use to display the value of a specific custom field ?
2 - Is there a solution to allow display of the custom fields without being forced to select a category ? (make field appears on pageLoad)
Some help would be really appreciated :-\ :-\
-
Overwhelming. And I don't even code.
There has got to be a better way.
-
@sharkey,
Whats overwhelming?
Jay
-
Overwhelming. And I don't even code.
There has got to be a better way.
A better way to do what ? 8)
@sharkey,
Whats overwhelming?
Jay
Regarding your profile and the modules you've developped or worked around, your skills on osclass coding seems to be really good.
Do you have any advices to help me solve my issues?
-
There's got to be a better way to triage. :)
Sorry I omitted the smiley face earlier.
To be clear I didn't code anything. That was Sydcode.
Obviously we want this plugin, Osclass, all plugins to be the best. But how do you professionals sort it all out as far as priority?
Maybe I said overwhelming because I want to address everyone's concerns but I lack the skill and Sydcode is graciously contributing more than I paid him for. If he addresses concerns beyond his initial todo list that's awesome but I don't want anybody expecting that of him. My plans were that he would release his code, with a fix if necessary, and then the experts here would take over any improvements.
I know he went above and beyond in the hopes that he'll be hired by others.
Anyways, this is my thought process, I don't speak for him.
P.S. When he added extras above the quote I kind of laughed saying I guess that can benefit someone. I truly failed to see all angles outside of my little bubble. For example I thought this could replace other attribute modules as is failing to account for little things like sub attributes.
-
@sharkey,
I understand what you are saying. I am planning to work on adding the sub attributes portion soon.
Jay
-
Hi imhave the Cars attributes installed at the moment and when I try to install the custom 1 I get this error...
xPlugin couldn't be installed because of: 1050 - Table 'oc_t_item_custom_attr_fields' already exists
Is it because I have the car attributes plugin installed?
Thank you
-
I only had that issue when re-installing or upgrading this plugin and I solved it by deleting the above from my table.
However, if they use the same name I would not suggest deleting that table.
-
any info regarding the duplicates search results?
Not much, I'm looking for a way to get distinct results.
Is it because I have the car attributes plugin installed?
That should still work. AFAIK, Custom Attributes is the only plugin using that table.
-
Thanks for both replies ill delete the plugin and the table and reinstall again thanks for you help
-
Thanks for your great plugin sydcode !
He is a very necessary
When approximately embed function ?
- Add category selector
Sorry for my english - google translate
-
Hi all, I would like to thank the creators of the plugin. It's great, I just needed help with translating words: Select Value - The choice of the options and then Required. Měloby to be like this:
Select Value: prosím vyberte
Required: Povinné
Thank you in advance for your help
-
Hello,
I commented a couple pages ago about how great this plugin is and how nice of the buyer to give us. Again, Thank you.
I do have a question. Does anyone have ideas on how to NOT show an attribute?
Example:
Say I have cars and boats on my site. I create attributes covering many aspects of both. How can I show just the car attributes for the car ads and no boat attributes. It seems such a simple question but this pea just can not come up with the answer...... I must be tired.. :-[
Right now even though the boat attribes are empty (no dat placed into) they still show on the car item.
Tom
-
@Tom,
The feature to show only certain fields for a category is not implemented yet.
Jay
-
Thanks for the response Jay.
Custom Attributes is a fine plugin for single catagory sites but that makes it quite limited. I use it on such a site but hope to move a site from Oscommerce to Osclass if I can get several features and plugins working. This second site has several catagories. if this plugin can be modified for that it woudl make individual catagory plugins un-needed.
Tom
Me tring to keep up with you is like a driving a golf cart along side a race car. Your just to faaasssst.
-
I agree with it being set so each custom field cannot be shown on its own section really limits the capabilities of this plugin.
Jay
I like this
"Me tring to keep up with you is like a driving a golf cart along side a race car. Your just to faaasssst."
Soon enough you will be upgraded from your golf cart to a race car. :)
-
Alright, first of all I would like to thank you for developping such a great plugin.
Though I've got an issue while trying to remove an item, I'm getting a message that the item couldn't be deleted. The item in question disappears from the frontend dashboard but in the website its ghost stays alive (we should exterminate it! ;D). Same with the the backend the ghost item stays there.
I think there should be a function to remove the item completly.
Thank you once again and hope to see a solution asap.
-
Hi WEBNET,
The solution to remove the ghost ad would be to install the Ghostbuster plugin. You will find the Ghsotbuster plugin forum topic in my signature below.
The reason you got the ghost ad in the beginning is the developer forgot to add the code that deletes the rows that are dependent on the item.
Jay
-
Hi WEBNET,
The solution to remove the ghost ad would be to install the Ghostbuster plugin. You will find the Ghsotbuster plugin forum topic in my signature below.
The reason you got the ghost ad in the beginning is the developer forgot to add the code that deletes the rows that are dependent on the item.
Jay
I just tried the plugin, still showing the ghost Ads and the flash message that the item couldn't be removed.
Any ideas or fix would be appreciated guys.
Thank you!
-
i did not understand how to use it
-
These additional attributes could be used when making a search to refine it?
-
You could open the DB and empty t_item and t_item_description and empty anyplace else ghost ad still shows. After that ghostbuter plugin will do it's job.
Tom
It was a fresh installation, though I had an item with custom attributes already on, but no ghost items.
Edit:
Cleared t_item and t_item_description after emptying the t_item_custom_attr_values table (it wont allow me to empty the first 2 tables without clearing t_item_custom_attr_values) added an new item then tried to delete it, still the same issue.
-
Ok guys, I've managed to do a little tweak in the plugin's index.php file and it's working by now.
Please note that I'm not an expert php developer but I'm trying my best ;)
Here's the process:
Go to /oc-content/plugins/custom_attributes and open index.php with your favourite text editor
Scroll down to about line 260, just after the code below:
/**
* Add stylesheet to admin header
* @return text
*/
function ca_admin_header() {
echo '<link href="' . osc_plugin_url(__FILE__) . 'css/admin_styles.css" rel="stylesheet" type="text/css">' . PHP_EOL;
}
Add the following code:
/**
* Add item removal to avoid ghost items
*/
function ca_delete_item($item) {
$conn = getConnection();
$conn->osc_dbExec("DELETE FROM %st_item_custom_attr_values WHERE fk_i_item_id = '" . $item . "'", DB_TABLE_PREFIX);
}
Then scroll down and just before the line that says // END add the following code:
// Hook for deleting items
osc_add_hook('delete_item', 'ca_delete_item');
Now you should be able to delete your items without leaving their ghosts.
NOTE: If the developer of this plugin or anyone has an optimization of this tweak please update it, would be greatly appreciated.
Cheers.
-
Very very good! Thanks you!
I think that was added to the plugin the ability to customize the fields for each category it will become the best plugin community.
In this way the plugin extension Such as: real estate jobs plugin or attribute will become useless.
Thanks you!
-
Very very good! Thanks you!
I think that was added to the plugin the ability to customize the fields for each category it will become the best plugin community.
In this way the plugin extension Such as: real estate jobs plugin or attribute will become useless.
Thanks you!
Not really, Custom Attributes plugin is good but the others will be always useful for specific duties. I was using the realestate attributes plugin, customized the big part of it, fixed many stuff, but got stuck at the search filters that never worked.
The best thing about Custom Atts is that you can make the fields searchable!
-
Very very good! Thanks you!
I think that was added to the plugin the ability to customize the fields for each category it will become the best plugin community.
In this way the plugin extension Such as: real estate jobs plugin or attribute will become useless.
Thanks you!
Agreed. Looking forward to that update. Right now I use a few plugins trying to accomplish that.
Tom
-
There's still a serious issue with this plugin (Custom Attributes)
There should be a function to keep the filled out fields in the session in case the item fails to post.
I tried to create it but I have no idea how to detect the custom fields all at ones.
Any expert would help with that?
-
Ok guys, I've managed to do a little tweak in the plugin's index.php file and it's working by now.
Please note that I'm not an expert php developer but I'm trying my best ;)
Here's the process:
Go to /oc-content/plugins/custom_attributes and open index.php with your favourite text editor
Scroll down to about line 260, just after the code below:
/**
* Add stylesheet to admin header
* @return text
*/
function ca_admin_header() {
echo '<link href="' . osc_plugin_url(__FILE__) . 'css/admin_styles.css" rel="stylesheet" type="text/css">' . PHP_EOL;
}
Add the following code:
/**
* Add item removal to avoid ghost items
*/
function ca_delete_item($item) {
$conn = getConnection();
$conn->osc_dbExec("DELETE FROM %st_item_custom_attr_values WHERE fk_i_item_id = '" . $item . "'", DB_TABLE_PREFIX);
}
Then scroll down and just before the line that says // END add the following code:
// Hook for deleting items
osc_add_hook('delete_item', 'ca_delete_item');
Now you should be able to delete your items without leaving their ghosts.
NOTE: If the developer of this plugin or anyone has an optimization of this tweak please update it, would be greatly appreciated.
Cheers.
Hi WEBNET,
That is the code that needed to be added to the plugin. I only have a small code improvement.
add this to the index.php file of the plugin.
/**
* Delete attribute values for the item when the item is deleted
* @return text
*/
function ca_delete($itemId){
Attributes::newInstance()->itemDeleteAttribute($itemId);
}
// run hook when item is deleted
osc_add_hook('delete_item','ca_delete');
Then in the Attribuest.php file add this code
/**
* Delete Attribute when item is deleted
* @param int $item_id
* @param int $field_id
* @return boolean
*/
public function itemDeleteAttribute($item_id) {
return $this->dao->delete($this->getTable_Attributes(), array('fk_i_item_id' => $item_id));
}
The only reason I say use this code is the following functions are depreciated.
$conn = getConnection();
$conn->osc_dbExec(
You can also download the updated plugin in this post
http://forums.osclass.org/plugins/%28new-plugin%29-custom-attributes/msg44091/#msg44091
Jay
-
There's still a serious issue with this plugin (Custom Attributes)
There should be a function to keep the filled out fields in the session in case the item fails to post.
I tried to create it but I have no idea how to detect the custom fields all at ones.
Any expert would help with that?
You are right it looks like that part of the code was forgotten about. I will look into what it would take to add that feature.
Jay
-
Hey trains thanks for the reply man, I really appreciate it.
I'll try your modification tomorrow and I'll let you know, though I'm sure it'll work just great. And I'll be waiting for your update about keeping the field on the form.
I was wondering if you can check my post here http://forums.osclass.org/general-help/country-regions-cities-are-not-stored-in-db/ and see if you can help me in anyway? I tried everything I could find here (forums and docs) and nothing helped.
Thank you once again!
-
Hi all,
I have made a few small modifications to the plugin.
I added the code that will delete the attributes when an item is deleted so it no longer creates ghost ads.
I also added the code to store the field values in the session when you add a new item.
edit: I forgot to mention that you do not need to reinstall the plugin. Just upload the files.
Jay
Attached is the zip.
-
Hi all,
I have made a few small modifications to the plugin.
I added the code that will delete the attributes when an item is deleted so it no longer creates ghost ads.
I also added the code to store the field values in the session when you add a new item.
edit: I forgot to mention that you do not need to reinstall the plugin. Just upload the files.
Jay
Attached is the zip.
Thank you trains, I've got a question for you.
Is the code responsible for storing the field values in the sesion reside in the index.php only?
Because I've made some other changes and didn't want to replace all the files, instead I just copied your code and put it into the plugin's index.php
The reason I'm asking this is that I'm losing the fields values when I try to add a new item.
Thank you!
-
Yep it is in the index.php file and there is like 3 lines added to item_edit.php
if( Session::newInstance()->_getForm($name) != '' ) {
$value = Session::newInstance()->_getForm($name);
}
This is the cod added to the item_edit.php around line 23
Jay
-
Yep it is in the index.php file and there is like 3 lines added to item_edit.php
if( Session::newInstance()->_getForm($name) != '' ) {
$value = Session::newInstance()->_getForm($name);
}
This is the cod added to the item_edit.php around line 23
Jay
Great, now it's working, thank you!
-
Hi, great plugin but I am having this issue that I would like to use it for different categories, as I guess that this is not developed to do that would it be possible to change the databse settings from struct.sql to use this plugin 2 times? as if it was a different plugin?
How can I do that, I tried changing the struct.sql tables name and the attributes.php table names, but I'm getting an error on line 34 of index.php.
Any suggestion.
Thank you
Luis
-
Thanks very much! :)
Attribute groups will be in the next release. They'll finally allow attributes to be assigned to categories. I would avoid creating clones of the plugin because it's a lot of work. The next release will be soon but I can't give a date yet. I have to finish the groups and then put it up on GitHub so Jay can add his changes.
-
Awesome, just ask for it if you need any help to make it go faster :D I'll be glad to help!
-
Will sub selects be put into next update?
Thanks
-
Attributes per groups on search would be my saviour !!
Thx a lot sydcode!!
-
Hi all,
I have made a few small modifications to the plugin.
I added the code that will delete the attributes when an item is deleted so it no longer creates ghost ads.
I also added the code to store the field values in the session when you add a new item.
edit: I forgot to mention that you do not need to reinstall the plugin. Just upload the files.
Jay
Attached is the zip.
Hai jay, could you update this plugin in front page of this topic. Some users don't go on 5th page of this topic to see your modified plugin.
-
Group editor is done, here's a pic. The heading text is optional and only appears on the listing, so groups can have the same heading but different names. Please let me know if you need more features added.
-
Group editor is done, here's a pic. The heading text is optional and only appears on the listing, so groups can have the same heading but different names. Please let me know if you need more features added.
Great news bro, thanks. Will test it once I get a chance.
Did you add the fixes trains made?
-
wicked pluging :D,
Now question is, Is there anyway of allowing people who post items to select multi option in the select attribute.
I.E
New attribute
Product 1
0 - 100
100 - 200
Select
So they can select up to 2 or 3 options so when people search one of them its not just limited to the one attribute but they will show on what ever they have multi selected?
-
I'm glad to see development moving forward here. :)
Do either of you (Sydcode and Trains) mind moving this over to to the main Github repo?
https://github.com/osclass/osclass-plugins
I ask for two reasons.
1) Upcoming forum change may cause attachments to be lost.
2) There are so many code changes on this thread I don't know what has or hasn't been implemented in the latest revision.
Thanks.
-
How do I post the data stored in one of these custom fields? For example, I have a custom field labeled authors with the value Smith stored in it. On the search results page I want to include the author inside the list view of a result, so I need to be able to call for that data to be able to post it. Right now I have no idea what to call as I don't know the name of the variable. (ex. s_author). I just need to be able to individually identify one of these custom attributes to be able to post it where I want to.
Thanks for any help I may get.
-
Hello, thanks for the great plugin.
I use Car attributes at the moment, but is there a way that i can still use this for the makes and models, (as ive made the list of all the cars already) and delete all the other attributes, but then use custom attributes for items like fuel type, vehicle type, number of seats etc?
Thanks.
-
Hi. Great plugin.
How to show the list of fields on the page (search_list)?
when i add
<?php osc_run_hook('item_detail', osc_item() ) ; ?>
shows only the top ad in the remaining empty
sorry for my english (google translate)
-
This group module you added is it to select in which categories you cant them to appear?
-
Group editor is done, here's a pic. The heading text is optional and only appears on the listing, so groups can have the same heading but different names. Please let me know if you need more features added.
When will this be updated?
-
Group editor is done, here's a pic. The heading text is optional and only appears on the listing, so groups can have the same heading but different names. Please let me know if you need more features added.
Where can I download the updated version?
-
Hello,
I asked a question about this plug in another subject.
So if someone has the answer, let me know!
Thank you all > link below
http://forums.osclass.org/plugins/question-about-the-plugin-custom-attributes-%28sydcode%29/
-
i my self cannot wait for the new update on this plugin :)
-
lol
It's true, it's a good job this plug-in.
By the way, do you know how to display the attributes created on the page-item add.php of our themes?
-
Hello Everybody,
I use this code <?php osc_run_hook('item_detail', osc_item() ) ; ?>
to show in search_list.php.
It show only items on the top.I want to show all item in the search_list.
I love all.
Thank so much!
-
I want to show some attribute search options "always" in the sidebar. I mean, they should show always with no need to select a category to show them up after clicking on the search button.
How can I do it?
-
Hi
Is there any way to associate each of the custom fields to a different category?
-
Hi
Is there any way to associate each of the custom fields to a different category?
According to the developer of the plugin, it is now possible to do with the new version, it's just I can't find it anywhere on this thread. He probably forgot to attach/submit the download link.
Cheers.
-
ive added a few attributes to my site, but when i go onto the search page, i can select the attributes but when i press apply, nothing happens?is this function not working?
thanks
-
Is this plugin still alive or is it dead like many others?
Don't get me wrong, I really appreciate the contribution of both developer and the sponsor, but since sydcode announced that he made a new version of the plugin where it's possible to assign attributes to categories I've been waiting for the ZIP and still can't find it anywhere.
Can we please have the latest version?
-
I thought the latest one was on the first page of this thread?
-
I thought the latest one was on the first page of this thread?
It doesn't seem to be the latest one, it has the same features of the first one I tried and no groups.
-
I do not think sydcode has released the updated plugin yet. I have not heard from him lately either so I am not sure what is going on.
Jay
-
I do not think sydcode has released the updated plugin yet. I have not heard from him lately either so I am not sure what is going on.
Jay
Probably he's just busy, but I would really appreciate the release because I've got a project depending on this plugin to finish it...
-
:'( still no update really could do with it....
-
I do not think sydcode has released the updated plugin yet. I have not heard from him lately either so I am not sure what is going on.
Jay
Probably he's just busy, but I would really appreciate the release because I've got a project depending on this plugin to finish it...
Well you can do as I did, you can combain all the different attributes plugins to kind of have something decent, then throug site as BETA, when custom attributes updates, you just incorporate it to the site, in that way you can start your project before and see the results.
Peace
-
Hello there,
i have found another bug in the Custom Attributes plugin: It ruins the Text search.
In the index.php in the search_conditions is an additional condition defined to search for s_title with a LIKE statement. But in the default conditions there is already a condition defined which searches the Title and Description with a MATCH AGAINST statement. Both combined have as result, that you only find whole words, and can not use *.
Please remove this code from index.php in the function ca_search_conditions:
if (!empty($params['sPattern'])) {
$pattern = trim($params['sPattern']);
Search::newInstance()->addConditions("s_title LIKE '%". $pattern . "%'");
}
Greetings,
zed
-
My project is going to go up in its v2.0 Beta anyway, since it's been already there for like 6 years now. The changes I want to apply are to make my users life easier, going to change from Joomla to osclass in order to expand the website from 4 cities to an entire state.
Previous results are fine that's why I need to expand it to improve.
My problem is that I've got 2 categories on this website and would like to different attributes on each one, that's why I need the custom attributes plugin (latest version) to implement the new features.
I do not think sydcode has released the updated plugin yet. I have not heard from him lately either so I am not sure what is going on.
Jay
Probably he's just busy, but I would really appreciate the release because I've got a project depending on this plugin to finish it...
Well you can do as I did, you can combain all the different attributes plugins to kind of have something decent, then throug site as BETA, when custom attributes updates, you just incorporate it to the site, in that way you can start your project before and see the results.
Peace
-
Is there anyway the user can search specific attributes, the ones ive added ive made required and searchable, but on my search page at the bottom is apply, so when i select some attributes and press apply nothing happens, is this a bug or can this be easily fixed?
Thanks
-
i found bug on this plugin, im using realestate theme.
and if i search on the main searchbar, it will result nothing.
but if i disable this plugin, my search bar work fantastic.
did anyone face the same problem like i did?
-
i found bug on this plugin, im using realestate theme.
and if i search on the main searchbar, it will result nothing.
but if i disable this plugin, my search bar work fantastic.
did anyone face the same problem like i did?
ive found similair issues with an edited version of car attributes, so i disabled it and just use custom attributes and now the search works fine.
-
When will the plug-in version, in which you can define the fields in the category?
-
Upgraded osclass and this doesnt work, the options dont appear in the ad. Someone else confirm this or is it just my site?
-
There is a new update on the front page.
This plugin is still in development so there are still lots of bugs.
Update simply by clicking on the cross button and uploading the file.
Don't uninstall or you will lose your existing fields and values.
Good luck :)
Jay, I'll put it up on my GitHub account tomorrow.
I'll try to work on the other bugs later this week.
-
Here is the latest update. I'll just repeat what I said on the front page.
This plugin is still in development so there are still lots of bugs.
Update simply by clicking on the cross button and uploading the file.
Don't uninstall or you will lose your existing fields and values.
Good luck :)
Jay, I'll put it up on my GitHub account tomorrow.
I'll try to work on the other bugs later this week.
Warning: Missing argument 2 for Attributes::insertGroup(), called in Z:\home\doska\www\oc-content\plugins\custom_attributes\conf_groups.php on line 12 and defined in Z:\home\doska\www\oc-content\plugins\custom_attributes\attributes.php on line 450
-
The plugin does not take the field in their categories
-
It works for me, but only downfall you have to make the attributes again to each group that is asgined to the category and delete the old attributes
-
Bug fixed oxotnik, thanks!
Yes rels, sorry about that. I didn't want to clutter up the attributes with group dropdowns. There may be import and export functions in a future release.
There is a new update on the front page.
-
It's cool :) loving this plug think it is among the best for this script......
-
Bug fixed oxotnik, thanks!
Yes rels, sorry about that. I didn't want to clutter up the attributes with group dropdowns. There may be import and export functions in a future release.
There is a new update on the front page.
And you had no idea of making nested fields? Acceptable as a plug-in car, the field model works on the choice of the field Mark
-
Bug fixed oxotnik, thanks!
Yes rels, sorry about that. I didn't want to clutter up the attributes with group dropdowns. There may be import and export functions in a future release.
There is a new update on the front page.
I can not get Edit Groups
-
Bug fixed oxotnik, thanks!
How to fix it?
Btw, you forgot to add the fixes Jay made to the first version.
-
dont work for me, i'm using osclass 3.1, i install it normally,ok , it appear in plugins list in admin area but i not appear in menu plugins, i cant add a custom attribute
-
UP
-
Fatal error: Call to undefined function osc_assets_url() in Z:\home\doska\www\oc-content\plugins\custom_attributes\conf_groups.php on line 53
-
Warning: Invalid argument supplied for foreach() in Z:\home\doska\www\oc-content\plugins\custom_attributes\index.php on line 302
Warning: Cannot modify header information - headers already sent by (output started at Z:\home\doska\www\oc-content\plugins\custom_attributes\index.php:302) in Z:\home\doska\www\oc-includes\osclass\core\BaseModel.php on line 72
-
Sorry that you are still having problems. Please check that you have latest version of Osclass (3.1), and the latest plugin (beta #3).
I think you do have the latest plugin, but the osc_assets_url function has been around since version 3.0
-
Warning: Invalid argument supplied for foreach() in Z:\home\dosk2\www\oc-content\plugins\custom_attributes\index.php on line 302
Warning: Cannot modify header information - headers already sent by (output started at Z:\home\dosk2\www\oc-includes\osclass\utils.php:1594) in Z:\home\dosk2\www\oc-includes\osclass\utils.php on line 1596
Installed version 3.1, issues such errors
-
Ok, think I've fixed that warning.
https://github.com/sydcode/custom_attributes/archive/master.zip
-
Ok, think I've fixed that warning.
https://github.com/sydcode/custom_attributes/archive/master.zip
Thanks plugin works fine until I found not bugs. I think the developer is still possible to introduce the possibility of a two-tier or three fields. Think at the expense of the plan
-
would it be possible to add a calender attribute for a future update?
-
Sure, that's a great idea. I'll try to get it ready next week.
-
Sure, that's a great idea. I'll try to get it ready next week.
I meant to make the field level could indicate an option. Let's say I have created a field office rent with option to rent option I connect another field with fields rent for a day, a month rent
-
Hello my friends!
New to osclass, working local with xampp right now. I would like to ask you how can i translate the Tick for "Yes" and Required that are shown in the entry form after i have added some checkboxes. I checked the plugin folder and there is no languages folder
-
Ok, that's fixed mate. Language template have just been added.
-
Sorry for the noob question - but am I missing something?
I installed the plugin by uploading the zip via the admin, I also tried just uploading the unzipped folder to the plugins folder, however either method does not present me with a new plugin item in the plugins area of the admin?
EDIT // Ok, turns out you have to rename the folder and remote the "-master" part from the end :)
Lesson learned.
-
foxocube: now works, thank you :)
-
Just read all the posts but see nobody reporting this...
I created a group
I created some custom attributes (all select type) and they work fine
If I add an attribute of text it appears to add fine too.
But if I go to the front end and try to place an advert, I get the following showing in the text box
Project-Id-Version: Custom AttributesPOT-Creation-Date: 2013-03-12 14:31+1000PO-Revision-Date: 2013-03-12 16:02+1000Last-Translator: Language-Team: MIME-Version: 1.0Content-Type: text/plain; charset=UTF-8Content-Transfer-Encoding: 8bitX-Generator: Poedit 1.5.5X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_eX-Poedit-Basepath: .X-Poedit-SearchPath-0: .
It appears that the value in the script is using <?php _e($value, PLUGIN_NAME); ?> so I suspect it is related to that?
-
Ah sorry, I'll fix that tonight.
Please use this SourceForge download. It doesn't have the "master" problem.
http://sourceforge.net/projects/custom-attrs/files/latest/download
-
Doesn't appear to have fixed it.
Will send a PM with example link. :)
-
2 questions:
1. why when I select checkbox I cannot add options?
2. Edit Values - what is that for? When I select attrib and hit Edit nothing happens
-
Thanks foxocube, it's fixed now. Thought I was doing the right thing by applying translate functions to variables, but it seems that gettext returns the entire PO header for empty strings. Weird, huh? ???
Sorry too everyone who downloaded it, please do so again.
ambrozy, there are no options for checkbox yet. "Edit Values" is for changing the values of an attribute. If nothing appears, no listings have values for that attribute.
-
sydcode: thx
more I'm playing with osclass more I want to know :)
Let say that I have a text attribute: square meters. Is it possible to change search filter, to be able to search using range (from X to X)? Can you give me an advice how to do this?
-
Thanks.
In situations where a field is NOT required and has NOT been filled in, then ideally it shouldn't show on the front end of the site / listings.
-
Thanks foxocube, it's fixed now. Thought I was doing the right thing by applying translate functions to variables, but it seems that gettext returns the entire PO header for empty strings. Weird, huh? ???
Sorry too everyone who downloaded it, please do so again.
ambrozy, there are no options for checkbox yet. "Edit Values" is for changing the values of an attribute. If nothing appears, no listings have values for that attribute.
Hey. When they are ready nested fields?
-
Also, are you using indexing on the database for the fields in order to avoid performance issues on larger sites / when there are lots of fields and listings? :)
-
The plugin is not working properly, plug in the search field on the created lists all existing in other categories of premium classifieds
-
any thoughts on the calender attribute?
-
I'm sorry if this has been answered - I didn't read through all 10 pages on this thread.
Is there a way to get the default search box to search through the custom fields? I'm trying to add a listing "keywords" custom field, and allow the search box to use it, but it doesn't appear to be working.
specific example: my title has "rowboat" in it - my search doesn't yield any results for "boat"
Any help would be greatly appreciated
-
I cant seem to find how to configure this plugin.
When I click on configure (either through side menu->Custom Attributes-->Configure OR manage plugins->Custom Attributes-->Configure) it takes me to a page where all I can select is the categories I want the attributes to appear in.
After Checking all boxes and applying, it just stays on this page.
Where can I add new attributes??
Thanks!
EDIT: My bad, it seems that if your side menu in admin is set to 'Compact', certain links are missing under the plugins configuration menu.
-
I also have problem with required fields... I have 4 required radios which i have set as required but at the "new item form" it doesnt bring any message that this fields are required. It only shows a message for email, title and description.
Im using 3.1 with bcute theme
George
-
I added a new group of attributes. When i try to save group changes, i get the following message : Notice: Undefined variable: group_options in /home/www/mysite/mydomain.com/www/oc-content/plugins/custom_attributes/conf_groups.php on line 49
-
Thanks geo78! I forgot to declare it, fixed now. Still looking for the radio bug.
-
I dont know if its also a bug but when i press on a parent category from main page and at the next page press the button "Apply" at the search sidebar (i do not change any filter), i get this message 8 times.
Notice: Undefined index: s_type in /home/www/mysite/www/oc-content/plugins/custom_attributes/attributes.php on line 318
Also I get some custom attribute groups that are not assigned in the parent category.
-
Thanks geo78! I forgot to declare it, fixed now. Still looking for the radio bug.
Привет, хотел спросить когда ты сделаешь для плагина вложенные поля?
-
This plugin isn't working with the new version of osclass (3.1.1). Any solutions???
I tried to upload the zip file through the Manage Plugins, but nothing showed up!
I checked the plugins folder, and the folder of custom attributes plugin is there, but not showing up under manage plugins page.
Any idea?
-
I have the same problem
Any fix?
Thanks
-
Thx for this great plug in.Beside text, can u help to add textarea?
the textarea is not meant for searching.
It is meant for easy order arrangements of text,textarea, etc.
By the way, how to add richtext editor to this plugin for text?
Thx 4 ur help in advanced.
-
Sorry for the delay guys! I assume you downloaded a ZIP from GitHub. Just remove the "-master" from the folder name. A warning has been added to the front page. Hope it works now! :)
Or you could try the SourceForge ZIP which doesn't have that problem.
http://sourceforge.net/projects/custom-attrs/files/latest/download
On that topic, anyone know how to stop GitHub adding "master"? Please let me know, it's very annoying.
Thanks Tristan! :) I'll get around to it one day soon, as well as adding a date field that was requested earlier. I'm very busy with other work right now so no idea when it'll be ready. I'll check out the richtext editor too. It's very simple to add on Wordpress, but I'm not sure what to do for OSClass.
-
Thanks man... it is working now...
Can you please also add the functionality to link 2 dropdowns, lke make->model, when we change make, the items in the model updates?
-
Hello,
i need make a search like this: from MIN to MAX
like a price but for sq m2
Is it possible with this plugin?
-
group page is empty! plz help i m using oslcass 3.0.1
-
Switch off adblock
-
Love the plug in!!! However, in Bender theme, under edit post, it does not bring over the values of fields created. It does in the Modern theme though. Any ideas on how to fix this?
Thanks,
Clint
-
How can i use search like MIN and MAX with this plugin?
Cars: km. Min - Max, year: Min - Max
Real Estate: rooms: Min - Max, Bathrooms: Min-Max, Year: Min-Max
-
This plugin is not supported? 2 months without updates and answers
-
Is there anyway I can change the code of custom attributes so that all the attributes I enter are displayed without the need of selecting and submitting a category?
I want them all to show up in sidebar in search.php inmediately when a user visits search.php and without submitting anything.
-
How can i use search like MIN and MAX with this plugin?
Cars: km. Min - Max, year: Min - Max
Real Estate: rooms: Min - Max, Bathrooms: Min-Max, Year: Min-Max
Hi,
I have the same question. Is there any way to implement searching using "BETWEEN" SQL keyword in WHERE?
I understand it might be a bit complicated but it's a basic feature for most of classifieds engines.
-
how can we show this atttributes in search page?
-
well, I've done the following:
I've introduced the field type "Range". The field of this type is rendered just as two text fields with the following naming: <fieldname>_min and <fieldname>_max. However currently the plugin CustomnerAttributes only supports searching by an exact single value.
So the rest is to pass both values to the search module in order to build a similar dynamic SQL that is currently used in OSCLASS for PriceMin/PriceMax.
I'm not a good PHP coder but it seems that the search module isn't flexible enough for dynamic SQL construction.
Does anyone has an idea how to use OSCLASS DAO to build dynamic SQL using BETWEEN or LESS THAN and GREATER THAN operators?
-
Has anyone replaced with success the car or real estate plugin with the Custom Attributes plugin ?
-
I am using the custom attributes plugin for real estate purposes. Now there are a couple of fields that I have made not required, so many users will leave out certain fields but when those fields are left out that field is still shown on listing page. I want those fields THAT ARE LEFT OUT to not display. Any ideas PLEASE??
-
What is going on with this plugin ?
In
conf_values.php
i see
<form method='post' action='http://localhost/osclass/oc-admin/index.php'>
and that is why doesn't work well ....
Needs to be
<form method='post' action='<?php echo osc_admin_base_url(true); ?>'>
-
I understand what you are saying. I am planning to work on adding the sub attributes portion soon.
Jay
Hi Jay, when you add this option this plugin will become a "must have it", I hope you can have it ready very soon, thank you very much.
Regards
José
-
How can i use search like MIN and MAX with this plugin?
Cars: km. Min - Max, year: Min - Max
Real Estate: rooms: Min - Max, Bathrooms: Min-Max, Year: Min-Max
Hi,
I have the same question. Is there any way to implement searching using "BETWEEN" SQL keyword in WHERE?
I understand it might be a bit complicated but it's a basic feature for most of classifieds engines.
Hi, i relly also need this feature! Min and max range! Likely text field min and max!
-
What about adding the possibility to add an image to every attribute? Or someone knows how to get that? :D
-
Hello,
its possible add icon.. but icon stay same on every attribute... like in search sidebar or item detail.. Just make some icon add css style after that add next to label < div class="icon"></div>
custom_atrributes/item_detail_fields.php find <td class='detail_label'><?php echo $label; ?></td> add some styles just play with it..
Jan
-
Hi All, i want to acces a atribute and i dont know the code...
If attribute"city" checked yes ......
how i can get information from one attribute ?
-
i made this code for custom fields
<?php while ( osc_has_latest_items()&&(osc_has_item_meta() == TRUE)&&(osc_item_meta_name() == 'Travel')&&(osc_item_meta_value()=='Yes') ) { ?>
but i need a exact code to call custom attributes from the plugin can enyone help me ?
how i call the plugin i got some fuctions but dont work i got to put some library or access like requaring a page ?
-
Hi Syscode
i using OsCLASS v 3.1.2 and
i got as following error appear
Fatal error: Call to a member function result() on a non-object in C:\xampp\htdocs\osclass_v312_2013\oc-content\plugins\custom_attributes_beta\attributes.php on line 254
public function getFields($group_id = null, $order_type = null) {
....bla....bla....
$results = $results->result(); // <------------ this is line 254
......bla..bla....
}
any idea to solved it?
thanks
-
How can i use search like MIN and MAX with this plugin?
Cars: km. Min - Max, year: Min - Max
Real Estate: rooms: Min - Max, Bathrooms: Min-Max, Year: Min-Max
Hi,
I have the same question. Is there any way to implement searching using "BETWEEN" SQL keyword in WHERE?
I understand it might be a bit complicated but it's a basic feature for most of classifieds engines.
Hi, i relly also need this feature! Min and max range! Likely text field min and max!
Hi, me and a friend of mine are working on this feature so that attributes can be added where it's optional to give a min and max range of values.
It already works, but we're still finetuning it a bit.
One question: How can we submit our updated version of this plugin to Github?
-
Hello, its great news!!..
I thing that we must sing up to ghitub and after that you can make some changes in plugin... but i dont have expirience with it...
https://github.com/osclass/osclass-plugins/ (https://github.com/osclass/osclass-plugins/)
Or you can attach the updated custom attributes in this forum...
Thanks for this feature very very usefull!!!
Jan
-
[Solved] Searching filter Font size problem of custom attribute + Bender theme
Hi all
There is searching filter Font size problem of custom attribute plugin using Bender purple Theme.
The font size become very small when using custom attribute plugin and Bender purple Theme.
However, when I use default modern theme, the font size of custom attribute plugin is ok.
Anyone has any idea to handle the font size problem of of custom attribute plugin using
Bender purple Theme?
Osclass version used: 3.1
Plugin used: custom attribute
Custom Attributes - allows you to add unlimited number of custom attributes. (3.0+)http://forums.osclass.org/plugins/%28new-plugin%29-custom-attributes/
Theme 1 tried= default modern theme= ok
Theme 2 tried= bender purple theme= problem
Regards,
Tristan
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Problem solved.
themes\bender_purple\css\main.css
Use www.cssbeautify.com to beautify the main.css to human readable format.
Original (line 1703):
#sidebar fieldset { padding: 14px 0 16px; border-bottom: solid 1px #eaeaea; font-size: 0.8125em; line-height: 0.8125em; }
Modified:
#sidebar fieldset { padding: 14px 0 16px; border-bottom: solid 1px #eaeaea; font-size: 1.1em; line-height: 0.8125em; }
Regards,
Tristan
-
Hi Everybody,
I installed custom attributes plugin on osclass 3.0.2 but group page doesn't work, it's empty
Please help me...!!!! I need it :'(
-
Hello, its great news!!..
I thing that we must sing up to ghitub and after that you can make some changes in plugin... but i dont have expirience with it...
https://github.com/osclass/osclass-plugins/ (https://github.com/osclass/osclass-plugins/)
Or you can attach the updated custom attributes in this forum...
Thanks for this feature very very usefull!!!
Jan
Ok I've attached the files here: http://forums.osclass.org/plugins/(new-plugin)-custom-attributes/?action=dlattach;attach=9264 (http://forums.osclass.org/plugins/(new-plugin)-custom-attributes/?action=dlattach;attach=9264)
It is now possible to give attributes a range and submit the step size for the slider.
If you use the Real Estate theme the searchbar is nicely designed, however this is not the case for all other themes (as it was the case with this plugin before). I designed the slidebar only for the real estate theme, for other theme's you possibly should adjust search_form_fields.php and the css a bit yourself.
To see which files were edited, see:
https://github.com/dienast/custom_attributes
If you report a bug please mentioned it, thanks!
-
Why don' we all write plugin that don't work
This is turning out to be a total waste of time
And I am handing this project over to my 9 year old son
Who will know what to do with it.
Hi Everybody,
I installed custom attributes plugin on osclass 3.0.2 but group page doesn't work, it's empty
Please help me...!!!! I need it :'(
-
He was paid???????????
He should be in a different job.
Like cleaning my toilet.
Totally pathetic this does not even work
I might as well get my 9 year old son to write plugins
I want to clarify Sydcode was paid to create this plugin.
I requested it be given back to the community but I do not expect him to maintain it.
If anyone needs help with another project I would strongly suggest hiring him, he does amazing work and you can verify through this plugin. I would ask if you hire him to be as generous as I (shameless plug) and share his work.
Thank you and Merry Christmas!
-
I agree.
Total waste of time as per usual
Hi sydcode,
I have just tried your plugin. It does seem to be working for the most part. The one part that is not working for me is searching by the attributes. It could be other plugins conflicting I will try on a fresh install once and see if that helps.
I also would think and import and export function would be very useful.
Jay
-
websiteireland >> Three posts and you still haven't explained the problem. As said before, this plugin is still in development (hence the beta tag). There will be bugs and it may not work for some users. Did you download from GitHub? If so, change the folder name to just "custom_attributes", or use the use SourceForge download. Are you seeing any error messages on pages? Are there error messages in server logs? If so, post them here.
I've fixed quite a few bugs in the next release which is out tomorrow. Thanks Aficionado and sirjones for posting bugs! :)
Hey dienast, nice work on the slider! Mine is more like the price range fields so it'd be great to have both. Can I use it? You may want to add a database update though, otherwise it'll only work on a new install. I tried upgrading and it didn't work so I wrote an update.
update2.sql
ALTER TABLE /*TABLE_PREFIX*/t_item_custom_attr_fields ADD COLUMN b_range BOOLEAN NULL AFTER s_options;
ALTER TABLE /*TABLE_PREFIX*/t_item_custom_attr_fields ADD COLUMN s_steps INT(10) UNSIGNED NULL AFTER s_options;
index.php
define('PLUGIN_NAME', 'custom_attributes');
define('DATABASE_VERSION', 2);
// Load database class
require 'attributes.php';
// Update database to latest version
$version = osc_get_preference('database_version', PLUGIN_NAME);
if (empty($version) || $version < DATABASE_VERSION) {
$table_exists = Attributes::newInstance()->tableExists_Fields();
if ($table_exists) {
if ($version == 1) {
Attributes::newInstance()->import('custom_attributes/update2.sql');
} else {
Attributes::newInstance()->import('custom_attributes/update.sql');
}
} else {
Attributes::newInstance()->import('custom_attributes/struct.sql');
}
osc_set_preference('database_version', DATABASE_VERSION, PLUGIN_NAME, 'INTEGER');
osc_reset_preferences();
}
-
Hey dienast, nice work on the slider! Mine is more like the price range fields so it'd be great to have both. Can I use it? You may want to add a database update though, otherwise it'll only work on a new install. I tried upgrading and it didn't work so I wrote an update.
Thanks Sydcode! What do you mean with 'mine is more like the price range fields' because I did not found that range functionality in your initial plugin :) And ofcourse you can use the slider range functionality!
Thanks for pointing out the missing database update code. I overlooked that part. I've updated the attachment and the github files.
-
Hi guys, the next update is finally here! How quick was that? ;D ::)
http://sourceforge.net/projects/custom-attrs/files/latest/download
- Added date field (jQuery datepicker) and textarea field.
- Added limits (min-max) option for text fields.
- Added support for Bender theme.
- Bug fixes, thanks Aficionado and sirjones!
- Fixed deprecated hooks (v3.2 ready)
- Many small improvements.
Remember! DO NOT uninstall the old plugin or your data will be lost. Just hit the plus button and upload the new plugin. I'll put in import/export functions ASAP.
dienast >> Thanks mate! I haven't put in your slider yet, maybe later this week, but I did add your b_range and s_steps columns to avoid problems. I also have a new one called b_search_limits, which I called b_range at first but you beat me to it. :o Yes, min-max wasn't there before, just added it to this update.
-
Thanks, well done, sydcode! I appreciate it.
Is there any way to add searching via limits for the date values? Or it's too complicated in OSCLASS given that it uses string DB fields?
-
Thanks Ultrasight! :) Yes I'll do that, won't be any trouble.
-
Hi Folks
Great plugin, thanks!
I have one issue though. The custom fields aren't appearing in the search form when I browser by location. Is this a known issue? Is there a way around it?
Thanks!
-
Thanks Ultrasight! :) Yes I'll do that, won't be any trouble.
sydcode, just wanted to note that you might consider extending by another great feature - multiple checkboxes allowing multi-choice and hereby will allow searching for a set of pre-defined combinations (- 1 bedroom,
- 2 bedrooms + 1 living room,
- 2 bedroom + 1 kitchen corner etc.).
That all would make it one of the most powerful plugins ever.
-
I'm physically incapable of writing the word "browse" without my fingers adding an R to the end... Anyway...
I managed to fix it myself with a small change to plugins/custom_attributes/index.php:
function ca_search_form($cat_id = null) {
if($cat_id === null) {
$cats = osc_get_categories();
$cat_id = yGetCatIds($cats);
}
foreach($cat_id as $id) {
if(osc_is_this_category(CA_PLUGIN_NAME, $id)) {
$groups = Attributes::newInstance()->getGroups($id);
$order_type = osc_get_preference('order_type');
$fields = Attributes::newInstance()->getFields(null, $order_type);
if(!empty($groups) || !empty($fields)) {
include 'search_form.php';
}
break;
}
}
}
function yGetCatIds($cat) {
$ids = array();
foreach ($cat as $cat) {
if (!empty($cat['categories'])) {
array_merge($ids, yGetCatIds($cat['categories']));
}
}
$ids[] = $cat['fk_i_category_id'];
return $ids;
}
Pretty sure that's not the most efficient way to get the category ids but it works.
-
Hi sydcode
Thanks for your effort in updating to version beta2.
There are some error for the textarea
1) Not able to key in "return space" so that user can key into next paragraph.
If richtext editor tinymce can render it, this problem should be able to solved.
2) The textarea only allow user to key in 250 characters. It will be good the user can key in more characters e.g. 30000 or can you show us which
part of the code need to be modified so that user can 30000 characters.
Regards,
Tristan
+++++++++++++++++++++
Re: [New Plugin] Custom Attributes
« Reply #186 on: June 16, 2013, 09:10:23 PM »
Quote
Hi guys, the next update is finally here! How quick was that?
http://sourceforge.net/projects/custom-attrs/files/latest/download
- Added date field (jQuery datepicker) and textarea field.
- Added limits (min-max) option for text fields.
- Added support for Bender theme.
- Bug fixes, thanks Aficionado and sirjones!
- Fixed deprecated hooks (v3.2 ready)
- Many small improvements.
Remember! DO NOT uninstall the old plugin or your data will be lost. Just hit the plus button and upload the new plugin. I'll put in import/export functions ASAP.
dienast >> Thanks mate! I haven't put in your slider yet, maybe later this week, but I did add your b_range and s_steps columns to avoid problems. I also have a new one called b_search_limits, which I called b_range at first but you beat me to it. Yes, min-max wasn't there before, just added it to this update.
« Last Edit: June 16, 2013, 09:20:09 PM by sydcode »
+++++++++++++++++++++
-
tristan >> yes, the textarea needs some work. I have a limit of 255 characters for values in the database. I didn't think that would be a problem because I didn't think about textarea until now. I'll try to fix it and the "return space" problem.
MrChimp >> thanks! good fix for an annoying problem.
Ultrasight >> good idea, I'll see if it can be done. Someone wanted chained dropdowns so I'll try to do that as well.
Thanks guys! :)
-
One bug:
If i add one attribute (Text-Search) and the second attribute (Text-NonSearch) i have a duplicate of the first attribute in sidebar.
-
Hi all
I'm using OS class version 3.1.2, bender theme and custom attribute plug in (version beta 2) to create custom field.
User can key in data in custom field and upload his/her ads.
However, when user want to edit his/her ads, his/her data in custom field disappear in bender theme but re-appear in modern theme.
It will be great if this custom attribute plugin can work for bender theme.
Regards,
Tristan
++++++++++++++++++++++++++++++++
Hi all
This problem has been solved.
Thanks for the solution provided by byteGator.
solution to Bender Theme bug to avoid attribute field value being reseted.
http://forums.osclass.org/themes/bender-theme-ajax-runhook-for-item_edit-goes-to-item_form/
[SOLVED] Bender Theme - car & realestate attribute plugin problem when edit item
« on: June 06, 2013, 03:29:38 PM »
Quote
Bender Theme - ajax runhook for item_edit goes to item_form
When we edit item, bender theme
call page=ajax, action=runhook, hook=item_form
it should be
call page=ajax, action=runhook, hook=item_edit
This cause problem in car attribute plugin and realestate attribute plugins
When we edit an item, all attribute field value are reseted.
Any suggestion on how to fix this?
-----------------------------------------------------
solution provided by byteGator
At item-post.php of bender theme folder
change Line 156
Code: [Select]
ItemForm::plugin_post_item();
to Line 156
Code: [Select]
if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?>
this is bender theme bug.
« Last Edit: June 06, 2013, 05:26:15 PM by byteGator »
-----------------------------------------------------
-
Hi all
Does anyone know how to add line break to each text field?
Current multiple text field is not reading friendly for long text custom field text.
Example (current):
custom field text 1:?????????????????????????????????????
custom field text 2:?????????????????????????????????????
custom field text 3:?????????????????????????????????????
custom field text 4:?????????????????????????????????????
Example (ideal case):
custom field text 1:?????????????????????????????????????
"line break= white return space"
custom field text 2:?????????????????????????????????????
"line break= white return space"
custom field text 3:?????????????????????????????????????
"line break= white return space"
custom field text 4:?????????????????????????????????????
Hi Sydcode
It will be great if we have a check box in the plugin to add "line break= white return space" to each field.
Regards,
Tristan
+++++++++++++++++++
solution as below:
Hi all
For your info, my objective is to create text space between custom field created using custom attribute plugin.
http://forums.osclass.org/plugins/(new-plugin)-custom-attributes/
I use Bender theme and Os class 3.1.2.
++++++++++++++++++++++++++++
Original text situation:
Name: ABC
Will you recommend
this person to others? No
Will you buy this
for your friend? No
Will you try this
at home? No
+++++++++++++++++++++++++
Solution:
By modifying the css as below, we can create text space between custom field created using custom attribute plugin.
Folder: oc-content\plugins\custom_attributes\css\front_styles.css
Line 18
#custom_attributes .detail_label {
width: 150px;
padding: 0 0 1em 0; /*add this to get text space Tristan*/
}
Modified text situation:
Name: ABC
Will you recommend
this person to others? No
Will you buy this
for your friend? No
Will you try this
at home? No
Regards,
Tristan
-
Why?
-
mestr >> thanks! I'll do a fix for that real soon.
tristan >> cool, thanks for the link.
-
sydcode - THANK YOU! :)
-
Fixed now! Sorry about that, it was a pretty dopey mistake. :o
Here's the fix if you want to avoid downloading it again.
search_form_fields.php (starting at line 4)
if (empty($field['b_search'])) {
continue;
}
$id = $field['pk_i_id'];
$label = $field['s_label'];
$type = $field['s_type'];
$search_limits = $field['b_search_limits'];
if ($search_limits) {
$name_min = 'min_field_' . $id;
$name_max = 'max_field_' . $id;
$class = 'row two_input';
$value_min = Params::getParam($name_min);
$value_max = Params::getParam($name_max);
} else {
$name = 'field_' . $id;
$class = 'row one_input';
$value = Params::getParam($name);
}
-
Thank you sydcode!
-
Hi, sydcode!
Just to note another bug - it's impossible to define a separated set of custom fields per Subcategory. It works with Categories though.
-
Hello! What i need to change for multilanguage support in this function?
function ca_radio_buttons($field_id, $name, $value = null, $required = null, $search = false) {
$options = Attributes::newInstance()->getOptions($field_id, $value);
if (empty($options)) return;
if (empty($required)) {
$class = '';
} else {
$class = ' class="required"';
}
$output = '';
if ($search) {
if ($value == null) {
$checked = " checked='checked'";
} else {
$checked = '';
}
$output .= "<div><label class='radio_button_label'>";
$output .= "<input class='radio_button' type='radio' name='" . $name . "'" . $class . " value=''" . $checked . " />";
$output .= __('Unknown', CA_PLUGIN_NAME) . "</label></div>" . PHP_EOL;
}
$options = explode(',', $options);
foreach ($options as $option) {
$option = trim($option);
if ($value != null && $option == $value) {
$checked = " checked='checked'";
} else {
$checked = '';
}
$output .= "<div><label class='radio_button_label'>";
$output .= "<input class='radio_button' type='radio' name='" . $name . "'" . $class . " value='" . $option . "'" . $checked . " />";
$output .= $option . "</label></div>" . PHP_EOL;
}
echo $output;
}
for example: in search_form_fields.php i changed <?php echo $label; ?> into <?php _e($label); ?> and now it is multilanguaged.!!! but now i have a problem with radio and select. Help me please!
-
OK, i have a fix:
for multilanguage change in index.php $output .= $option...... into $output .= __($option)..... line 265
-
I have one queston: how can i have one hidden attribute? For example "hidden comment" which is visible in member area only and not visible in frontend for visitors.
-
Thanks for this plugin, it is very helpful!!!
One question - when you list an item and fill out the custom attributes, if you then edit the product you need to fill out the custom attributes again as it doesn't save them!
If there a fix for this?
Thanks in advance...
-
Love the new updates, well done :D
Now could i ask is there anyway of having an update on making the text field clickable text and the dates clickable sending them to a masterpage, E.G
If a date for many listing are the same then when they click that date, it will take them to a master page ect showing all listings with same date. and maybe the same for custom text or drop down options.
This idea would be so cool if it happen :)
-
Im using the Bender theme and have created a custom field.
When I create a listing and enter something in the custom field it does not show up in the listing.
But If i edit the Listing and readd the info to the custom field it shows up.
Any idea how to fix this?
Also Does this only allow filtering by custom field or can the main Search box on the home page search these fields?
-
Customized attributes massing up with different groups!
For Example I have Created a personal attribute for Jobs and Created a model attribute for cars both attributes of Jobs & Cars are displaying in each other searches!
I mean to say that customized attributes created for first groups works fin but when you create 2nd group so the attributes of First group will be shown in 2nd group's customized search
-
When i post a listing and enter details into my custom fields they dont show up at all. Any idea?
If i edit the post i can add them again and it will work. But if i go to edit again it automatically deletes it again.
-
Hi Metratrox
Are you using bender theme?
If yes, see the solution below.
Re: [New Plugin] Custom Attributes
« Reply #195 on: June 22, 2013, 04:40:42 AM »
QuoteModifyRemove
Hi all
I'm using OS class version 3.1.2, bender theme and custom attribute plug in (version beta 2) to create custom field.
User can key in data in custom field and upload his/her ads.
However, when user want to edit his/her ads, his/her data in custom field disappear in bender theme but re-appear in modern theme.
It will be great if this custom attribute plugin can work for bender theme.
Regards,
Tristan
++++++++++++++++++++++++++++++++
Hi all
This problem has been solved.
Thanks for the solution provided by byteGator.
solution to Bender Theme bug to avoid attribute field value being reseted.
http://forums.osclass.org/themes/bender-theme-ajax-runhook-for-item_edit-goes-to-item_form/
[SOLVED] Bender Theme - car & realestate attribute plugin problem when edit item
« on: June 06, 2013, 03:29:38 PM »
Quote
Bender Theme - ajax runhook for item_edit goes to item_form
When we edit item, bender theme
call page=ajax, action=runhook, hook=item_form
it should be
call page=ajax, action=runhook, hook=item_edit
This cause problem in car attribute plugin and realestate attribute plugins
When we edit an item, all attribute field value are reseted.
Any suggestion on how to fix this?
-----------------------------------------------------
solution provided by byteGator
At item-post.php of bender theme folder
change Line 156
Code: [Select]
ItemForm::plugin_post_item();
to Line 156
Code: [Select]
if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?>
this is bender theme bug.
« Last Edit: June 06, 2013, 05:26:15 PM by byteGator »
-----------------------------------------------------
Modify message
« Last Edit: June 22, 2013, 12:00:41 PM by tristan »
When i post a listing and enter details into my custom fields they dont show up at all. Any idea?
If i edit the post i can add them again and it will work. But if i go to edit again it automatically deletes it again.
-
Hi Metratrox
Are you using bender theme?
If yes, see the solution below.
I tried that one.
I have changed my item_post.php to
<?php if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?>
But hasn't made a difference. I even cleared all cache and tried it.
-
Hi Metratrox
Try edit the code in line 64 and 164 as below.
Folder\oc-content\themes\bender_purple\item-post.php
Regards,
Tristan
Line 64:
<!---Tristan start--->
<?php if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?> <!--- Tristan end --->
<div class="control-group">
<label class="control-label" for="description[<?php echo osc_locale_code(); ?>]"><?php _e('Description', 'bender_purple'); ?></label>
<div class="controls">
<?php ItemForm::description_textarea('description',osc_locale_code(), osc_esc_html( bender_purple_item_description() )); ?>
</div>
</div>
++++++++++++++++++++++++++++
Line 164:
<!--- Tristan
<?php if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?> --->
<div class="control-group">
<?php if( osc_recaptcha_items_enabled() ) {?>
<div class="controls">
<?php osc_show_recaptcha(); ?>
+++++++++++++++++++++++++++++++++++++
Hi Metratrox
Are you using bender theme?
If yes, see the solution below.
I tried that one.
I have changed my item_post.php to
<?php if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?>
But hasn't made a difference. I even cleared all cache and tried it.
-
Hi Metratrox
Try edit the code in line 64 and 164 as below.
Folder\oc-content\themes\bender_purple\item-post.php
I made the changes. It still doesnt work. That appeared to only change the location of the boxes. I enter info into the boxes and submit the listing but nothing shows up in the actual post.
nlacyouth.com/galuptextbook
You can try it out if you'd like.
-
Hate to post so much but this is what my item_post.php file looks like.
<?php osc_current_web_theme_path('header.php') ; ?>
<?php ItemForm::location_javascript_new(); ?>
<?php if(osc_images_enabled_at_items()) ItemForm::photos_javascript(); ?>
<div class="form-container form-horizontal">
<div class="resp-wrapper">
<div class="header">
<h1><?php _e('Publish a listing', 'bender'); ?></h1>
</div>
<ul id="error_list"></ul>
<form name="item" action="<?php echo osc_base_url(true);?>" method="post" enctype="multipart/form-data" id="item-post">
<fieldset>
<input type="hidden" name="action" value="<?php echo $action; ?>" />
<input type="hidden" name="page" value="item" />
<?php if($edit){ ?>
<input type="hidden" name="id" value="<?php echo osc_item_id();?>" />
<input type="hidden" name="secret" value="<?php echo osc_item_secret();?>" />
<?php } ?>
<div style="font-size:2.2em;line-height:1em;font-weight:100;text-decoration:none;color:#fff;background-color:#35c3d9;padding-left:20px;padding-top:5px;padding-bottom:5px;"><?php _e('General Information', 'bender'); ?></div><br>
<div class="control-group">
<label class="control-label" for="select_1"><?php _e('Category', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::category_select(null, null, __('Select a category', 'bender')); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="title[<?php echo osc_locale_code(); ?>]"><?php _e('Title', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::title_input('title',osc_locale_code(), osc_esc_html( bender_item_title() )); ?>
</div>
</div>
<!---Tristan start--->
<?php if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?>
<!--- Tristan end --->
<div class="control-group">
<label class="control-label" for="description[<?php echo osc_locale_code(); ?>]"><?php _e('Description', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::description_textarea('description',osc_locale_code(), osc_esc_html( bender_item_description() )); ?>
</div>
</div>
<?php if( osc_price_enabled_at_items() ) { ?>
<div class="control-group">
<label class="control-label" for="price"><?php _e('Price', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::price_input_text(); ?>
<?php ItemForm::currency_select(); ?>
</div>
</div>
<?php } ?>
<?php if( osc_images_enabled_at_items() ) { ?>
<div class="box photos">
<div style="font-size:2.2em;line-height:1em;font-weight:100;text-decoration:none;color:#fff;background-color:#35c3d9;padding-left:20px;padding-top:5px;padding-bottom:5px;"><?php _e('Photos', 'bender'); ?></div><br>
<div class="control-group">
<label class="control-label" for="photos[]"><?php _e('Photos', 'bender'); ?></label>
<div class="controls">
<div id="photos">
<?php ItemForm::photos(); ?>
</div>
</div>
<div class="controls">
<a href="#" onclick="addNewPhoto(); return false;"><?php _e('Add new photo', 'bender'); ?></a>
</div>
<div align=center>Please take your photos in Landscape. Do not use Portrait.
<br><img src="http://nlacyouth.com/galluptextbook/Photo-Orientation.png" width="300px" height="130px"></div>
</div>
</div>
<br><br>
<?php } ?>
<div class="box location">
<div style="font-size:2.2em;line-height:1em;font-weight:100;text-decoration:none;color:#fff;background-color:#35c3d9;padding-left:20px;padding-top:5px;padding-bottom:5px;"><?php _e('Listing Location', 'bender'); ?></div><br>
<!--<div class="control-group">
<label class="control-label" for="country"><?php _e('Country', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::country_select(osc_get_countries(), osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="region"><?php _e('Region', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::region_text(osc_user()); ?>
</div>
</div>--!>
<div class="control-group">
<label class="control-label" for="city"><?php _e('City', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::city_text(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="cityArea"><?php _e('City Area', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::city_area_text(osc_user()); ?>
</div>
</div>
<!--<div class="control-group">
<label class="control-label" for="address"><?php _e('Address', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::address_text(osc_user()); ?>
</div>
</div>--!>
</div>
<!-- seller info -->
<?php if(!osc_is_web_user_logged_in() ) { ?>
<div class="box seller_info">
<h2><?php _e("Seller's information", 'bender'); ?></h2>
<div class="control-group">
<label class="control-label" for="contactName"><?php _e('Name', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::contact_name_text(); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="contactEmail"><?php _e('E-mail', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::contact_email_text(); ?>
</div>
</div>
<div class="control-group">
<div class="controls checkbox">
<?php ItemForm::show_email_checkbox(); ?> <label for="showEmail"><?php _e('Show e-mail on the listing page', 'bender'); ?></label>
</div>
</div>
</div>
<?php }; ?>
<!--- Tristan
<?php if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?> --->
<div class="control-group">
<?php if( osc_recaptcha_items_enabled() ) {?>
<div class="controls">
<?php osc_show_recaptcha(); ?>
</div>
<?php }?>
<div class="controls">
<button type="submit" class="ui-button ui-button-middle ui-button-main"><?php if($edit) { _e("Update", 'bender'); } else { _e("Publish", 'bender'); } ?></button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
<div id="useful_info" class="bordered-box">
<h2><?php _e('After Pressing Publish', 'bender'); ?></h2>
<ul>
<li><?php _e('Please be patient. Submitting Large and/or multiple images can take time.', 'bender'); ?></li>
<li><?php _e('You will be taken to Paypal to pay for the Publishing Fee.', 'bender'); ?></li>
<li><?php _e('Make sure you follow through completely or your post will not be published.', 'bender'); ?></li>
<li><?php _e('Listings expire after 30 Days. After item expires you will need republish your listing for a fee.', 'bender'); ?></li>
</ul>
</div>
<script type="text/javascript">
<?php if(osc_locale_thousands_sep()!='' || osc_locale_dec_point() != '') { ?>
$().ready(function(){
$("#price").blur(function(event) {
var price = $("#price").prop("value");
<?php if(osc_locale_thousands_sep()!='') { ?>
while(price.indexOf('<?php echo osc_esc_js(osc_locale_thousands_sep()); ?>')!=-1) {
price = price.replace('<?php echo osc_esc_js(osc_locale_thousands_sep()); ?>', '');
}
<?php }; ?>
<?php if(osc_locale_dec_point()!='') { ?>
var tmp = price.split('<?php echo osc_esc_js(osc_locale_dec_point())?>');
if(tmp.length>2) {
price = tmp[0]+'<?php echo osc_esc_js(osc_locale_dec_point())?>'+tmp[1];
}
<?php }; ?>
$("#price").prop("value", price);
});
});
<?php }; ?>
</script>
<?php osc_current_web_theme_path('footer.php'); ?>
-
Hello when i go to "edit groups" it shows me an error on top : Warning: Invalid argument supplied for foreach() in /home1/*****************oc-content/plugins/custom_attributes/conf_groups.php on line 47
I create a group but it doesn't show
-
Hi metatrox
Strange. My local server work well.
I only change the code for item_post.php per my previous post.
I use custom attribute plugin Version 17june2013 and osclass version 3.1.2.
You might want to try using default modern theme to see whether you can have the same problem.
I am not a coder. Can't help much.
Hope other forum member can help you.
Regards,
Tristan
Hate to post so much but this is what my item_post.php file looks like.
<?php osc_current_web_theme_path('header.php') ; ?>
<?php ItemForm::location_javascript_new(); ?>
<?php if(osc_images_enabled_at_items()) ItemForm::photos_javascript(); ?>
<div class="form-container form-horizontal">
<div class="resp-wrapper">
<div class="header">
<h1><?php _e('Publish a listing', 'bender'); ?></h1>
</div>
<ul id="error_list"></ul>
<form name="item" action="<?php echo osc_base_url(true);?>" method="post" enctype="multipart/form-data" id="item-post">
<fieldset>
<input type="hidden" name="action" value="<?php echo $action; ?>" />
<input type="hidden" name="page" value="item" />
<?php if($edit){ ?>
<input type="hidden" name="id" value="<?php echo osc_item_id();?>" />
<input type="hidden" name="secret" value="<?php echo osc_item_secret();?>" />
<?php } ?>
<div style="font-size:2.2em;line-height:1em;font-weight:100;text-decoration:none;color:#fff;background-color:#35c3d9;padding-left:20px;padding-top:5px;padding-bottom:5px;"><?php _e('General Information', 'bender'); ?></div><br>
<div class="control-group">
<label class="control-label" for="select_1"><?php _e('Category', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::category_select(null, null, __('Select a category', 'bender')); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="title[<?php echo osc_locale_code(); ?>]"><?php _e('Title', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::title_input('title',osc_locale_code(), osc_esc_html( bender_item_title() )); ?>
</div>
</div>
<!---Tristan start--->
<?php if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?>
<!--- Tristan end --->
<div class="control-group">
<label class="control-label" for="description[<?php echo osc_locale_code(); ?>]"><?php _e('Description', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::description_textarea('description',osc_locale_code(), osc_esc_html( bender_item_description() )); ?>
</div>
</div>
<?php if( osc_price_enabled_at_items() ) { ?>
<div class="control-group">
<label class="control-label" for="price"><?php _e('Price', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::price_input_text(); ?>
<?php ItemForm::currency_select(); ?>
</div>
</div>
<?php } ?>
<?php if( osc_images_enabled_at_items() ) { ?>
<div class="box photos">
<div style="font-size:2.2em;line-height:1em;font-weight:100;text-decoration:none;color:#fff;background-color:#35c3d9;padding-left:20px;padding-top:5px;padding-bottom:5px;"><?php _e('Photos', 'bender'); ?></div><br>
<div class="control-group">
<label class="control-label" for="photos[]"><?php _e('Photos', 'bender'); ?></label>
<div class="controls">
<div id="photos">
<?php ItemForm::photos(); ?>
</div>
</div>
<div class="controls">
<a href="#" onclick="addNewPhoto(); return false;"><?php _e('Add new photo', 'bender'); ?></a>
</div>
<div align=center>Please take your photos in Landscape. Do not use Portrait.
<br><img src="http://nlacyouth.com/galluptextbook/Photo-Orientation.png" width="300px" height="130px"></div>
</div>
</div>
<br><br>
<?php } ?>
<div class="box location">
<div style="font-size:2.2em;line-height:1em;font-weight:100;text-decoration:none;color:#fff;background-color:#35c3d9;padding-left:20px;padding-top:5px;padding-bottom:5px;"><?php _e('Listing Location', 'bender'); ?></div><br>
<!--<div class="control-group">
<label class="control-label" for="country"><?php _e('Country', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::country_select(osc_get_countries(), osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="region"><?php _e('Region', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::region_text(osc_user()); ?>
</div>
</div>--!>
<div class="control-group">
<label class="control-label" for="city"><?php _e('City', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::city_text(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="cityArea"><?php _e('City Area', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::city_area_text(osc_user()); ?>
</div>
</div>
<!--<div class="control-group">
<label class="control-label" for="address"><?php _e('Address', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::address_text(osc_user()); ?>
</div>
</div>--!>
</div>
<!-- seller info -->
<?php if(!osc_is_web_user_logged_in() ) { ?>
<div class="box seller_info">
<h2><?php _e("Seller's information", 'bender'); ?></h2>
<div class="control-group">
<label class="control-label" for="contactName"><?php _e('Name', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::contact_name_text(); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="contactEmail"><?php _e('E-mail', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::contact_email_text(); ?>
</div>
</div>
<div class="control-group">
<div class="controls checkbox">
<?php ItemForm::show_email_checkbox(); ?> <label for="showEmail"><?php _e('Show e-mail on the listing page', 'bender'); ?></label>
</div>
</div>
</div>
<?php }; ?>
<!--- Tristan
<?php if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
} ?> --->
<div class="control-group">
<?php if( osc_recaptcha_items_enabled() ) {?>
<div class="controls">
<?php osc_show_recaptcha(); ?>
</div>
<?php }?>
<div class="controls">
<button type="submit" class="ui-button ui-button-middle ui-button-main"><?php if($edit) { _e("Update", 'bender'); } else { _e("Publish", 'bender'); } ?></button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
<div id="useful_info" class="bordered-box">
<h2><?php _e('After Pressing Publish', 'bender'); ?></h2>
<ul>
<li><?php _e('Please be patient. Submitting Large and/or multiple images can take time.', 'bender'); ?></li>
<li><?php _e('You will be taken to Paypal to pay for the Publishing Fee.', 'bender'); ?></li>
<li><?php _e('Make sure you follow through completely or your post will not be published.', 'bender'); ?></li>
<li><?php _e('Listings expire after 30 Days. After item expires you will need republish your listing for a fee.', 'bender'); ?></li>
</ul>
</div>
<script type="text/javascript">
<?php if(osc_locale_thousands_sep()!='' || osc_locale_dec_point() != '') { ?>
$().ready(function(){
$("#price").blur(function(event) {
var price = $("#price").prop("value");
<?php if(osc_locale_thousands_sep()!='') { ?>
while(price.indexOf('<?php echo osc_esc_js(osc_locale_thousands_sep()); ?>')!=-1) {
price = price.replace('<?php echo osc_esc_js(osc_locale_thousands_sep()); ?>', '');
}
<?php }; ?>
<?php if(osc_locale_dec_point()!='') { ?>
var tmp = price.split('<?php echo osc_esc_js(osc_locale_dec_point())?>');
if(tmp.length>2) {
price = tmp[0]+'<?php echo osc_esc_js(osc_locale_dec_point())?>'+tmp[1];
}
<?php }; ?>
$("#price").prop("value", price);
});
});
<?php }; ?>
</script>
<?php osc_current_web_theme_path('footer.php'); ?>
-
Hola, para empezar quiero felicitar a los creadores de este Plugin tan bueno y útil.
Querría pedirles que por favor me ayudasen. Necesito que la información de los campos personalizados que sale en la página donde se muestra toda la información del anuncio (item.php) saliese también, en el listado donde se ven todos los anuncios (search_list.php).
He mirado en item.php a ver si encontraba el código que hace que se vean estos datos pero no lo he encontrado. Me aparece el que usa osclass para los campos personalizados.
<div id="custom_fields">
<?php if( osc_count_item_meta() >= 1 ) { ?>
<br />
<div class="meta_list">
<?php while ( osc_has_item_meta() ) { ?>
<?php if(osc_item_meta_value()!='') { ?>
<div class="meta">
<strong><?php echo osc_item_meta_name(); ?>:</strong> <?php echo osc_item_meta_value(); ?>
</div>
<?php } ?>
<?php } ?>
</div>
<?php } ?>
</div>
Pero yo quiero el que usa este Plugin, ya que necesito que los atributos personalizados aparezcan también en la búsqueda. Yo de php y bases de datos de momento entiendo muy poco, así que no tengo ni idea de cómo podría hacer funcionar lo que quiero. Por cierto uso el tema twitter.
Saludos y gracias por adelantado.
P.D.: El mensaje lo he pasado por el traductor de google, así que no sé yo si se leerá bien.
Hi, to start with I want to congratulate the creators of this plugin as good and useful.
I would like to ask you to please help me. I need the custom field information that appears in the page shows all listing information (item.php) also come out in the list where you see all the ads (search_list.php).
I've looked to see if there item.php code that makes them look this information but I have not found. I appears OSClass for using custom fields.
<div id="custom_fields">
<?php if( osc_count_item_meta() >= 1 ) { ?>
<br />
<div class="meta_list">
<?php while ( osc_has_item_meta() ) { ?>
<?php if(osc_item_meta_value()!='') { ?>
<div class="meta">
<strong><?php echo osc_item_meta_name(); ?>:</strong> <?php echo osc_item_meta_value(); ?>
</div>
<?php } ?>
<?php } ?>
</div>
<?php } ?>
</div>
But I want one that uses this plugin, and I need custom attributes also appear in the search. I php and databases currently understand very little, so I have no idea how I could run what I want. Incidentally use twitter theme.
Greetings and thanks in advance.
The message I have gone through the google translator, so I do not know if you read well.
-
How to add custom field (drop-down) in search bar in home page or in header....
-
How to add custom field (drop-down) in search bar in home page or in header....
Go to listings--> Custom fields make a new custom field select as dropdown then go to Advanced options and select "Tick to allow searches by this field"
This is not a plugin, it is inside osclass 3.2
-
Go to listings--> Custom fields make a new custom field select as dropdown then go to Advanced options and select "Tick to allow searches by this field"
This is not a plugin, it is inside osclass 3.2
Hi alexgr,
I did that...But it is visible in search page filters....
I want it in the home page in the header....
Can you help???
-
what theme are you using?
-
Bender theme.... My Website link : property.joiningdotts.com
If it is possible in any other theme also i am ready to switch to another theme...
-
install realestate plugin then its easier
-
Hi,
If you are talking about realestate attributes plugin...then i have already installed it...but its working...
Can you plz tell in more details....plz.....
-
Dear sydcode!
Did not get to show CONCRETE attributes on the search page (NOT ALL)! Can the next update to make this feature?? Very, Very need it!
Thank you!
-
* Important *
After days of research trying to figure out what is going on, I finally discovered that this plugin is, unfortunatelly, the guilty party. Each day I work on osc320 and keep log of changes in case of something goes wrong. Offcourse, you can't test-proof everything all the time, so time is needed to spot a particular issue and try to resolve it.
Custom attributes plugin interferes with the wildcard * search functionality somehow. When I disable it, I get results, but if I enable it, no matter what I search for with wildcard symbol, I always get no results at all. Search only works for exact words (well, you could say - search at least - works).
Can you please check this behaviour and try to cure the problem? This plugin is so great/must have and replaces many features requested! But, wildcard is important, too!
Thanks
dev101
-
Hi all,
I have problem with modern theme. When I want put date to the post as user so I can't see datepicker. When I'm in admin dashboard I can see datepicker. Where can be a problem? In blender theme it works ok.
Thanks
Bredis
-
http://forums.osclass.org/general-help/adding-a-phone-number-ads/
That's it solution?
How can I do it? I do not understand fully the... Thanks
-
* Important *
After days of research trying to figure out what is going on, I finally discovered that this plugin is, unfortunatelly, the guilty party. Each day I work on osc320 and keep log of changes in case of something goes wrong. Offcourse, you can't test-proof everything all the time, so time is needed to spot a particular issue and try to resolve it.
Custom attributes plugin interferes with the wildcard * search functionality somehow. When I disable it, I get results, but if I enable it, no matter what I search for with wildcard symbol, I always get no results at all. Search only works for exact words (well, you could say - search at least - works).
Can you please check this behaviour and try to cure the problem? This plugin is so great/must have and replaces many features requested! But, wildcard is important, too!
Thanks
dev101
Now, after several weeks of testing, I can finally say that this plugin seriously interferes with the search engine capability of Osclass 3.2.x (not claiming for older versions). Bender theme appears to be *slightly* more resistive to unpredictability of the search in comparison to older themes like Modern, but this plugin is the definitive cause of all my troubles with the search, which dissapear the moment I disable this plugin. Even Bender theme is not immune to this bug, and renders Osclass search function pretty much unreliable.
You can perform the tests on your own, I simply don't beleive I am the only one that noticed this extremely important issue. Originally, I thought that the Modern theme had a bug and here is the quote from my latest forum topic posted (and then removed) from Themes forum, falsely beleiving that the issue was with the Modern theme, but it is not:
(note: this post was deleted, since I falsely thought that the theme was the issue)
Hello everyone,
Bender theme is better in one aspect over Modern theme: search behaviour. I have invested too much time in customizing the Modern theme with Osclass 3.2.0/3.2.1 (and it is still far from finished) and frankly, I like it more then Bender, to even begin with mods.
However, I have done a mysql mod to allow search for small words in length of 2 characters, and I have noticed an issue with Modern theme regarding search words that are 2 and 3 characters in length, which does not exist if I switch to Bender (all other things, like plugins) left unchanged. This also holds true if I use the unmodified ('stock') Modern theme, as well with my own modified version (which is expected, as most of the mods are with style, few features/mods are within php files that should not affect search in any way).
Real-world example: suppose you have this phrase in your listing description or title: xg li tg se bfg (just a bunch of random words to test mysql mod). Now, in modern theme search will work (e.g. return results) for xg and se, but no results for tg, bfg and li. No rational explanation can be given why some words work, others don't (except for stop words theory, since I use en_US version).
If I go back to admin dashboard and switch to Bender theme, everything will work just fine - which means - all those words will be discovered by search. en_US theory drops into water from here.
I am not sure why this happens, but this is an obvious bug in Modern theme. Does anyone have an idea how to easily replace 'search engine' embeded in Bender theme and put it into Modern theme? Obviously it will have to do with search.php in Bender, but the problem could be the fact that in Modern theme search.php and search-list.php (as well search-gallery.php) are separate files, and the code is pretty different.
This affects many users of the Modern theme.
thanks
dev101
After reverting to my original suspicions about CA plugin, and investigating the problem in more depth (latest test performed after quoted message above with longer words), I can for sure say that this plugin interferes with the search of some words (regardless of the theme you choose/use, and the words can be normal length (6-10 characters with just plain latin set)) in the very unpredictable way e.g. no results in search, when the ad clearly exist with such a word in the title and/or description.
Just create Lorem ipsum (http://lorem-ipsum.perbang.dk/) ad and test various words from it for yourself. Chances are you won't be able to find every word! Now, if you disable the Custom Attributes plugin, go back and check again, your search will find those ads just fine!
This is a serious bug that prevents me from any further use of this otherwise great plugin. It is a fact that it was released almost a year ago, with some updates afterwards, and chances are it won't be updated from the official beta state without further funding from us members. The Osclass core has been changed in the meanwhile, probably affecting the compatibility.
Anyone else noticed this? Osclass 3.2.x version both with bender, modern and other themes tested.
dev101
-
Yes, search is a little different. This plugin was paid for by a client who wanted a specific search function, and who kindly allowed me to release the plugin. It was never intended as a replacement for Osclass custom attributes.
<profile removed> I don't do Osclass work anymore, just for this plugin.
-
Hi sydcode!
Thank you for comming back to respond! It was a harder way to discover the difference in the search algo. If several memebrs could join in to fund this projects, it would be great (currently I cannot afford whole amount by myself). This is a great plugin that replaces so many things and makes them simpler to customize, also dropdown menu has an advantage over built-in feature in Osclass in that it is much easier to customize (remove 'Select value' line for example, and does not pre-selects optional values by default (http://forums.osclass.org/3-2-x/custom-fields-dropdown-menu-how-to-turn-off-default-value-selection/msg69047/#msg69047) are just a quick examples that comes to my mind).
I wish you best of luck in your further work!
dev101
-
Thank you dev101, I'll do something about it soon. There are often times when I don't win any jobs so I can do it then.
-
Hi sydcode,
I am really greatfull for your willingness to help in this matter! I am really sorry the current situation is such, I have checked your page at freelancer and you have some real great work over there! Just don't feel any pressure/obligation here and take your time! ;-)
thanks
dev101
-
Hi, First congratulations for the excellent plugin. I Would like to know if there is a php function to use in our templates so as to display the custom attributes.
Thanks a lot in advance.
-
Thanks musta! Yes, but only in the item template (item.php). I'll try to add one that works anywhere.
<?php ca_item_detail(); ?>
-
Hi Syd..
your plugin is really marvelous, but not working on my 3.0.1 .
can you guide, how to make it working.
Enjoy Blessings,
aks
-
Hi Sydcode,
I used your plugin "custom attributes". Its a great plugin. However I came across a mapping issue. Attribute specific to a sub-category appears for another sub-category.
For example: Attribute "Animal Type" appears for Animals(expected) and Mobile Phones(not expected) also.
For example: Attribute "Used/New" appears for Mobile Phones(expected) and Animals(not expected)
Let me explain with an example:
In my site www.indyasearch.com
I have a category => For Sale
Lets consider just 2 sub-categories in it => 1. Cell Phones - Accessories & 2. Animals
Using the custom attributes plugin
Step 1: Create 2 groups
GRP_Cell Phones - Accessories
GRP_Animals
Step 2: Create attributes for each group
Under => GRP_Cell Phones - Accessories
Ad Type
Brand Name
No. of SIMS
Operating System
Posted By
Price Range
Used/New
Under => GRP_Animals
Price Range
Animal Type
When I see in the final results I see the "Used/New" and "Animal Type" attributes of GRP_Cell Phones - Accessories and GRP_Animals are appearing for both sub-categories Cell Phones - Accessories and Animals.
Please help.
Thanks
Projgiant
-
Hi, I am using the customn attribute with the Bender themes and I have the following question: Is there a way to display only the attributes group related to a specific category while selecting it?
Thanks a lot in advance!!
-
Hi Sydcode,
Please reply to my query...
Thanks
Pj
-
Hi
I tried to install the plugin on Osclass last version and I got the following error :
Fatal error: Uncaught exception 'Exception' with message '1074 - Column length too big for column 's_options' (max = 21845); use BLOB or TEXT instead' in ./oc-content/plugins/custom_attributes/attributes.php on line 771 Exception: 1074 - Column length too big for column 's_options' (max = 21845); use BLOB or TEXT instead in ./oc-content/plugins/custom_attributes/attributes.php on line 771 Call Stack: 0.0004 722216 1. {main}() ./oc-admin/index.php:0 0.1347 21048752 2. CAdminPlugins->doModel() ./oc-admin/index.php:84 0.1377 21224272 3. include('./oc-content/plugins/custom_attributes/index.php') /ooc-admin/plugins.php:234 0.1390 21556736 4. Attributes->updateDatabase() ./oc-content/plugins/custom_attributes/index.php:30 0.1395 21559840 5. Attributes->import() ./oc-content/plugins/custom_attributes/attributes.php:58
-
+1. Same fatal error. Upload was fine then on install same error message.
-
This plugin is really great. However I am facing an issue. Any attribute meant to appear for Category A, appears for Category B also. This is annoying for example when I create an attribute "No. of SIMs" for a category "Mobile" gets shown under category "Pets" also which is not logically accepted.
Can anyone help to fix this issue? I am not a developer, I need some assistance here.
Thanks
Praveen K
-
you can select which category the attribute belongs to in the admin area
-
Thanks for the response.
I have set all that but still when I see in the website unrelated attributes appear in category they should not. Please see here http://indyasearch.com/for-sale/cell-phones-accessories
-
Hi sydcode!
Thank you for comming back to respond! It was a harder way to discover the difference in the search algo. If several memebrs could join in to fund this projects, it would be great (currently I cannot afford whole amount by myself). This is a great plugin that replaces so many things and makes them simpler to customize, also dropdown menu has an advantage over built-in feature in Osclass in that it is much easier to customize (remove 'Select value' line for example, and does not pre-selects optional values by default (http://forums.osclass.org/3-2-x/custom-fields-dropdown-menu-how-to-turn-off-default-value-selection/msg69047/#msg69047) are just a quick examples that comes to my mind).
I wish you best of luck in your further work!
dev101
dev101 pm me with the amount that is needed to complete this project and I'll help out with some of the costs. I am no coder but appreciate the great work that you all do and have no problem helping in another way. sydcode thanks for continuing to help pro bono until we can get this sorted out.
-
I'll help with cash if you can add an document/image upload as a selection. only .pdf .jpg .gif .png - pdf is important.
-
This plugin is really great. However I am facing an issue. Any attribute meant to appear for Category A, appears for Category B also. This is annoying for example when I create an attribute "No. of SIMs" for a category "Mobile" gets shown under category "Pets" also which is not logically accepted.
Can anyone help to fix this issue? I am not a developer, I need some assistance here.
Thanks
Praveen K
You are problably using the plugin downloaded from sourceforge. I have dowloaded this plug several times and the same issues you have I have had them. _Then I realise that it is was a beta version, and the date uploaded confirmed that it was very old version found on sourceforge.
You should try the Github version, called : custom_attributes-master.zip that is the version you should use. it Works fine and no bugs.
Remember to rename the your plugin to custom_attributes.zip, otherwise you will not be able to install it.
:)
-
you can select which category the attribute belongs to in the admin area
Hi Design/Sydcode;
You have created a greate plugin. I would like to ask wether you can add new feature to it.
- Multi Checkbox. This is very useful when customising SIZE,COLOURS, Quantity ,... of an item.
I have attached example from ebay.
-
Hi all,
I'm using this plugin on my website and i got the same problem, custom attributes are not editable on the edit-item page.
my initial theme is based on modern
here is my website, please help
http://www.labourseauxarmes.com/
many thanks,
vincent
-
Hi everyone,
sydecode a while ago (month+) changed his signature stating not developing for Osclass anymore and removed his freelance profile link. I am afraid all above issues and requests regarding CA plugin will be in vain without response. Just a heads up for all to either find a solution to your issues by yourself, someone else to do it, or leave CA plugin entirely.
That is the state of the fact.
Regards
-
Hi.
Does not work in the search for multiple select :'( :'( :'(
Maybe someone knows why???
-
I would suggest to abandon this plugin and Start using the Custom fields built in the osclass. We only need to ask admin to improve Custom fields for its abilities.
-
Hi safari45,
then this is indeed a wrong place to ask, since Custom Fields are official part and this topic is about 3rd party plugin. Given the fact that lead developer has so little time and so much work on his hands, I hardly suspect he is even reading this mammoth topic.
-
hi dev101;
it is a wrong place. I wanted to know whether people really want to wait Custom Attributes, and if we wait WHO is going to hire him this time. or should we start to consider the alternatives such as custom fields, where we can get a quicker help. :D
-
Well, as it happend, CA is a dropped project for the time being and Custom Fields is the only alternative. Not so bad, but there is a room for improvements, sure.
-
Hi Safari45,
I tried both the versions of Custom attributes. I still find the same issue of a specific attribute Z of category A appearing for category B. Should I wait for somebody to help me here? Also what is this new Custom fields plugin? Is it same as CA and where I can download it?
Thanks
progiant
-
Hi progiant,
I am sorry for the bad experience that you 've had with CA (Custom Attributes) plugin. I agree with you that this plugin is a bit buggy.
The develeper of this plugin cannot be waited for, he has almost disconnected himself from osclass forum. There is no need to wait for him to fix bugs. But I would advise to use custom fields built-in osclass, they almost work the same as CA plugin. And if you insist in using CA Plugin there is still a way to make it work. After many experiments I think I can pin point what might be the cause of your problem.
I have attached the CA plugin that I am using.
I after several experiments with this plugin here is what might be causing the problem you are having:
1 - if you have modified "item-post.php" it will cause this problem.
2 - Disordered creation of attributes, this is likely to be the problem that triggers problem of Attribute A to appeare in Attribute B.
When creating attributes make sure that they are in order according to your categories.
3 - Remember to recheck your attribute configuration, make sure that all attrebutes are properly configured to rightful category.
4 - CA plugin has problem with cashing, this plugin remembers your deleted attribute, make sure you unistall your previous CA plugin and delete it from Plugins directory before you upload a new one.
If it is still unsuccessful, I will be around, I can try to have a look at your attributes and try to create them for you.
-
Hi. Does not work in the search for multiple select Maybe someone knows why???
-
This is due to incompability issues. Search issues in CA is also known as one of bugs that needs to looked up by plugin developer, to fully be compactible with newer versions of osclass.
-
I want this custom groups:
The user check this: a, b, c, when he want search.
Click filter. The site show these item, which content only selected fields.
Example:
fdgdf: a, b
rttr: b, c.
Not shoe this:
wewe: a, b, e, because there is "e" field in items. So show only these items with only check fields.
I like cook site. The user can, that what is in home. And after see on site, that what can he cook.
The osclass is good system, but I din't solve this problem. I haven't other idea.
I use the osclass 3.3 version.
-
G'day,
Here's the latest update (version 1.0.0) :)
http://sourceforge.net/projects/custom-attrs/files/latest/download
dev101 >> I removed the filter stopping wildcard searches, sorry about that!
musta >> I added a template function for all attributes. It's a start, might get around to individual attributes later.
custom_attributes($item_id, $cat_id);
Show attributes for current item and category:
<?php if ( function_exists('custom_attributes') ) custom_attributes(); ?>
Show attributes for another item (eg. 1) and category (eg. 2) :
<?php if ( function_exists('custom_attributes') ) custom_attributes(1, 2) ); ?>
projgiant >> Have you check there are no ungrouped attributes? Do your groups have the same categories selected? Ungrouped attributes are shown for all categories selected on the "Configure Plugin" page, and groups have their own category selector of course. That's all I can think is happening. ???
molwiko & thedaigle >> Sorry you experienced an error. Your server may have an older version of MySQL (see below). I can only suggest that you ask your host to upgrade MySQL or move you to another server.
http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html
VARCHAR(M)
A variable-length string. M represents the maximum column length in characters.
In MySQL 5.0, the range of M is 0 to 255 before MySQL 5.0.3, and 0 to 65,535 in MySQL 5.0.3 and later.
safari45 >> I like the multi-checkbox idea but it would require a lot of work.
The plugin folder can now have any name and you can even run multiple copies. Osclass still does not allow hyphens in the folder name so use underscore instead. Remember to remove the hyphen if you download from GitHub or the plugin will fail to load.
Thanks to everyone who has supported the plugin over the past year. I really appreciate your suggestions and help with fixing bugs.
Best wishes for the holidays! :)
Craig
-
Happy Holidays to you also and many thanks for staying with us. I'd be happy to donate some money for your time to show my appreciation. PM me and let me know where to send it. ;)
-
Hi sydcode!
This was an unexpected surprise. You have given a great New Year present to the whole Osclass community! Great respect and thank you!
All the best wishes to you and your family ;)
dev101
-
Thanks guys! :)
nootkan >> that's a very kind offer, but I'd feel like a crook if I did no more updates. Cheers mate!
-
Filter search.
does not work if you select multiple values (Select Multiple Form Fields)
Prompt where it is possible to do it in code
-
@sycode whould it be very difficult to allow pdf uploads?
-
Yes it's quite a lot of work to do properly. I'll leave that for Osclass or another plugin.
-
Warning: Invalid argument supplied for foreach() in public_html/oc-content/plugins/custom_attributes/conf_groups.php on line 51
I am getting the above error in edit groups section in admin. How to solve it. I couldn't create a group because of it. help me.
-
Hi there!
How can I select only one group available for one category?
I'm trying to make it but it is selected to all categories instead of the category I want.
How the plugin is installed and shown on item page? We need to add the code into item page and the new item page?
Could you give a tutorial or guide to understand your plugin? I personally find this plugin very helpful but not so understanding..
-
;D Thanks for this plugin!
-
how to configure this plugin kindly help me
-
configuration is one of the easiest part, first generally configure the plugin to categories that you will this plugin to. then create Groups then configure them to categories, then create attribute to each Group. then you are done :) get back to us if you encounter a problem in the process. peace :D
-
Thanks to those who contributed to this superb plugin. It is very good and works in good condition.
Question:
I want to know if and how I could use the IF function for two attributes to a post.
Eg. If the first attribute is Yes or No.
If Yes is selected, the second attribute and ask if the selection is not no need to attribute the second.
Thanks in advance
-
this doesnt work if i want to have "make > audi> model > A4" there is no way to select models?
-
Thank you ! This plugin is excellent.
Im looking for a php code to display group name just before checkboxes in the add item page. Any idea?
(http://img11.hostingpics.net/pics/962324groupname.jpg)
Phpmyadmin table
(http://img11.hostingpics.net/pics/708062groupname2.jpg)
Thanks,
-
Found ! You can see the result below. It's more clear.
(http://img4.hostingpics.net/pics/521208groupnamesolution.png)
To do it, just copy this code in plugins/custom_attributes/item_edit_fields.php, just after "<tbody>":
<?php
foreach ($fields as $field) {
$group_name = $group['s_name'];
}
?>
<?php echo $group_name; ?>
I hope it can help some people.
-
Thanks Charger! ;)
-
Hi.. This is an awesome plugin.. Thanks for sharing :-)
But I have a problem.. I want to add attributes for images like image description, image color and so on.. This plugin allows me to create all types except img.. Please help how to achieve this.. I am badly stuck with this.. :-(
-
Hi, is it possible to customize "required field" messages adding group names? Where I can find this message: "This field is required." ?
Thanks,
Its not clear for users when there are much custom attributes.
(http://img15.hostingpics.net/pics/741138publishlisting.png)
-
I have three searches sql databases (see pictures posted) and I want to put them in a three-column horizontal tabs in search_list.
How can I display these searches search_list?
How can I do this.
Please help me. Thanks in advance
-
Hi, how cand I change the position of the custom atributes from the bottom of the page in to another place on the +ad listing page ? :o
-
Hello, how show custom attr(only nedd) in any place on my site? (example: group-telephone, attr-iphone,samsung,.. )
-
Are this attributes multilanguage. Can we used for multi language website.
-
Hello,,,
How to configure this plugim to create boxes with different texts in different categories?
for example:
category (cars)
field-brand
field-model
etc..
Real estate category
field-rooms
field-divisions
etc...
is it possible?
-
Hi Everybody !
There is a way to translate custom fields ?
Thanks a lot !
-
hi, i m new in this forum and i have install this plugin but i don t now ho to work with it anf tutorials plzzz thx
-
read all 20 pages---this is the tutorial :P ::) ??? ;D
-
hello i have this plugin install in my osclass but whene i add it it coms under the page i have attachaed a picture plz i need help friends
-
It have 1 bug look here :
http://forums.osclass.org/3-3-x/display-custom-fields-on-search/
With custom fields or custom attributes, i still have the same problem !
If i go in cars category i can search "Audi" "RS8" in computers...
How to resolve it ?
-
How to search with custom attributes(drop down) in home/index page search bar??? :-[
I am using bender theme...
-
Hi all
Is there a way to create a dropdown attribute list based on selection from another dropdown attribute list?
Regards,
Tristan
-
So I have been reading through all pages and seems some have problem with search and some not. I have problem and cannot find a fix.
I use bender and ad a group. It pops up fine in an ad but it's just impossible to make it searchable. First I tried with a text area and thought it might be the cause, so I changed to text only.
I am still not able to search for the custom field words.
Is it something else I need to do? Something with my database or something?
-
hi thanks for this plugin..
i've a question how can i show my filter fields on search always in side bar and not untill i make a search, because now it just works after i make a search custom fields appear.
I want to have it always there
any idea?
-
Hello,
And thank you for the plugin. Have you got a new version since 2012 ?
Regards,
Merry Christmas! :) Here is a little present from sharkey (http://forums.osclass.org/index.php?action=profile;u=11728) and myself.
Custom Attributes supports:
- Four input types (text, select, radio, and checkbox).
- Ability to make them required or searchable.
- Choice of alphabetical or custom ordering.
- Editing of inputs and values.
- Attribute groups, with category selection.
- Optional group headings.
This is a beta version! Please don't expect it to be perfect.
We hope you find it useful, and we're looking forward to your comments.
Requires version 3.0 or greater.
Update (4th March 2013):
I've uploaded a new beta version. Thanks for your patience!
This plugin is still in development so there may be lots of bugs.
Update simply by clicking on the cross button and uploading the file.
Don't uninstall or you will lose your existing fields and values.
Good luck :)
Update (5th March, 2013):
Fixed bugs and added Jay's updates. Custom Attributes (https://github.com/sydcode/custom_attributes) is now on GitHub.
Remove "-master" that GitHub adds to the plugin folder. Better yet, use the SourceForge link below.
Update (12th March, 2013):
Added language support.
Update (17th June, 2013):
Added date field (jQuery datepicker) and textarea field.
Added limits (min-max) option for text fields.
Added support for Bender theme.
Bug fixes, thanks Aficionado and sirjones!
Fixed deprecated hooks (v3.2 ready)
Many small improvements.
Update (20th December, 2013):
Removed search filter to fix wildcard bug. Thanks dev101!
Added settings "Hide empty attributes" and "Uninstall data".
Allowed multiple installs and custom folder names.
Fixed bug causing groups to reset on values page.
Fixed bug in search fields. Thanks mestr!
Remember! DO NOT uninstall the old plugin or your data will be lost.
Just hit the plus button and upload the new plugin.
Download Custom Attributes (121KB):
http://sourceforge.net/projects/custom-attrs/files/latest/download (http://sourceforge.net/projects/custom-attrs/files/latest/download)
-
Hi! How to swap attributes in custom attributes?
-
how can I do to put some Attribut in the header and some in the discripton... all are listed one after the other do not have any name or ID
where i put the cod thear gose the attribut one after the other (i whant if is posibile to put each somewhere else..)
<li><?php osc_run_hook('item_detail', osc_item() ); ?></li>
-
Right, i need something like this too! In my website, users can sell books and it would be better if under the title field there are also the author field and the field year of publication. How can you position these elements between title and description?
how can I do to put some Attribut in the header and some in the discripton... all are listed one after the other do not have any name or ID
where i put the cod thear gose the attribut one after the other (i whant if is posibile to put each somewhere else..)
<li><?php osc_run_hook('item_detail', osc_item() ); ?></li>
-
@Roberto
try this.
http://forums.osclass.org/bender/explode-custom-fields-on-item-php/ (http://forums.osclass.org/bender/explode-custom-fields-on-item-php/)
-
very good .. ok Iifound you can delete my post.... :)
thx again !!!
-
Hey, great plugin. Thanks!
I am having some trouble with the language and I am not really sure how to procede.
I am using this plugin as an alternative to the real estate, car, jobs and personal attributes plugins.
I mainly use spanish and english on my site.
Here is my confusion.
Should I create a .po and .mo with all the translations?
If so, should I translated the english language .po/.mo that is included and create a folder acordingly?
Once is created, do I need to put some code or fix the code so it shows up?
Any input that anyone can provide me would be greatly appreciated.
Thanks in advance.
-
Hey, great plugin. Thanks!
I am having some trouble with the language and I am not really sure how to procede.
I am using this plugin as an alternative to the real estate, car, jobs and personal attributes plugins.
I mainly use spanish and english on my site.
Here is my confusion.
Should I create a .po and .mo with all the translations?
If so, should I translated the english language .po/.mo that is included and create a folder acordingly?
Once is created, do I need to put some code or fix the code so it shows up?
Any input that anyone can provide me would be greatly appreciated.
Thanks in advance.
Any help or suggestions?
-
Hi,
Should I create a .po and .mo with all the translations?
If so, should I translated the english language .po/.mo that is included and create a folder acordingly?
Once is created, do I need to put some code or fix the code so it shows up?
I haven't worked with this plugin yet, but it includes a languages folder, so yes, clone the en_US folder to es_ES and make the translations with Poedit as usual. That should be enough.
Regards
-
The ability to group and re-order custom attributes is such an important feature to Osclass and the built in "custom fields" really falls short (no grouping and no way to re-order without deleting and starting over :/).
This plugin would be perfect if it worked. I don't know it's full capabilities as I do not have a version of Osclass installed that it works on, but the screen shots looks awesome.
I am using the most current version 3.3.2 with a customized real estate theme, and it seems that it will add groups and the affiliated categories, but will not add the individual attribute to the group. (it does not save to the database). I have been through the plugin code to try to figure out where the problem is, but I am new to the platform and can't track down the problem. My deadline is looming and so I have resorted to using the custom fields and hard coding them in order in the item.php template. Not pretty at all.
Does anyone have a working version of this plugin for Osclass 3.3.2? Is there plans to upgrade and make this plugin work with the current version? I don't even need it to work with being searchable. I simply need the admin to work and the attributes to be displayed on the item.php template.
Searchable fields can be added using the built in feature "custom fields".
I would be willing to pay for a working plugin :)
-
how can I do to put some Attribut in the header and some in the discripton... all are listed one after the other do not have any name or ID
where i put the cod thear gose the attribut one after the other (i whant if is posibile to put each somewhere else..)
<li><?php osc_run_hook('item_detail', osc_item() ); ?></li>
??? Help...
-
I Have problem with CA 1.0.0 modern them and osc 3.3.2, i have 2 differnets category withe different custom attributes.. But on item-post the custom attribut apperd on all categories
-
how can I do to put some Attribut in the header and some in the discripton... all are listed one after the other do not have any name or ID
where i put the cod thear gose the attribut one after the other (i whant if is posibile to put each somewhere else..)
<li><?php osc_run_hook('item_detail', osc_item() ); ?></li>
??? Help...
We should be able to echo certain values from the database right?
-
Thank u for the plugin.
I installed it and osclass says "The plugin has been uploaded correctly". I also confirm it's in the plugins directory. However it doesn't show up in Manage Plugins list in Admin at all, which means I can't configure or use it.
What could be the problem? Please kindly help.
Thanks.
-
Thank u for the plugin.
I installed it and osclass says "The plugin has been uploaded correctly". I also confirm it's in the plugins directory. However it doesn't show up in Manage Plugins list in Admin at all, which means I can't configure or use it.
What could be the problem? Please kindly help.
Thanks.
Did you enable it?
-
Thank you @sharkey.
It's not even coming up in the Plugins list, so I can't get to enable it. I installed it via the Admin Panel and it seems to have been successful based on the Success message I got. I was going to proceed to the plugins list to activate/enable it only to discover it's not even showing up there. I checked the oc-content/plugins folder and it's there. Something is wrong somewhere
-
Hi i need use this plugin instead of the car plugin, but the custom heading is not show
I need this
CAR INFORMATION (heading of the custom fields)
Year > (custom field)
Make> (custom field)
bla,bla bla
Actually looks like the image
-
Hello,
is it possible to print some ONE field anywhere?
For example: fk_i_field_id for fk_i_item_id from oc_t_item_custom_attr_values
-
Search does not work only with a photo when the selected field!!!
Help me please!
-
Hi all
I'm using Osclass 3.4.3.
The custom attribute works fine when using Admin panel to post ads.
However, custom attribute doesn't show when logged in user to post ads.
Is there a way to solve this?
Regards,
Tristan
-
Would one be able to change the plug in name maybe
As I would like to install this a few times but I Want to name the one Custom Car Attributes, one Custom Camera Attributes etc. so that when editing them or setting them up I know which category I am editing.
-
Hello, I use OSClass 3.3.2 with custom attribute plugin, my problem is that it does not work the option to hide the empty fileds can someone help? On the other hand, I can display them on the side Wiget but I want to hide in their default position. as I can do?
thank you
PS: I use symnel theme
-
Thank you for sharing this great plugin!
FYI, I noticed that the "required" check for radio buttons wasn't working.
It seems my browsers were ignoring the second "class" attribute in the "input" tags.
I fixed it by combining the class tags in the plugins "index.php" by changing three lines:
I changed:
$class = ' class="required"';
To:
$class = ' required ';
And I changed:
$output .= "<input class=radio_button' type='radio' name='" . $name . "'" . $class . " value=''" . $checked . " />";
To:
$output .= "<input class=radio_button" . $class . "' type='radio' name='" . $name . "' value=''" . $checked . " />";
And I changed:
$output .= "<input class='radio_button' type='radio' name='" . $name . "'" . $class . " value='" . $option . "'" . $checked . " />";
To:
$output .= "<input class='radio_button" . $class . "' type='radio' name='" . $name . "' value='" . $option . "'" . $checked . " />";
I wasn't exactly sure who I should feed this change back to so I posted it here.
-
Need add locale function to the plugin...
Thanks ;)
Hi All, I am new in the forum. Version: os4.3.3. I was trying to get Add a language to the plugin but I cant. I have created New Folders fo es_ES and de_DE. I changed from item_detal_items.php
<td class='detail_label'><?php $label; ?></td>
to
<td class='detail_label'><?php _e($label,CA_PLUGIN_NAME); ?></td>
I can´t translate de attributes that I have added. I can read that you had the same problem, but I read documentation and your solution but i dont know how to add the locale function to the plugin. Could you help me?
-
Solved!!
-
Hi,
I'm running Osclass 3.5.2 with Custom Attributes 1.0.0
When the recaptcha fails on a form post (edit or new item), the core form columns are kept but custom ones are lost.
I see that the session values are loaded in "item_edit_fields.php", and it works for regular validation but they don't seem to be re-loaded in the case of captcha.
How can I change the code to keep my custom attributes data through a captcha failure?
-
@osclass-ian
http://stackoverflow.com/questions/18639689/im-implementing-recaptcha-on-a-very-large-form-in-php-how-can-i-preserve-f (http://stackoverflow.com/questions/18639689/im-implementing-recaptcha-on-a-very-large-form-in-php-how-can-i-preserve-f)
-
Hi
What a great plugin!!!
But why you use table in output? Why not use <div class="control-group"> and <div class="controls">? in item_edit_fields.php
Also in item_edit.php
<h3 class='render-title group-heading'><?php echo $heading; ?></h3>
Is this working for you? I have no output
OSCLASS 3.5.2 , Bender
Any plans for addtional field type? like URL, mutliselect ?
regards
Raphael
-
Good Evening
congratulations for the forum and I state aid on several situations,
I would ask if it is possible to create an attribute co sub-category on the page item-post, as this video enclose
http://geniustek.altervista.org/video/esempio%20subcategoria.swf.html (http://geniustek.altervista.org/video/esempio%20subcategoria.swf.html)
Thank you very much
-
I would ask if it is possible to create an attribute co sub-category on the page item-post, as this video enclose
In your theme item-post.php (and maybe also in item-edit.php depending on the theme you're using):
Locate:
ItemForm::category_select
and replace it with:
ItemForm::category_multiple_selects
Regards
-
hello thanks for your response
Perhaps I did not explain well why use a translator to communicate
I would almost make a button-down menu with options
example
cat,
dog,
horse,
that by selecting an item bait out a sub category
example
------------------------ cat collar
house cat
------------------------ cibbo dog dog
dog collars
all this without appearing in the category of direct osclass, but in a specific page
is it possible?
-
modification css custom_attributes
how to make that style themes Bender were in styles custom_attributes
please help me)))))) ;) ;)
<tr class='edit_row'>
<input type='hidden' name='fields[]' value='<?php echo $field_id; ?>' />
<td><label class='edit_label' for='<?php echo $name; ?>'><?php echo $label; ?></label></td>
<td>
<?php if ($type == 'checkbox') { ?>
<?php $checked = ($value == 'checked') ? " checked='checked'" : ''; ?>
<label>
<input id='<?php echo $name; ?>' class='edit_checkbox' type='checkbox' name='<?php echo $name; ?>' value='checked'<?php echo $checked; ?> />
<?php _e('Tick for "Yes"', CA_PLUGIN_NAME); ?>
</label>
<?php } elseif ($type == 'date') { ?>
<input id='<?php echo $name; ?>'<?php echo $class; ?> type='text' name='<?php echo $name; ?>' value='<?php echo $value; ?>' />
<?php } elseif ($type == 'radio') { ?>
<?php $this->radio_buttons($field_id, $name, $value, $required); ?>
<?php } elseif ($type == 'select') { ?>
<select id='<?php echo $name; ?>'<?php echo $class; ?> name='<?php echo $name; ?>'>
<?php $this->select_options($field_id, $value); ?>
</select>
<?php } elseif ($type == 'text') { ?>
<input id='<?php echo $name; ?>'<?php echo $class; ?> type='text' name='<?php echo $name; ?>' value='<?php echo $value; ?>' />
<?php } elseif ($type == 'textarea') { ?>
<textarea id='<?php echo $name; ?>'<?php echo $class; ?> name='<?php echo $name; ?>'><?php echo $value; ?></textarea>
<?php } ?>
</td>
<td>
<?php if ($required) { ?>
<span class='required_input'><?php _e('Required', CA_PLUGIN_NAME); ?></span>
<?php } ?>
</td>
</tr>
<?php } ?>
</tbody>
</table>
-
Thank for contributing this awesome plugin.
When I'm on the search page and click the "subscribe now" button, the subscription oc_t_alerts table is written to with some sql for the custom fields like so:
no_catched_conditions":["pk_i_id IN (SELECT fk_i_item_id FROM oc_t_item_custom_attr_values WHERE fk_i_field_id = 37 AND s_value = 'checked')"],
I thought it would be delivered by this function but debug logs in this function showed me it isn't:
public function search_conditions($params = null)
I want to be able to get some custom logic into the oc_t_alerts entry construction.
Any ideas how I would do this?
-
how to make a plug-in that he would have checked that entered the field ( specify the type of the field ) ?
-
How do the attributes in the search were not vertically but horizontally ?
-
The 'Edit Values" function not working :(
-
The 'Edit Values" function not working!!!!
:(
-
I have only main categories like cars, Motorcycles, vans, trucks....now for these categories i need separate makes and models. If a user selects Cars then can select makes like bmw,toyota and if selects Motorcycles: aprilia,suzuki,honda. After the make selection to select the model. Is this possible with this plugin?
Thank you
-
anybody???
-
I have only main categories like cars, Motorcycles, vans, trucks....now for these categories i need separate makes and models. If a user selects Cars then can select makes like bmw,toyota and if selects Motorcycles: aprilia,suzuki,honda. After the make selection to select the model. Is this possible with this plugin?
Thank you
Hi,
No, with this plugin you can only choose Make but not Model, for this case go to plugin market and choose Car Attribute, the Motorcycle Attribute you will find it in the forum...http://forums.osclass.org/plugins/(plugin)-motorcycles-attributes/msg57225/#msg57225 (http://forums.osclass.org/plugins/(plugin)-motorcycles-attributes/msg57225/#msg57225)
Regard
-
in search missing update botton why? Help please
-
how can i use Custom Attributes shortcode in register page osclass
-
Thanks for the plugin. I recently joined the forum hence just happened to find it.
I liked it very much.
JUST ONE QUESTION. If we have too many attributes in acategory it shopws up like a straigt line in item page. Is there anyway there could be 2 coloumns and atribute goes an both sides?
Thanks
-
I'll look into the edit values problem.
BTW, I don't mean to be rude by ignoring your questions. It's just that I'm not much interested in Osclass anymore.
UPDATE: I can't find anything wrong with edit values. Please provide a specific example so I can test it.
-
Thanks DevPro! :)
That would require a lot of editing, or even a new plugin. I admit the UI is terrible, but it's more work than I can do right now.
how can i use Custom Attributes shortcode in register page osclass
Sorry mohad, it cannot add attributes to the register page. That would require a different plugin.
in search missing update botton why? Help please
Probably just a theme conflict, but it's impossible to know without seeing a screenshot.
-
-------------------------------------
-
Hello there .. A bit of a problem .. I have a lot of checkboxes , and they displayed a long list ..
Question .. How to make them to be displayed in 2 or 3 koloninki ?
Help needs help ) ) )))
Thanks in advance
-
found an exemplary solution , just I do not know how to tie my code
this
echo "<table><tr><td>";
$nnn=1;
if ($nnn%3==0) echo "</td></tr><tr><td>"; else echo "</td><td>";
$nnn++;
echo "</td></tr></table>";
to
<tr class="ddd">
<td class='detail_label'><?=$field['s_label']?></td>
<td class='detail_label1'><?=$value?></td>
</tr>
-
Try this :)
item_edit_fields.php
<?php
if ( !defined('ABS_PATH') ) {
exit('ABS_PATH is not loaded. Direct access is not allowed.');
}
?>
<table>
<tbody>
<tr><td><table>
<?php
// Counter for multiple columns
$count = 0;
$total = count( $fields );
foreach ($fields as $field) {
$field_id = $field['pk_i_id'];
$label = $field['s_label'];
$type = $field['s_type'];
$name = 'field_' . $field['pk_i_id'];
$value = Attributes::newInstance()->getValue($item_id, $field_id);
$required = $field['b_required'];
// Build classes
if ($required) {
$class = 'required';
} else {
$class = '';
}
if ($type == 'date') {
$class .= ' edit_date';
}
if (!empty($class)) {
$class = " class='" . trim($class) . "'";
}
// Get saved value from sesssion
if( Session::newInstance()->_getForm($name) != '') {
$value = Session::newInstance()->_getForm($name);
}
?>
<tr class='edit_row'>
<input type='hidden' name='fields[]' value='<?php echo $field_id; ?>' />
<td><label class='edit_label' for='<?php echo $name; ?>'><?php echo $label; ?></label></td>
<td>
<?php if ($type == 'checkbox') { ?>
<?php $checked = ($value == 'checked') ? " checked='checked'" : ''; ?>
<label>
<input id='<?php echo $name; ?>' class='edit_checkbox' type='checkbox' name='<?php echo $name; ?>' value='checked'<?php echo $checked; ?> />
<?php _e('Tick for "Yes"', CA_PLUGIN_NAME); ?>
</label>
<?php } elseif ($type == 'date') { ?>
<input id='<?php echo $name; ?>'<?php echo $class; ?> type='text' name='<?php echo $name; ?>' value='<?php echo $value; ?>' />
<?php } elseif ($type == 'radio') { ?>
<?php $this->radio_buttons($field_id, $name, $value, $required); ?>
<?php } elseif ($type == 'select') { ?>
<select id='<?php echo $name; ?>'<?php echo $class; ?> name='<?php echo $name; ?>'>
<?php $this->select_options($field_id, $value); ?>
</select>
<?php } elseif ($type == 'text') { ?>
<input id='<?php echo $name; ?>'<?php echo $class; ?> type='text' name='<?php echo $name; ?>' value='<?php echo $value; ?>' />
<?php } elseif ($type == 'textarea') { ?>
<textarea id='<?php echo $name; ?>'<?php echo $class; ?> name='<?php echo $name; ?>'><?php echo $value; ?></textarea>
<?php } ?>
</td>
<td>
<?php if ($required) { ?>
<span class='required_input'><?php _e('Required', CA_PLUGIN_NAME); ?></span>
<?php } ?>
</td>
</tr>
<?php
// Add new column ( 20 rows )
$count++;
if( ( 0 == $count % 20 ) && ( $count != $total ) ) {
?>
</table></td><td style='padding-left: 50px; vertical-align: top;'><table>
<?php } ?>
<?php } // End fields ?>
</table></td></tr>
</tbody>
</table>
<?php //END
-
Thanks , but I refused to table, remade plug-in div. Yeshe couple of days and I'll post the finished version
-
Hi all , I want to change the prompt text is " Select" in the name of the field , I was able to withdraw only ID, and how to get the name (s_label)?
public function select_options($field_id, $value = null) {
$options = Attributes::newInstance()->getOptions($field_id, $value);
if (empty($options)) {
return;
}
$options = explode(',', $options);
$output = "<option value=''>" . $field_id . "</option>" . PHP_EOL;
foreach ($options as $option) {
$option = trim($option);
if ($value != null && $option == $value) {
$selected = " selected='selected'";
} else {
$selected = '';
}
$output .= "<option value='" . $option . "'" . $selected . ">" . $option . "</option>" . PHP_EOL;
}
echo $output;
}
-
Hi,
I'm trying to use Custom Attribute label and value at 'osc_query_item' but it doesn't work.
<?php
osc_query_item(array(
"category_name" => "cars,houses",
"city_name" => "Madrid",
"SomeLabel" => "SomeValue"
));
?>
Any advice to get this work?
-
Hello,
First of all thx for the great plugin, i really like it.
but i have a question, is there a way to print custom groups ? i would like for example print or echo a group named profile with attributes in the item_sidebar.php and other custom groups in columns in item.php
i managed to adjust the item_detail to my theme but due to the hooks everything is just listed below each other.
tried to make different plugins for each group but failed i am not used to work with the mysql and i do not now the base knowledge of it, for the most part i looked at the code and i adjusted it trial and error, really hope someone can help me im stuck ;D.
Thx in advance !
-
spread their version of the plugin .. Do not put on the working site !!!!!!!! This version is for reference only ..
-
I'm not opening a new topic accorded to my problem.
I'm using a real estate theme and custom attributes plugin. I have a small visual problem with search form fields included in the attachment. How to "block" the line of maximum value with minimum value in one line?
Thanks for help in advance
-
When I delete this plugin, it doesn't remove it's SQL tables? I still see few item_custom_attr_* tables...
-
When I delete this plugin, it doesn't remove it's SQL tables? I still see few item_custom_attr_* tables...
As usual sql tables stay after uninstall. If you reinstall plugin, old data will be written. You have to remove it manually
-
Hello, how to handle special characters in Custom Attributes, i.e. Dolce & Gabbana, Morì...?
-
Hi,
In this case most likely you need to use html escaping ie. use & instead of only &
I think there also is a special function in Osclass taking care of special chars.
Regards,
Eric
-
Ok I have but the result is still the same:
> search/field_19,Dolce+
with a blank result.
-
Searching by fields from custom_attributes plugin doesn’t work for me. I wonder what can be wrong.
For test purposes I have changed function search_conditions in index.php of the plugin.
I have replaced line
Search::newInstance()->addConditions("pk_i_id IN (" . $subquery. ")");
By
Search::newInstance()->addConditions("pk_i_id IN (333)");
But item having id 333 was not appear in the search result. So for me it means that this function is somehow not correctly attached to searching engine. What would you advice in this situation?
-
I noticed that for some reason radio buttons set to required display the notice, but do not perform check so they can be left unselected. Drop downs and other required fields work as intended, problem is with radio buttons alone. How to fix this?
-
@sharkey,
I understand what you are saying. I am planning to work on adding the sub attributes portion soon.
Jay
Could we hope for this update some day? ... ???
Regards
-
is it possible to add a css class to the attributes , how to custom fields ?
-
It is possible to make multilanguage (translate) support for Custom Attributes ? I really need it! Thank`s a lot!
-
Hi, guys!
Maybe someone know. The question is where i can edit alert message "This field is required". Couldn't find where i can change its text.
-
Hi, guys!
Maybe someone know. The question is where i can edit alert message "This field is required". Couldn't find where i can change its text.
/oc-content/languages/en_US/core.po
/oc-content/languages/en_US/theme.po
Regards.
-
Hello
I use Custom Attributes and it work very well, its very good job you make.
I want to ask, is planned for the future. make custom attributes multilingual?
because I have 3 language site and it would be very helpful.
Regards.
-
Hello
I have just installed this plugin right now but the problem is that whenever i add new custom field it appears at very last after all fields. I want the added field on the top after selecting category field how to this help needed please?
-
Very good plugin
I want to put it in different categories how can i do that???
-
I'm following error
Column length too big for column 's_options' (max = 21845); use BLOB or TEXT instead
does anyone know why? how to solve ?
-
Tell me how to do the attributes in item as a reference
so when you only search for ads with this attribute
Help me please
-
Hello,can anyone help me resolve this and where to start step by step.Tnx when i try to install this plugin gives me this
Plugin couldn't be installed because of: 1074 - Column length too big for column 's_options' (max = 21845); use BLOB or TEXT instead
-
.
-
Hello,any help with this with this i try to install this plugin but get this tnx.
Plugin couldn't be installed because of: 1074 - Column length too big for column 's_options' (max = 21845); use BLOB or TEXT instead
-
Hi,
I'm facing issue with the plugin, i'm creating group lets say Cars, then Attributes lets say Brand, but when i go to Edit Values tab and i load the Group and the Attribute, nothing is showing, if i want to map it to the below print screen i'm reaching the 2nd printscreen, the 3rd one is not showing any data...
I checked the tables in mysql oc_t_custom_attribute_value is empty, all the data is in the oc_t_custom_attribute_fields...
Any one faced issue like this, or i'm missing some steps!!!
Thanks
-
Hello,
Any one can help in this, i'm not getting any data in the Value sections, am i missing something, or plugin is not working properly :'(
thanks
-
Hello I use the plugin and have 4 checkboxes with colors, but unfortunately it does not work if I select more than 1 color, someone knows how I managed it?
-
Hi,
Weird, checkboxes should be independent of each other. ??? Are you sure you're using Checkbox when creating Attribute?
Regards
-
Hello teseo,
Thank you for your answer here times the link
http://www.roter-guide.de/index.php?page=search&sCategory=2
(http://www.roter-guide.de/index.php?page=search&sCategory=2)
I have chosen a different color for each display, but if I select red and blue in the search so more than 1 selection, I get no results more ??
Is there still somewhere a possibility to adjust which I perhaps did not see?
I use the plugin version 1.0.0 and Osclass 3.6.1
-
I need to change the custom_attributes to cars_attributes
I change everithing, name of directory, the database, files, etc, etc, etc...
Is working with no errors, but don't create the database with new fileds and if in índex.php i check the plugin name with echo CA_PLUGIN_NAME; i got allways custom_attributes.... So my only question is, where is defined the name of the plugin, in this case "custom_attributes"????
Best Regards
-
Hello teseo,
Thank you for your answer here times the link
http://www.roter-guide.de/index.php?page=search&sCategory=2
(http://www.roter-guide.de/index.php?page=search&sCategory=2)
I have chosen a different color for each display, but if I select red and blue in the search so more than 1 selection, I get no results more ??
Is there still somewhere a possibility to adjust which I perhaps did not see?
I use the plugin version 1.0.0 and Osclass 3.6.1
Oh, I see. When you check two colors the search is made looking for with both color #1 AND color #2, So I guess the plugin has nothing suitable for what you need (probably a multiselect dropdown), you'd need to modify the plugin to include a whole new type of attribute.
So my only question is, where is defined the name of the plugin, in this case "custom_attributes"
The name of the plugin folder.
Regards
-
Strange... i change the ďír name eg. custom_cars_attributes, bet when i madeChe echo CA_PLUGIN_NAME; i still havin the reply custom_attributes... can be related with cach of browser???
Observation: i think osclass team need to work with some attributes plugin... realestate, cars and custom attributes are a litle bit old and seems not having support from developpers...
-
Hm... I think that's because when you installed the plugin it was registered in the database with the original name.
You have two options:
1.- Restore the original name, uninstall the plugin, rename the folder and reinstall it. Problem here is that you'd need to first backup the plugin tables in the database, or start form scratch.
2.- Using PhpMyAdmin, carefully modify the s_value of the preference with s_name "installed_plugins" in oc_t_preference: Locate "custom_attributes" string, for instance:
i:48;s:27:"custom_attributes/index.php"
(Likely your "i" value will be different -that's the order number assigned to the plugin, keep it as it is on your DB). And "s" would be the lenght of the string -"custom_attributes/index.php" => 27 characters).
So, in this case:
i:48;s:32:"custom_cars_attributes/index.php"
Regards
-
hey
Teseo, thanks again for your reply
"Oh, I see, when you check two colors, and color # 1, and color # 2, So I guess the plugin has nothing suitable for you To modify the plugin to include a whole new type of attribute. "
Yes exactly so is it you have a tip for me in how far I have to change the source code that it is not a programmer but I think times in the part
/**
* Add search conditions
* @param array $params
*/
public function search_conditions($params = null) {
if (is_null($params)) {
return;
}
$values_table = Attributes::newInstance()->getTable_Values();
foreach($params as $key => $value) {
$has_min = strpos($key, 'min_');
$has_max = strpos($key, 'max_');
if ($has_min === 0) {
$field_id = str_replace('min_field_', '', $key);
} elseif ($has_max === 0) {
$field_id = str_replace('max_field_', '', $key);
} else {
$field_id = str_replace('field_', '', $key);
}
$field_type = Attributes::newInstance()->getFieldType($field_id);
if ($field_id == $key || empty($value)) {
continue;
}
$subquery = "SELECT fk_i_item_id FROM " . $values_table . " WHERE fk_i_field_id = " . $field_id;
if ($has_min === 0 && $field_type == 'text') {
$subquery .= " AND CAST(s_value AS DECIMAL) >= " . $value;
} elseif ($has_max === 0 && $field_type == 'text') {
$subquery .= " AND CAST(s_value AS DECIMAL) <= " . $value;
} else {
if ($field_type == 'text' || $field_type == 'textarea') {
$subquery .= " AND s_value LIKE '%" . $value . "%'";
} else {
$subquery .= " AND s_value = '" . $value . "'";
}
}
Search::newInstance()->addConditions("pk_i_id IN (" . $subquery. ")");
}
}
The index.php would be the behavior to change or ??
-
I'm afraid Osclass doens't include any mechanism for multiselect dropdowns. You'd need to add a new Javascript plugin and then modify the plugin code to put it in place, a job for a developer. If this feature is crucial to you, my advice is to hire one (Open a thread in the Jobs section here).
Regards
-
This is really a very nice Plugin, but one think i saw is, when i start have many attributes this became slow and slow... For exame if i add 40 car makes, with 30 modela in each car make this vexames rally slow. anyone experience this??? There is a way to improimprove the Speed performance?? ?
-
This plugin is not well made because the content of the announcement can be seen subcategories.
How to change it?
-
Hai..
i have installed this plugin on my OC 3.6.1 and working perfect with bender theme.
I just want to put some custom attributes value beside the tittle ads.
For example:
Age = 26 --> custom value added by user.
Tittle: Example tittle Ads (26)
anyone can help me to tell the code for this? i attach my db screenshot also. please help... Thanks
Sorry for my english. ;)
-
Привет Дизайн / Sydcode;
I Wonder wether this feature already existed in any plugin.
- Multi Checkbox. This is very useful when customising SIZE,COLOURS, Quantity ,... of an item.
I have attached examples from ebay.
(https://forums.osclass.org/index.php?action=dlattach;topic=11083.0;attach=13821;image)
(https://forums.osclass.org/plugins/(new-plugin)-custom-attributes/?action=dlattach;attach=13818;image)
Who did not?
Really need
-
GREAT PLUGIN! I LOVE IT!
I am having an issue with adding attributes. When I add attributes to a group they display properly within the group. Only problem is when I add a new group it always defaults to show that group of attributes last. Is there a way i can change the order of the groups.
I found the SQL Table that contains the groups in PHPMYADMIN, but it will not let me change the pk_i_id of the groups.
When I click edit in the table and change the value i get this error: #1451 - Cannot delete or update a parent row: a foreign key constraint fails
-
Great plugin! Any ideas how to setup checkbox to be able to tick multiple checkbox options? For example if the check box option offers 5 values, select value 1, 2, 3 and not select value 4 and 5 but count 1, 2, 3 in database and make them searchable.
@kompua yes - exactly! I have found this - https://forums.osclass.org/development/how-to-have-multiple-checkboxes-for-one-custom-field/
I may try to investigate and figure out the code and try to implement it to this plugin when I get the time. If it works, i will post the results. But if anyone has done that already, let me know, please! Thanks!
-
Can anyone help me to modify the plugin to show it in the search bar as I showed in the image? I think I have to change the "search_form_fields.php" files and css files. Thanks to those who will help me! :-)
(http://www.weadom.com/files/example.png)
-
The question same as rinand27,
How to display some fields of item`s custom attributes by their "fk_i_field_id" on page from DB? (not in plugin), there is no 's_slug' field like in meta fields.. :-[
-
How to add Custom Attribute's values to Grid Listings?
-
Hello friends!!
I tell them that I am NOVATO in that of the programming. I am lucky I save but I like osclas and it is working well in all the tests. Install custon atributes and what I need is for each created group to be placed in column form next to each other in an orderly fashion
example:
Group 1 Group 2 Group 3 Group 4
Attributes Attributes Attributes Attributes
Attributes Attributes Attributes Attributes
Attributes Attributes Attributes Attributes
And not one below the other as it is currently seen.
Group 1
Attributes
Attributes
Attributes
Attributes
Group 2
Attributes
Attributes
Attributes
Attributes
Where I can see or have a solution to this detail.
regards!!
sorry for my english.. I'm using google translate.
-
Hai..
i have installed this plugin on my OC 3.6.1 and working perfect with bender theme.
I just want to put some custom attributes value beside the tittle ads.
For example:
Age = 26 --> custom value added by user.
Tittle: Example tittle Ads (26)
anyone can help me to tell the code for this? i attach my db screenshot also. please help... Thanks
Sorry for my english. ;)
The question same as rinand27,
How to display some fields of item`s custom attributes by their "fk_i_field_id" on page from DB? (not in plugin), there is no 's_slug' field like in meta fields.. :-[
Hello friends!!
I tell them that I am NOVATO in that of the programming. I am lucky I save but I like osclas and it is working well in all the tests. Install custon atributes and what I need is for each created group to be placed in column form next to each other in an orderly fashion
example:
Group 1 Group 2 Group 3 Group 4
Attributes Attributes Attributes Attributes
Attributes Attributes Attributes Attributes
Attributes Attributes Attributes Attributes
And not one below the other as it is currently seen.
Group 1
Attributes
Attributes
Attributes
Attributes
Group 2
Attributes
Attributes
Attributes
Attributes
Where I can see or have a solution to this detail.
regards!!
sorry for my english.. I'm using google translate.
I have the same doubt of the guys, how to get the values of "Custom Atributtes Plugin" and show somewhere on the theme?
-
Update (4th March 2013):
Hello!
Thank you very much for this plugin!
I have already spoken here about my problem, but I did not get a solution. Now I decided to ask for help from the developer of the plugin. When the Custom Attributes plugin is enabled, the search ads by "only with photos" stop working. Writes that there are no such ads, although they are :)
Please, help!
Osclass 3.7.4, Osclass modern theme 5.1.0