Volusion: How to show all products in home page? - volusion

I have a Volusion store I assign categories to all products so the products are just shows in their concern categories. I want to show all products in my home page when first time my store load.
I tried to assign admin but no option is there.

In the Admin, go to Design / Product Display Settings / Home Page Featured (link on left). Increase the Display Rows and Display Columns values to accommodate your inventory. More info here https://support.volusion.com/hc/en-us/articles/210106697-Product-Display-Settings#featured_products

Related

Crawling the dynamic web application by bots

I have a simple public facing web application and I need to make the my site searchable by search bots to scan. So I plan to modify my application by adding meta tags, titles and other descriptions tags in my web pages so that search engines can scan and update the indexes.
My application contains home page where user can search for products. There are various html controls such as drop downs/ checkboxes and text fields which the user can use for setting the search criteria. Once the criteria are set, user clicks the Search button. The result is shown in a table in tabular format. The product name in first column and the link to each product's details page in second column. Clicking in the product name link, the screen navigates to detailed page of the product. So basically there are only 3 pages in the web application.
The detailed page is a simple page with standard template and the content for this page is fetched from the database. The meta tags for this page will be the name and description of the selected product. The values for the meta tags will be replaced dynamically at runtime based in the selected product.
My question is: What changes I should make in my application so that search bots is aware of all the products during crawling and index them and show these products in the google search results.
The sample URL for each products is as shown below:
http://www.mysimplesite.com/searchpage.xhtml
http://www.mysimplesite.com/detailpage/product=sofa&length=4
http://www.mysimplesite.com/detailpage/product=table&length=5
http://www.mysimplesite.com/detailpage/product=fan&color=green
http://www.mysimplesite.com/detailpage/product=fan&color=yellow
I added meta tags to my pages.

Spree Ecommerce: Admin view of user's shopping cart

Is there a somewhat simple way for an admin user to 'log into' or view a user's (doesn't have to be an account holding user) shopping cart?
It would be nice even to move through the checkout progress for them as well, but just the cart would at least be a good first step?
You can manage user carts in the Admin Panel -> Orders. To see incomplete Orders click Filters and uncheck show only complete orders. Then you can access Order page and edit their Cart contents, shipments, payments and so on.
See https://guides.spreecommerce.org/user/editing_orders.html

Create a product list with paging in Umbraco 7.3

I want to create a product list with paging shown as below
I have searched on the Jquery or javascript to achieve this and found that we can use JSPages. But how do i integrate this in Umbraco?
For each category, there are many products. So for that also, i need to create a page with paging. So When user click in Category A, it should redirect to another page (which is Product list page) with the same functionality.
Also, where do i mention that Product A, Product B are from Category A.
So how do i achieve this ?

Search nodes that have their contents in different table than cmsContentXml umbraco table

I have added to umbraco a new section and called it 'eCommerce' where content manager can add all company products, then in the Content section they create the page and link it with the product node from the eCommerce section.
All the product details are created in the eCommerce section and saved in a table other than cmsContentXml table. Now, how can ExamineIndixing index those information and display the right link for the page that should display such information?
Here's some documentation and a sample project on how to index custom data: http://examine.codeplex.com/wikipage?title=Custom%20Indexing&referringTitle=Documentation
I'm not quite sure why you would want to write your own custom commerce solution on top of Umbraco though, as there are already 3 fully featured commerce packages available for a more than fair price (uWebshop, Tea Commerce and uCommerce: http://our.umbraco.org/search?q=commerce&content=project).

User profile with devise, checklist app

I am new to rails and I am currently in the process of developing a check list app. I would greatly appreciate some guidance as I am currently suck in my development process and would just like some help getting me on my way.
Goal:
Admins will have the privileges to add collections, and add products to those specific collections - (all will be pre-populated and defined before the site goes live).
Users should arrive at the homepage, be presented with a splash page of what the page is and be able to sign in/ up. Once signed in the user should be directed to their profile page.
a.) first time there, they should be presented with a list of collections they want to 'follow" / "watch" (that show up on their profile page to track the products they are missing from the entire collection)
b.) second time there, they should be presented with the collections they are watching, and the all products in that collection.
Once on their profile page, they should be able to "check" and "uncheck" products in the collection. I want to show all the products in the collection regardless if they have them or not, and they can check the ones they have, and I will do some fancy front side stuff to make it visually appealing. (fade from black / color - on true/false value - animate all selected ones to front of container..ect)
What I have:
I have a Collection(has_many) -> Products(belongs_to) association models set up. I have both of the controllers CRUIDified, and the product page is CRUIDified through association with collection. (nested routes / #collection.products.build etc.)
I have a generated Devise User model with email confirmation. I gave that model a User(has_many) -> Collections(belongs_to) association.
My next steps?
I am trying to assign a user to a profile page that I can display the results of the their collections/products. I am stuck as to how to achieve this. Do I need to create a user controller and put a before_filter :authenticate_user! and limit the actions I don't want accessible by normal users? Or do I need to generate a new Model Profile, and put an association there?
If you would like to see my current code it can be found here:
https://github.com/gogogarrett/Blind-Boxd
Thanks in advance,
Garrett
If you want to have a page for signed in users to see their collections and products, you don't necessarily need that to be in a User Controller.
I have put my user overview pages in a pages_controller. You then have a before filter of :authenticate_user!, and you just pass whatever you need into the view (#collections = current_user.collections).
It doesn't sound like you need a new model.

Resources