C# Return Methods

namespace Vidly.Controllers
{
    public class MoviesController : Controller
    {
        public ActionResult Random()
        {
            Movie movie = new Movie() { Name = "Shrek!" };

        // THE RETURN METHODS BELOW
            // return View(movie);
            // return Content("Hello World!");
            // return HttpNotFound();
            // return new EmptyResult();
            // return RedirectToAction("Index","Home", new { page = 1, sortby = "name"}); 
        }
    }
}

Add input on change delay

Simply add this line to the javascript as is, for whichever page or block and it will set a delay on the input fields onchange. It will apply to all your input fields.

Outsystems default onchange delay is 800 which can be annoying when typing and it resets your cursor back to the start of your text. This will delay that jump on the text cursor.

osOnChangeTimerDelay = 3000;

Add Script to WordPess Header

function my_custom_js() {
    echo '<script src="https://wchat.freshchat.com/js/widget.js"></script>';
}
// Add hook for admin <head></head>
add_action( 'admin_head', 'my_custom_js' );
// Add hook for front-end <head></head>
add_action( 'wp_head', 'my_custom_js' );

Remove Admin Menu Items

function remove_menus(){
  remove_menu_page( 'index.php' );                  //Dashboard
  remove_menu_page( 'edit.php' );                   //Posts
  remove_menu_page( 'upload.php' );                 //Media
  remove_menu_page( 'edit.php?post_type=page' );    //Pages
  remove_menu_page( 'edit-comments.php' );          //Comments
  remove_menu_page( 'themes.php' );                 //Appearance
  remove_menu_page( 'plugins.php' );                //Plugins
  remove_menu_page( 'users.php' );                  //Users
  remove_menu_page( 'tools.php' );                  //Tools
  remove_menu_page( 'options-general.php' );        //Settings 
}
add_action( 'admin_menu', 'remove_menus' );

Client Email Settings Template

I think these are all the settings you will need. Just pm me if you need some assistance. The names should match up ??
Host name : bladei876.jnb9.host-h.net
User Name: support@coverweb.co.za
Password : (Your Password)
Incoming server: mail.coverweb.co.za
Outgoing (SMTP) server: smtp.coverweb.co.za

Server PHP Memory Limits

When setting your domain php memory limit if your service provider does not give you a drop down or options for what PHP memory limits you can set. Here they are listed below.

16mb
32mb
64mb
72mb
96mb
128mb
160mb
192mb
224mb
256mb
320mb
384mb
448mb
512mb