So my task is to create a button in the advertisments part of osclass web page. Were an authenticated user could press a button "add more" and then choice any amount of pictures for example 30. And then those pictures would be counted as a separate advertisement. Then the user could add some detail to each one of the advertisements. As I have never created a plug-in for osclass I would like some guidance/help in doing so. Any links of good tutorials that could help me accomplish this would be great! And thanks for help! :)
Here's a tutorial to help you develop a plugin for Osclass. :)
About the plugin you want to create, it seems you want to create a custom attributes plugin (extra fields added to items) to extend Osclass item datas.
Related
I am using the Wordpress Hirebee theme from Appthemes.
Link to theme features: https://www.appthemes.com/themes/hirebee/
Link to theme demo: http://demos.appthemes.com/?theme=hirebee
The theme already has a messaging and notification system for freelancers and employers to communicate with each other. So I want to:
Make two buttons on profile. One button will be "Contact Me". It will send a normal message to the Freelancer.
Second button will be "Hire me" button. It will invite the freelancer to an open project already created by the employer/user. To use the Hire me button, employer/user have to create a project first, then look for freelancers and invite anyone they like from the profile. If no project is created when the the hire me button is clicked, it should show a popup message saying to create a project first with a link to Create a project page.
Both the above buttons should work along with the theme's existing notification system so users will get notifications for any messages or replies.
If someone used Hirebee theme please let me know how to do that.
Thanks in advance :)
We are currently trying to set up this same theme and that is a good question. I been waiting to see if anyone answers you.
Michelle
i am not that much export in Joomla. and i stuck at one problem.
i want to add some custome fields in article manager page when we add / edit article from admin side. just like wordpress when i add some function in function.php page it reflacts on wp-admin side.
also i want that selection to be effect on front side.
can some one show me is there any way i can add a function in my theme which will show a custome selection fields on admin side and based on that front page changes.
i am using Joomla 3.4
Thanks in advance
You need to write a plugin to add this functionality. There is a recipe here. In the example they are using the #__user_profiles - table, which might be okay, but adding your own table might be more flexible.
This here might also be a useful link.
I am building a very simple website ( http://driz.co.uk/beta/ ) using CakePHP to show a portfolio of my work as well a few pages such as about me and contact. I was thinking of just creating each item for my portfolio as a page inside the /views/pages/ folder but seen as I'm wanting to learn a bit about CakePHP I thought it would be probably better to use a database and store each item in a simple table.
What I need to do is have a simple page like /portfolio/ which lists all my work to date and then links to each item I have so for example /portfolio/my-awesome-work/
I also need to list the items in the sidebar as shown in the link.
For each portfolio item I will need a title, a body (which will store the content and images for each item) and also the client information. I don't need any image upload capabilities as I will be just adding the HTML for it in the database table.
If anyone can help it'd be much appreciated.
Thanks
Hopefully you aren't asking for a full solution (frowned upon on SO)
First follow the blog tutorial : http://book.cakephp.org/view/1528/Blog
This is a great place to start as it walks you through all the basics.
As for your particular problem. Creating a portfolios table with all the fields you mentioned and baking the code (you'll know what that means when you follow the tutorial) as a starting point will get you half way there.
You could also add in an admin area to manage your system. This would mean you'd need to create a users table and add the Auth component
I'm wondering if anyone has found or written an extension that would allow a magento website administrator the ability to add values to their products attribute while adding the product. For example, if I sell books and want the book author to be in a drop down list so that it would be used in layered navigation, it seems odd that I would have to add the author via the attributes section before adding the product. From a workflow standpoint it really makes sense to have an "add new value" button next to the drop down on my add product screen.
Anyone have any thoughts or insight?
It's a piece of cake to do, if you know jquery and the (if I may guess) extremely simple model behind magento.
As the other guy said, throw some money and I'll do it ;)
Otherwise, real easy -> find where that dropdown is generated, add a button next to it that opens a popup which you fill "create a new thingie" stuff, create button -> +create +close +refresh your dropdown.
Definitely easy.
And considering the attribute dialog already exists in the tool you cold probably take most from there and just add the popup handlers / button / +refresh .
This extension can Import/Export products and customers from/to CSV file. Create categories, add attribute options, import images and media galleries, reindex, refresh cache, media and price rules automatically. In addition you can backup the entire database in SQL format.
So from above, once you make the csv file, you just have to add the Author header and it would build the list from there. However, the attribute must exist first. I am using this method for the creation of my own manufacturer attribute options.
AMartinez_CustomImportExport
Can't say I have, but I've developed something similar that creates an attribute and adds it to multiple products, it's completely possible, you just need to add something that will call the add attribute on the add product page or change the new product flow to allow a new attribute and add it if needed.
Don't let them scare you, it's not as hard as some people might describe :)
My curiosity finally took over my laziness and I managed to create the module author requested. It's available on github.
Please feel free to check it out and update it if you wish. Maybe in some near future I'll post it on Magento Connect, if feedback is good.
Here's some code that checks if an attribute value exists and adds it if it doesn't: http://www.magentocommerce.com/boards/viewthread/26234/
Shouldn't be too hard to integrate it with the "Add product" form.
I know how to add a Facebook like button for a group or page, but is it possible to add a like button to every product in a web store without having to create a group or page for each product?
This was originally asked on StackExchange Web Apps Private Beta here.
If each product you want users to be able to like has it's own web page (like a product detail page), then you can setup the Open Graph tags on each page, and have buttons with a custom href pointing to them:
<fb:like href="http://mystore.com/product-1"></fb:like>
Yeah you can. Now with Facebook, you can "like" almost everything. You just have to implement it the way you'd do it for a page, or a quote. You can put it in your display loop/function.
I hope I was of any help.