Loading...
Answers
MenuWhat's the most efficient way to organize WordPress files?
Here's the issue that I'm sure many of you would agree with. I have a massive amount of folders and my memory recall simply can't remember the name of these plugins, just the function i need.
What tools, or system do you recommend to tag these folders like a bookmarking system to easily search in a single location. Is there a evernote like app for this?
Answers
I'm not sure of an app specifically designed for tagging, but if you use something like Sublime Text there's a fuzzy search as well as a "find in folder" search that would allow you to search all files contained in a project for the function name. I've had similar problems where I know what I need, but I can't remember the file name; Sublime Text solved that for me.
Good luck!
In terms of physical files (WordPress core or plugins), the core setup of a WordPress project is straightforward:
- The project root contains wp-admin, wp-includes, wp-content, and the main core files.
- wp-content/ contains your custom code - themes, plugins, uploads, backups, whatever be it.
- uploads/ are grouped by years and months (for better accessibility).
If you're struggling with the search itself, make sure you're not overcomplicating your product with dozens of random plugins that you don't need. Keep it simple. Each plugin has its own purpose, which makes it easier to find the right function or class.
Using a professional IDE like PhpStorm, Eclipse, Netbeans will help you search thoroughly. On Mac/Linux, you can study grep or ack and craft complex search queries for whatever you need (including pipelines of stacked commands).
In terms of your media uploads, there are plugins that let you organize the media in a sensible manner. If you've integrated with AWS S3, creating buckets for certain files may be a better approach, too.
A great plugin you can use is Folders by Premio (https://premio.io/downloads/folders/).
If you're looking for any specific WordPress help, do reach out or visit - https://visualwebz.
Specifically https://visualwebz.com/seattle-wordpress-designer/
Good luck!
Related Questions
-
Can a WordPress site be converted into an iOS app?
Be careful when simply wrapping things into a mobile app. This can backfire on you and you could be presented with some very harsh edge cases. PHP isn't going to be encapsulated so much as the HTML/CSS/JavaScript. So keep in mind your mobile application could likely be in a position of requiring an online connection to work (because it must interface with your existing hosted WordPress site). This could also mean your hosting solution needs to be evaluated to ensure you can handle any increased traffic (and those traffic patterns could be different when coming from a mobile app that perhaps loads things the user doesn't see right away, accesses content that may not be cached, etc.). You want to ensure your server doesn't go down because then your mobile app would be "down" as well. That said... Things like Phonegap (web views) are a wonderful idea for utility apps because the performance is good enough for those (and hey even some games) and they end up being easily ported across many mobile operating systems. I would look into Phonegap, Appgyver (a new and totally awesome one because parts of it will utilize the native OS and your app will feel more responsive), Appcelerator Titanium, and perhaps even the new Famo.us one. Also take a look at the Ionic Framework for some further ideas about mobile UI and what you can do with these web view style apps.TM
-
Where to find quality graphic and web design leads?
If you are going to use Social Media Marketing. I would recommend you create a Pinterest wall of your work and back link them to your site. Try that.BK
-
How much should I charge to develop a WordPress site?
Take the # of hours it takes you to do it and charge $50/hour. That's the price. Eventually you can charge $100/hour but that will require a bigger customer. If the customer is small < $1M in gross sales per year - charge $50/hour If the customer id medium < $1-5M / sales - charge $75 Over $5M - charge $100 The challenge you'll face is clearly defining the expectations and handoff so that you're not stuck doing stuff that you can charge for and always getting interrupted from past customers.DM
-
Is it possible in woocommerce to display Shipping methods first on the checkout page?
Yes. https://docs.woothemes.com/document/configuring-woocommerce-settings/SN
-
How can I create a searchable large (3 million record) searchable database in WordPress?
Well first off I wouldn't recommend trying to power your client's database with the standard WordPress database instance. They can use WordPress for the website all they like. But with millions of records like that, you really don't want to move those data in with WordPress. For that matter, you're probably gonna want a dedicated database server to answer those questions, if the client doesn't already have one. You might also need to investigate something like Elastic Search, depending on what your search requirements are and what sort of database they are using (pay close attention to whether or not it provides full text search ability). Beyond that, and somewhat obviously, you're also gonna want SSL on the website and to make sure you're up to date on federal and state privacy requirements for data like this, as well as best practices for securely transferring data over the web (port configuration, ssh keys, etc). The privacy concerns would raise a flag for me. If those data have anything personally identifiable in them - which they very probably do - then you're really gonna want to make sure you do your research on security of personally identifiable information. Government specific privacy /security /auditability requirements may also apply, so double check that too.EV
the startups.com platform
Copyright © 2025 Startups.com. All rights reserved.