specifying which products i want to be featured on Big Cartel Roadie landing page - bigcartel

I would very much like to be able to choose which products to show as featured on the main page. I'm not at all a programmer, so I can do html/CSS, but no more. The way I see it I should somehow add tags to certain products and then some function which would allow these tagged products to be listed as featured. But I have no idea as of how to do it. Any advise, please?

Related

Adding custom data to Django's admin dashboard

I'm having a bit of trouble with Django again.
I have a simple e-commerce website project that I'm working on for my graduation. It sells books. I've got basic functionalities down, such as adding categories and products, client sign-ups and logins, a session-based shopping cart, a checkout page fully connected to a payment API, and an orders model to keep track of data.
My professor has asked me now to to add relevant reports in the Admin panel, talked to me a while about what would be relevant to see and all. So, I've got in mind what I'm hoping to make.
I want to have two containers in the main dashboard page, which would display some quick analytics (like, how many books the store has sold in the past seven days, how much money from sales the site has made in the past month), as well as links in the sidebar: I want each relevant app within my project to have their own reports section in the Admin panel, maybe led to from a link underneath their models. I've separated the storefront, accounts, orders, shopping cart, and checkout, for instance, in different apps
The problem is I can't really figure out how to actually... do that...
I've fiddled with the layout and templates on the admin; I've figured out how to add custom links to the admin page, and change its design elements, for instance. But I'm not sure how to link the data I want to the dashboard. It feels like the answer is right in front of me and I can't reach it...
I guess my question is, how can I add my reports to the Django admin page per app, and how can I add these containers that I want in the dashboard?
I've guessed that I have to start out by building a view for each report. So I am currently reading the Django docs on the Admin page again, as well as looking at questions similar to mine.
But any information y'all can share that could ease up this process and save me some time would be very much appreciated. Thanks so much!
PS: If it helps, I am overriding the admin templates by having all the .html pages copied on my project's templates folder - it's how I got it to display the store's header in the admin dashboard.

Opencart products page with special price

I want to have example.com/special and there list products with special price, what is the best way to do that ?
Requirements: 1.
have url /specials/
use category.tpl template
My idea: create new page in information, in controller send parms to catalog/category to fetch specials products, maybe exist more clear way ?
Special page is available by default in OpenCart. When You will set “old price – new price” for product. So, It product will automatically added in special page.
You can see in default OpenCart special page demo. Click Here
For example a product may have cost $200, but using the specials option in OpenCart you can set the price to $150. That way customers see the “old price – new price” difference.
Here’s how to set up a specials in OpenCart
From your OpenCart admin interface, hover over the Catalog tab and
click Products.
This is the list of products you have on your website. Find the
product you want to discount and click Edit.
Click on the Special tab.
Click Add Special in order to fill in the information for your
special price. Again, you have a number of options almost identical
to the discount page:

is it posible to make multiple facebook share button with different title description on same page dynamically?

I'm making a web page which has many sections of news inside ,and each of section box has Facebook share button that responses different title ,description and images with same url.and the user must be able to add/remove/edit a section of news dynamically. So, we found using share.php with passing parameter is usable but now It doesn't work because of new version. So,I'm finding other solution.

CMS to develop an aggregator of posts

I would like to know if there is a CMS where users sign up and create posts (with text, images and videos) and then these posts are displayed on the main page of the website. Posts can be voted. Posts can also be filtered by most voted, most recent and by tag name. Basically, it will be like the Stack Overflow website but instead of questions, users post a topic.
If such a CMS does not exists, what options are available to develop one in terms of existing CMS/templates/themes that I can customize or otherwise?
There is some alternatives to go on with. I would go with a PHP one since it's more widespread but they should all do the job. Here's 2 of them:
http://www.osqa.net/
http://www.lampcms.com/
You can find more by doing a Google search with the keywords "Q&A Platform".

django-tagging like app for specific conditions in django

I am making a project where I want to build a user profile. In this user profile, I want to provide the field for employers and skills. Both of these fields have many to many relationship. One user can have multiple employers and each employer can have different users linked to it. The same is for skills.
To the user I want to provide a field, where it can enter the employers separated by space, and also provide Add another employer button. This is very similar to django-tagging application.
But I cannot put the tagfield there because my tags are very generic and span across different models. I am using an tagging-autocomplete on it. And I just want the employers to come in the autocomplete field and not just any tag.
This can be done using ManyToMany fields but I have not found any good tutorial that shows how I can do that.
Any help or direction is appreciated.
I belive, it is not similar how django-tagging works inside, because what you need is just a widget to select users. And this widget should have autocomplete.
Take a look at the answers on Facebook style JQuery autocomplete plugin question.