Bloke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Media Library not displaying thumbnails – image is resized to 1pxLook at the code on the page that displays the gallery. So if there are any hard coded values for the image size. Maybe its a setting in the theme or plugin that would be an easy fix.
Forum: Fixing WordPress
In reply to: secure search with SSLIts best to have everything on SSL. Also if an images or anything is linked to “http:” instead it will through errors or make the green icon change.
Forum: Fixing WordPress
In reply to: Extremly slow and 502 Bad GatewayIs it on a dedicated server? How it hosted?
Forum: Fixing WordPress
In reply to: Icons and more displaying as SquaresMaybe it would be best to send a link to the exact section. I don’t see “next” and “previous” links.
Forum: Fixing WordPress
In reply to: how to add different menu's on different pages.Are you sure there no other menu location to choose from on your theme? If not its real easy to add support for more menus. And the horizontal vs. vertical is done with CSS.
Forum: Fixing WordPress
In reply to: Changing of linksMight be better to ask on the theme’s support page.
Forum: Themes and Templates
In reply to: Changing the default dashboard logoThanks that worked. I guess they changed the CSS and the other approach was not working.
Forum: Themes and Templates
In reply to: Changing the default dashboard logoThanks trying to avoid installing a plugin. I know functions are similar. Seems strange the last 5 tutorials show the same way to change it buy mine won’t work.
Forum: Fixing WordPress
In reply to: Hiding plugin menu from other usersFound a solution here. It also shows you how to debug the menu to remove any that are still showing. how-to-remove-admin-menu-pages-inserted-by-plugins
Forum: Fixing WordPress
In reply to: problem with rewrites on htacess fileThen where do you put your redirects for SEO? You have to make changes to it. The problem I have is I am getting this.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: Why child theme only works locallyI got it fixed. I had a lot of conflicting CSS and functions in my theme I forgot about.
Forum: Fixing WordPress
In reply to: Hiding plugin menu from other usersI prefer to get this code working. It worked for others.
function remove_menu() { global $wp_list_table; $hidearr = array('stop-spammer-registrations-plugin/stop-spammer-registrations-new.php'); $myplugins = $wp_list_table->items; foreach ($myplugins as $key => $val) { if (in_array($key,$hidearr)) { unset($wp_list_table->items[$key]); } } } add_action('pre_current_active_plugins', 'remove_menu');Forum: Localhost Installs
In reply to: Database connections failing on localhostThanks for your help. Maybe the data was there. From what recover there was only one of my four databases. I didn’t bother trying to recover it any other way but know I know. Strange it happened and also that it didn’t delete them all.
Forum: Fixing WordPress
In reply to: Hiding plugin menu from other usersWho is this user above? Moderators please remove. Thanks.
Forum: Localhost Installs
In reply to: Database connections failing on localhostWho is this user above? Moderators please remove. Thanks.