teamdoc
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] AMP Markup missing or incorrectDisable all plugins except amp and try again using https://search.google.com/search-console/amp?utm_source=wmx&utm_medium=link&utm_campaign=wmx-agg&id=33aEwUEyWkxV_uu0XnfpUg
Also, if you already put any codes inside amp plugin advanced area, remove thats all before validating.
Forum: Fixing WordPress
In reply to: Visual editor freezes on text highlightIssue is serious. WordPress admins, pl take a look. Latest update need to be cancelled or do the needful urgently in connection to the Visual editor working/Cache.
hi
I have created a title displaying short code by using PHP code plugin
<?php the_title(); ?>and generated [php snippet=1]. I have inserted this inside the “address” cell of plugin’s widget, but not working. Website is:http://pincode.codedb.in/uttar-sautanchak-nandakumar-east-midnapore-west-bengal-721649. Hope you help.Forum: Fixing WordPress
In reply to: Disabling wp-loginBetter is to protect website with server level access permission on wp-login.php file. Or you can use Login lockdown plugin.
Forum: Fixing WordPress
In reply to: changing font size forpage titleYou need to edit this link: http://www.illimit.com/wp-content/themes/twentythirteen/style.css?ver=2013-07-18
You can go here: go to WordPress Dashboard -> then go to
http://www.illimit.com/wp-admin/theme-editor.phpyou can see style.css -> then find the font size of .entry-title
Change your font size there:
h1 {font-size: 40px;
margin: 33px 0;}Forum: Fixing WordPress
In reply to: Unable to create directory wp-content/uploads/2015/01You need to contact your hosting provider. Probably it is permission issue. They will fix it..
Forum: Fixing WordPress
In reply to: Forbidden Error. Please helpGo to your cpanel -> Go to File Manager -> Go to Public_html folder -> you can see a file named .htaccess just edit it, then delete content already have, add below code:
# 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 WordPressthen save it.