by Garth | Nov 9, 2022 | PHP
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.php [NC,L]
by Garth | Oct 19, 2022 | Flutter and Dart
Find the info.plist fileAnd add the following : <key>NSPhotoLibraryUsageDescription</key> <string>App needs access to photo lib for profile images</string> <key>NSCameraUsageDescription</key> <string>To capture profile photo please grant camera...
by Garth | Oct 11, 2022 | Plugins
Easy HTTPS Redirection...
by Garth | Oct 8, 2022 | MetaBox
############################################################################ // Registration Form Custom Fields Configured Here add_filter( ‘rwmb_meta_boxes’, ‘registration’ ); function registration( $meta_boxes ) { $meta_boxes[] = [...
by Garth | Oct 5, 2022 | Javascript, Vue JS
axios.post(‘/your-url-or-api-destination’, payload) .then((response) => { // Show Success Message this.$bvToast.toast(‘Terms and Conditions Saved’, { title: ‘Success’, variant: ‘success’, solid: true }); })...