Is a very simple theme secure enough?

If you follow the guidelines of the Codex for Themes (start here: https://codex.wordpress.org/Theme_Development ), and ensure that any user-supplied input (if any) is sanitized, then a theme will be secure. This also assumes that you have done basic security on your install. For instance: strong passwords on all accounts create an admin account without the … Read more

Hi everybody, I have a problem of search box

It must be in the included in the code somewhere. Most search forms will have a search.php or some other variation of that name if it is a custom search (located in the root of your theme). **EDIT: ** off the back of our short conversation below. You have used WooCommerce to arrange your products. … Read more

WordPress 5.1 upgrade has lost the parent theme JavaScript

I traced this back to the name of the scripts.js JavaScript file. My parent theme (BeTheme) enqueues the main scripts.js like this: wp_enqueue_script(‘mfn-scripts’, get_theme_file_uri(‘/js/scripts.js’), array(‘jquery’), MFN_THEME_VERSION, true); In my child theme crmpiccodotcom/footer.php I enqueue the scripts.js like this: // include the crmpiccodotcom child theme JavaScript add_action(‘wp_enqueue_scripts’, ‘crmpiccodotcom_enqueue_scripts’); function crmpiccodotcom_enqueue_scripts() { wp_enqueue_script( ‘custom-script’, CHILD_THEME_URI. ‘/js/scripts.js’, array(‘jquery’) … Read more

Posts as filtered list – expandable

The website you linked to appears to be using the Bootstrap framework in their theme design (based on what I saw from their source code). You can learn more about Bootstrap from their official website and use it to create a similar/identical theme or you could pick and choose whatever specific feature you like. For … Read more

Re-zipping or extracting theme from wordpress site files

The easiest way to do this is to upload them using FTP. You can use a free program like Filezilla to upload your files to your server. You will need to know the host name (usually just your domain), user and password. If you don’t know this info your hosting company will be able to … Read more

Download Themes From LocalHost WordPress Site [closed]

Probably your local FTP service is not running. You can verify this by trying to connect to the local FTP server at the command prompt: ftp localserver and it will ask for your credentials. Also possible is that ‘localserver’ is not being resolved locally. You can check that with a command nslookup localserver And seeing … Read more