Custom SINGLE page with custom metaboxes and custom template

Simlified function, maybe will help someone: jQuery(document).ready(function($) { $(“#page_template”).change(function() { if($(‘#page_template’).val() != ‘page-contacts.php’) { // show the meta box $(‘#postdivrich’).show(); } else { // hide your meta box $(‘#postdivrich’).hide(); } }).change(); }); Of course it lacks controls what fields will be submitted, because jQuery just hides them. As I am coding it for one-admin user … Read more

custom css in one page

#sidebarSubnav h3 is not letting your Custom CSS to work since it already contains !important for its style properties. Place your code below the above selectors or load the custom css file after the default stylesheet.

User profile in front-end

You need to do 2 different things to achieve this. URL Structure: Getting the URL in your desired format: http://website.com/user/username By default, user’s archive URL is something like this http://website.com/author/username There is a plugin to change author slug, install this plugin and set the slug to user Plugin: https://wordpress.org/plugins/rename-author-slug/ [Note: I’m the author of this … Read more

Split Page Links

Something like this should get you started. CSS: .home div { display: inline-block; width: 50%; } .home a { display: table-cell; text-align:center; vertical-align: middle; } HTML: <div class=”home”> <div><a href=”https://wordpress.stackexchange.com/questions/211091/site.com”><img src=”path-to-logo-1″></a></div> <div><a href=”site-two.com”><img src=”path-to-logo-2″></a></div> </div> If it’s literally a single page site that only links off to two other sites, setting up WordPress for it … Read more