tim.vodien
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My PodBean embed code won't workHi,
I’ve tried your PodBean code and it is working. Did you add the embed code to your ‘Appearance’ > ‘Widget’? If not, then please follow the instructions in the link:
http://codex.wordpress.org/WordPress_Widgets
Hope this helps.
Forum: Fixing WordPress
In reply to: Allow username with dotsYou might want to try this by duplicating the ms-functions.php file, change the code in the duplicate file and rename the original to ‘ms-functions.php_’. Check if it will work and if not then you can delete the duplicate and restore the original file.
Forum: Fixing WordPress
In reply to: Twenty Fifteen Header to top across pageCan we have your link so that we can check the css?
Forum: Fixing WordPress
In reply to: I can't even find where to log on!Try
http://www.martinleegore.com/wp-admin
http://www.martinleegore.com/wp-login.phpCant find the spam advertisement in all your pages. It maybe a browser plugin virus. Try using a different browser to check if it still exist.
Forum: Fixing WordPress
In reply to: Allow username with dotsHi,
Basically you cannot have a dot with your login name for security reasons. However I found a wordpress article that can allow this.
https://wordpress.org/support/topic/usernames-with-dots-not-working?replies=6
modifying the function wpmu_validate_user_signup in /wp-includes/ms-functions.php in line 524 from
preg_match( '/[a-z0-9]+/', $user_name, $maybe ); to preg_match( '/[a-z0-9.]+/', $user_name, $maybe );Forum: Fixing WordPress
In reply to: WordPress Menu WidgetOkay. Good luck!
Forum: Fixing WordPress
In reply to: Fluttering Primary Nav Bar – TwentyFourteenChecked the CSS in your website and you should need to alter some codes to stop this fluttering effect.
Appearance > Editor > style.css >
.primary-navigation li {
border: 0 none;
display: block; (originally it is inline-block)
height: 48px;
line-height: 48px;
position: relative;
}However please note that any changes made to theme files will be lost when the theme is updated – much better to use Custom CSS.
Also, this code is only for the whole content page to stop fluttering. ‘Home’ menu is still the same.
Forum: Fixing WordPress
In reply to: WordPress Menu WidgetThe menus are working fine in my end, I also changed the zoom level of the website and it is still showing the submenu. Try to deactivate your theme, and if ever it is the reason for this issue then try to update it.
Forum: Fixing WordPress
In reply to: I cannot log into my site…Try using wp-login.php instead of wp-admin. Is it giving the same issue using Chrome, Firefox or Safari?
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin was not found on this server.Try to contact your host to further check your wordpress files.
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin was not found on this server.Do you already have this code in your .htaccess file?
AddType x-mapp-php5 .php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin was not found on this server.Everything is showing Error 404, Have you double check if the domain is pointing to the exact folder you just manually installed?
Forum: Fixing WordPress
In reply to: why search eng(google) is no longer picking up my siteThere are many factors about this matter. There maybe sites that have stronger keywords than you do. You might want to update your keywords. backlinks, You can also find some information on how you can make your website ‘search engine’ friendly in this link. http://www.thesitewizard.com/sitepromotion/reasons-website-not-ranking-in-search-engines.shtml
Forum: Fixing WordPress
In reply to: How to change the colour to the menu tabs and iconsYou’re welcome. Just change the color code ‘background: #000; ‘ you can check the code in http://html-color-codes.info/.
Let’s say for example you wish to have the blue color. just change the ‘#000’ to ‘#0101DF’.
Forum: Fixing WordPress
In reply to: How to change the colour to the menu tabs and iconsThanks @wpyogi ill take note of that