I'm currently developing a site in OpenCart for a client of mine and they are having issues adding filters and categories to products. When they try to add a category by typing in the category name, it sometimes does not show up. If it does show up and they click on it, it sometimes does not detect that it has been clicked and does not add it (despite clicking it multiple times).
Another thing my client does not like about this, is that when they forget what categories they have or what names of them are, they do not have any way of choosing them. It would be good if there was maybe a dropdown list or a select input
<select multiple="multiple"></select>
Has anyone had these issues before and if so how did they fix them?
Edit
Sorry forgot to mention I'm using Version 2.0.3.1 of OpenCart.
If your opencart is multi-language you can search only with the selected language in the admin area.
Empty category names in search means empty category name/title for the selected language.
Related
I am learning Wordpress currently so far I know how to design the webpage, but what I want to do next is to make a product page without ordering. What I want is the following:
List all my products and if one clicks on a product it will show the detail page of that product
The products can be added to a list and then there will be a contact form which will take the list and send it to me in a pdf or excel (but at first enough if only names are sent via email) so I can answer it with the asked question.
I sadly could not find any starting point I do not even know if there is such a plugin, if not can I make one myself? I know javascript so I think I could Programm it myself but would prefer if there is some plugin I can use due to time issues.
You can also use woocommerce. If you don't want a user to order something with a "Add to cart" button you could hide this button with your code or a pluging for example https://de.wordpress.org/plugins/yith-woocommerce-catalog-mode/
I am trying to create a webpart in Sharepoint online, that, works like a advance filtering.
Functionality of the webpart:
This app will show advance filtering options
For example:
they can choose: Category[column name], File type [doc, ppt], file name so on
I know there is default filtering options on sharepoint list. However, my effort is to make this advance filtering webpart appear on top of the list and choose filtering options instead of going to list setting and apply filtering.
This will have many options which are not in the default list filtering options.
User can save the this filter for later use.
My question is:
Is it programmatically possible to apply filters, with, my own filtering options? [Sharepoint online webpart, hence, using JavaScript]
If so, kindly give me some idea. Since, Sharepoint online development is pretty new. I am running short of useful documentation.
I am trying to pass to variable from a form select but I am running into issues.
How do I accomplish sending the catSubcat, value, and more variables. I have tried so many different things.
Update: I have created the jsfiddle below. I kinda have to be vague due to security here.
With the example html you will see category (DA, DC, etc..), multi acct code(M02 or M03 based on the amount), multi name (Bundle). For testing the clients can make up the inputs to do their testing. Once I receive the code from the other department I have to hide all the inputs except the products, but they will populate into a hidden field.
How it is supposed to work: A user goes to the account page and selects however many and whatever account. Based on their selections the category, multi code and multi name will be passed through the submit to another page and submit all the variables.
Not my code and I cannot change it due to the other departments requirements.
<https://jsfiddle.net/jm1w6ycv/2/>
I sell a tremendous number of products that require finance of one kind or another. I also use 8 different lending sources for financing. Problem is that each lender works with certain product types and ages, etc. I can not use a generic application form due to the differences in each lenders requirements. I have added APPLY NOW Button(s) to each individual product but cannot use simple "goto" link.
Example(s):
Customer 1 views product ID#20, unit is 20 years old and only one particular lender will work.
Customer 2 views product ID#55, unit is brand new and all will work with it, but I send all new products to one lender in particular.
Apply Now Button is always the same image, but I need for the button to open the application page specific to that product, and auto fill the input fields such as Vendor Name, Product Name and Description, Price, Etc as most customers are unfortunately lazy and simply won't do that once they have been taken away from the product page. I figure I will need to code the button individually based on individual products to open the correct application, but want all to fill in the information. All items for AutoFill are stored in the Store Database as well as the Vendor (Store) Info.
Maybe I am in the wrong area or simply missed the answer somewhere else, but I am getting snow blind trying to find the answers...even a point in the right direction would help.
It sounds to me like you need to link the product with a lender type, this would make it easier to grab lander data and auto populate the form fields when the page loads. This way you would not need to change the "Apply Now" link.
In short I would suggest creating a link table between product/product type to the lender table.
I’m looking for an AJAX-enabled combo box with the following features:
The combo box accepts entries selected from a drop-down as well as free-form text entered by the user (kind of like the text field used to enter tags for StackOverflow questions)
The drop-down list contains a limited number (less than 10) of suggestions based on what the user typed so far
The suggestions are pulled from a primary list and a secondary list. The secondary list is consulted if the user’s input cannot be matched to anything in the primary list. Both lists are generated on demand by my application running on the server.
Any suggestions?
jQuery-ui has an autocomplete plugin that offers this functionality.