w1nk5
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Cannot move between website dashboards in Multisite.Could not resolve issue. Used different plugin instead.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Cannot move between website dashboards in Multisite.Thanks, I’ll give it a shot!
Forum: Networking WordPress
In reply to: Cannot enter website's Dashboards from within Back-End.Awesome, I appreciate that!
Thanks for your help.
Forum: Networking WordPress
In reply to: Cannot enter website's Dashboards from within Back-End.I am not using W3TC. However, I am using WordPress HTTPS which seems to be the culprit. Any ideas on how to get these to play nice together?
Forum: Networking WordPress
In reply to: Registration has been disabled.I actually don’t have the noblogredirect in Website 1, however, adding noblogredirect to Website 2 did resolve the issue.
Thanks 🙂
Forum: Networking WordPress
In reply to: Adding Site = White PageI moved it to our online development server and it worked.
Forum: Fixing WordPress
In reply to: Top-Level Pages ignoring page.php and using index.phpI had registered a taxonomy named ‘year’ for a custom post type I had set up. While this post type was set up it would make all top-level pages ignore the page.php template file and use the index.php after any thing was done in the admin (Save a Page, update a setting, etc.). I simply changed the id of the taxonomy from year to vehicle_year and this resolved the issue.
Cheers
Forum: Fixing WordPress
In reply to: Top-Level Pages ignoring page.php and using index.phpAll pages are set to use the default template. There actually aren’t any specialized page templates.
Forum: Fixing WordPress
In reply to: Remove admin_bar?The code above will stop the admin bar from loading when WordPress is initializing.
Forum: Fixing WordPress
In reply to: Remove admin_bar?You can remove the admin bar via your profile settings in the backend or you can add the following code to your functions.php.
/* * Remove the admin bar and admin bar settings */ add_action( 'init', 'disable_admin_bar' , 9 ); function disable_admin_bar() { // Hide Admin Bar add_filter( 'show_admin_bar', '__return_false' ); add_action( 'admin_print_scripts-profile.php', 'hide_admin_bar_settings' ); }Forum: Themes and Templates
In reply to: [Pilcrow] [Theme: Pilcrow] Need to lower submenuIn your style.css you will see this on line 472.
#nav ul ul { box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2); display: none; float: left; left: 0; position: absolute; top: 42px; width: 180px; z-index: 99999; }Try changing “top: 42px;” to a larger number and see if that helps. If it does, play with it until you have it where you want it.
Forum: Fixing WordPress
In reply to: My Embeded Calendar is Missing part of the FrameYour second link has a border applied to the iframe and the iframe on your website does not. You will need apply a border to your iframe via CSS to make it appear the same.
Forum: Fixing WordPress
In reply to: Email Admin when user logs in.I have tried to explain this all to my client. His website is a classified system and you require membership inorder to view the price and what not. He wants to track their login inorder to use as a lead and perhaps contact them.
Maybe I can build something in the backend that simply displays login activity.
Forum: Networking WordPress
In reply to: Custom Password at New Site SetupThanks Andrea. I will look into this. If I find a solution I’ll be sure to post it here.
Cheers 🙂
Forum: Networking WordPress
In reply to: Custom Password at New Site SetupThe Network administrator will be setting up all the sites within the network and my client wants to give them easier to remember passwords. If the admin can choose the password while setting up the new site, it save a lot of time as there are 150 – 200 sites that need to be set up. Each new site will have a different password.
Nobody will be signing up themselves, the user account is auto generated when the Network Admin sets up their new site.
Thanks guys.