News:

Looking for documentation? Take a look on our wiki

Main Menu

How to sort orders by city, or how to grab the clients from extact city

Started by kostianev, April 17, 2020, 16:45:43 PM

Previous topic - Next topic

kostianev

Hello,

I want to sort orders by City, or to take only Users/Clients from exact match city?
How can I do this? Is it possible?

I need their details, like emails, telephone and etc. from the order details.

GJC Web Design

do it directly in the DB

SELECT * FROM `#__virtuemart_order_userinfos` WHERE `city` LIKE 'Orlando'
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

kostianev

Is it possible to be done from Administrator panel, because we don`t hvae access to the MySQL. Only in administrator area.

GJC Web Design

not that I know of .. the code would need to be written to extend administrator/index.php?option=com_virtuemart&view=user
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

Studio 42

You can write a vmextended plugin to display a view in the back-end.
I use this many times for my customers. Eg
- To show registred user that never ordered products.
- To send emails to manufacturers when stock is low
- To display saved Vm carts
- To do specific CSV export
....

beltoforion

Quote from: Studio 42 on April 17, 2020, 23:14:16 PM
You can write a vmextended plugin to display a view in the back-end.
I use this many times for my customers. Eg
- To show registred user that never ordered products.
- To send emails to manufacturers when stock is low
- To display saved Vm carts
- To do specific CSV export
....

do you recommend any tutorial on creating plugins?
wanting to learn to create good templates


pinochico

Patrick:

very old documentation :) Is actually or existing new?

I thin, better is looking inide another existing plugin, but I dont know in which
www.minijoomla.org  - new portal for Joomla!, Virtuemart and other extensions
XML Easy Feeder - feeds for FB, GMC,.. from products, categories, orders, users, articles, acymailing subscribers and database table
Virtuemart Email Manager - customs email templates
Import products for Virtuemart - from CSV and XML
Rich Snippets - Google Structured Data
VirtueMart Products Extended - Slider with products, show Others bought, Products by CF ID and others filtering products

Studio 42

I dont have found a real one.
But if you inspect the admin virtuemart.php code, you know what to do.