This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Login Style | |
Version: 0.1-alpha | |
Description: Styling for the login screen | |
Author: Your Name | |
Author URI: Your URL | |
Plugin URI: Your URL | |
Text Domain: Your Text Domain | |
Domain Path: /languages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Plugin Name: My Custom Login | |
Version: 0.1-alpha | |
Description: Restrics page login | |
Author: Your Name | |
Author URI: Your URL | |
Plugin URI: Your URL | |
Text Domain: Your Text Domain | |
Domain Path: /languages | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+/* Moving the arrows on the slider */ | |
+.fl-post-carousel-navigation .carousel-next .fl-post-carousel-svg-container { | |
+ left: 50px; | |
+} | |
+.fl-post-carousel-navigation .carousel-prev .fl-post-carousel-svg-container { | |
+ right: 50px; | |
+} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Styles for the galleries single */ | |
/* taking away the pointer action on the gallery on the about us page */ | |
.fl-post-carousel-gallery .fl-post-carousel-link { | |
pointer-events: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Gallery custom post type | |
*/ | |
function register_custom_post_type() { | |
$labels = [ | |
'name' => 'Galleries', | |
'singular_name' => 'Gallery', | |
'add_new' => 'Add New', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
echo "Restore Privacy" | |
curl -sSL https://fix-macosx.com/fix-macosx.py | python | |
echo "Installing xcode" | |
xcode-select --install | |
wait | |
echo "Installing Homebrew" | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |