Is there a way I can add a WordPress plugin to my hand coded HTML site? - wordpress

I want to use the 'Ultimate member' WordPress plugin since building that kind of system is a bit tedious.

Unfortunately, no.
As others have pointed out, plugins rely heavily on Wordpress' architecture and functionality for their own functionality.
You may be able to find a service which offers an API for account creation and authentication, but chances are you'll be using custom content for your users, which you'll need a server-side language like PHP (used by Wordpress) for.
Wordpress really isn't too much of a pain to set up, and if you have all the HTML, CSS and JS files complete, you can throw it together in a few hours.
If playing around in WP code really is not for you, there's even plugins to do it for you. Just complete the "5 minute setup" and away you go.

Related

Is it ok to build an entire site with Advanced Custom Fields?

I'm creating a new site in Wordpress and found out this plugin is very powerfull and ended up creating customs fields for almost every part of the website, I've even placed WYSIWYG editors instead of built in ones because it's easier for me to code my templates.
Is it ok to build an entire site with Advanced Custom Fields or it may become an issue in the future?
Since the webpage is based on static products data, WP or plugins updates will rarely be needed.
Is it ok to build an entire site with Advanced Custom Fields
IMO
It is "ok" to build an entire site with a plugin, but would I recommend it? probably not.
The only reason is because you never know what might happen to your site, if you install a "bad" plugin that breaks ACF plugin.
Or let say for some odd reason they stop providing support for ACF or updating it for whatever reason.
I've seen a lot of apps that have a good support system die out or get bought up by conglomerate companies and they stop public development and support.
WP or plugins updates will rarely be needed.
Regardless you should keep updating your wordpress to current versions, you never know about a security exploits people find, wordpress core dev push out new versions to battle those exploits.
This can apply to plugins as well.
Personally
I like to build things myself without the reliance on plugins in general.
That way I only have the tools that I need, instead of extras that a plugin may come with.
Sometimes a few lines of code can go a long way instead of depending on plugins that may have thousands of lines of code.
Let alone wordpress has a lot of native options baked in that you can rely on or extend as opposed to relying heavily on ACF or any other plugin.

Which CMS should I use when I hand a website over to my non-techie friend?

I'm designing a simple website for a friend - four static pages to advertise a yoga retreat she is running. I have a couple of requirements:
My time is short; I want to quickly build a theme template.
She has no technical skills; she wants to log in to the backend and update page content.
Working for myself, a static site builder such as nanoc or jekyll would be ideal: I can build a template.html with room for some content, then update content files, rebuild the site and redeploy. As a bonus, the whole site could be hosted free on GitHub pages. This satisfies requirement (1) but not requirement (2).
I've also considered Wordpress, because I've got plenty of experience running WP sites and developing custom themes. This satisfies requirement (2) but not (1). There is simply too much development overhead building a WP theme - it is not straightforward to modify the markup structure of all those template files, and there are plenty of snags involving ugly page titles or "Comments are disabled" strings which need to be removed.
It shouldn't be this difficult. I want a site engine which has a simple template.html file for easy re-theming, and an accessible backend for content changes. Bonus points if free hosting is available somewhere.
Perch - http://www.grabaperch.com - is made for this sort of thing, though it's not free (£).
Could you hack a site together using tumblr pages?
What about Google Sites? Dead simple.
If you're open to .NET i think you should look at n2cms.
WordPress using a premium theme bought in any of the many sites offering quite nice themes for a reasonable price (60 USD). Then, you just change the logo and ready to go.
Since I'm not a web designer myself, this is what I´ve done myself for my sites and I´m quite happy with the results

How to add custom functionality to WordPress

I am developing a website on the WordPress platform and this is my first time using WordPress.
WordPress offers an estimate of 20% of the entire project scope, this means I have to write code for the remaining 80%
My question is how do I extend the WordPress platform to provide the functionality I require?
Thanks for your responses in advance
Pls remember am a newbie! will appreciate clear and detailed responses
Thanks
It really depends on what you're attempting to achieve, but a good first port of call would be to immerse yourself the details in plug-ins (specifically the "Writing a Plugin" section) and the Plugin API, as this is the easiest way to extend WordPress using the wide variety of hooks that the API provides.
However, it's also quite likely that at least some of the functionality you require has already be created as a 3rd party plug-in, so I thorough check of the currently available plug-ins would most likely pay dividends.
Wordpress has support for plug-ins. Additionally, it's all PHP scripts, so you can modify the core system as needed; however I would highly recommend that you only use plug-ins to extend functionality, as by changing the core system you won't be able to apply security updates.
For more information on plug-ins, read the Wordpress codex, which also contains detailed documentation on all functions available.
In addition to Plugins, which other users have already mentioned as a way to extend Wordpress functionality, you should read about the concept of Child Themes.
Themes in general make up the appearance and some functionality of your Wordpress site. For making your own theme, which you will be doing, it is a good idea to start off with an existing theme and build upon it. The standard Wordpress theme Twentyten is a great starting point, where many issues have already been taken care of.
The changes you add can be pure CSS restyling or much more complex additions.

Etherpad and Wordpress, possible?

I recently stumbled upon Etherpad, it's a collaborative writing tool
http://code.google.com/p/etherpad/ - main project page
online Examples:
http://piratepad.net/
http://ietherpad.com/
http://typewith.me/
I want to add this engine somehow to my wordpress and let people collaborate their posts,
I'm wondering if it has been done before and/or does it take more than
shared hosting (that is what I have) to do it [server capabilities or what-not] ?
In general, I think this is a complicated way to go about it. Also, Etherpad allows some very basic font formatting but no images and such things you might want to include in a blog. Instead I suggest looking for some Wordpress plugin for collaborative writing, and you might find something less "real-timey" but perhaps good enough.
Or if you really want to try with Etherpad:
Etherpad needs lots of memory (RAM) to run. A typical configuration is 1 GB, but it might be possible to get by on 128MB dedicated to Etherpad. This means you'll need at least 256MB in total for a first attempt. Your shared host also needs to have a Java server installed (typically Jetty) and some proxying server (typically nginx). All in all, you have some work ahead of you in just getting Etherpad up and running. After that, integrating into the Wordpress blog editor. If/how this can be done, I don't know. I'd probably do a client-side javascript-hack to get the Wordpress textarea or richtext editarea to update from the Etherpad readonly view, which is the only place where you can get the contents of a pad as more-or-less raw source text.
A simpler solution would be to just add an Etherpad page through an iFrame. See this post for example - http://www.knowledgepolicy.com/2010/02/embed-etherpad-into-blogpost-or-on-any.html
In theory it's possible to replace Wordpress' editor with an Etherpad Lite iFrame. Etherpad now allows image/font editing and table support as plugins.
Java is no longer required for Etherpad, NodeJS however is.
Here is a plugin that is in development that does what you want - however development seemed to stop in early 2012.
http://participad.org/ seems to be the best solution in this space to date. I haven't tested it on my own site, but they have an at least partially-working demo online.
Yes! It is possible. WordPress now has a plugin. The plugin has three modules which enables an Editor in dashboard and let you edit via front-end.
You can find more details on their FAQ page.

Joomla Blog/Wordpress Integration

I'm looking for a wordpress-like blog interface to put inside a Joomla hosted site. The admin interface of Joomla is quirky enough and hard enough to use that daily updates are infeasible.
What I am looking for is an easy-to-use posting interface that supports multiple users with different accounts/names, a tagging scheme, and easy find by date/user/tag functionality.
In particular I'm looking for a relatively easy-to-deploy, out-of-the-box solution, and would prefer not to hack rss feeds together or write too much custom code. I know there are several extensions out there but they all receive largely mixed reviews... Has anyone used any of these? Or has anyone had experience putting something like this together?
Well you could do this - have a wordpress installation. Get the users to post there and then use the RSS feed from it (or the XML RPC Blogging API) to update the Joomla installation. You will have to write the update piece once, but then all the headache is gone.
I'm not trying to be smart here, but if the admin interface of Joomla isn't working for you, aren't you doing yourself a disservice by trying to patch their UI instead of spending your time looking for a CMS that is easier to manage/a better fit for your user base?
Edit: All of the CMS's I've dealt with in ASP.NET are homegrown. However I'm looking into checking out Umbraco based on the recommendations of two well-respected friends. In the case you presented where you already have content in Joomla and a migration out to another CMS is going to be overkill, I think that vaibhav has got it right. You should look into setting up Wordpress or some other blogging engine and then simply have Joomla consume the content and display it in the Joomla site. I've not done it, but from what I remember of Joomla when I was looking at it, I believe that it would support this.
After doing a bit more research I decided to go with the open source MojoBlog. It was quite easy to install and configure and after a few stalls and hang ups that were resolved via perusal of their forums I was up and running. The edit interface is not ideal but it much better than Joomla admin, and it has multi-user-support, tag categorization, modules for viewing by tag, date, etc. Think it will suffice for my needs in the short term.
We at 'corePHP' have successfully integrated the WordPress and WordPress Multi-User blogging platforms into Joomla!. Please visit us to see what these feature-rich components have to offer you. https://www.corephp.com/wordpress/wordpress-integration-for-joomla-1.5.html
Happy Blogging,
Michael Pignataro
VP of Operations
www.corephp.com

Resources