joy1212
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving WordPress from /public_html/ to /public_html/home/Hi,
You have already installed wordpress website or you are starting to built new one?
ThanksForum: Fixing WordPress
In reply to: no image content showing up on the home pageHi,
Just checked your website and found that image URL of your slider is wired. i think it is may be using timthumb like plugin library to resize image and that is not working.try to disable it and check again.
Thanks
Forum: Fixing WordPress
In reply to: local host has vanishedHi,
First of all you need to create backup of your database and then run
following queries to SQl panel in your server that will replace all
static url from local host to your live server.UPDATE wp_posts SET guid = replace(guid,'http://localhost/wordpress/', 'http://englishtraininglounge.com/');UPDATE wp_posts SET post_content = replace(post_content, 'http://localh ost/wordpress/', 'http://englishtraininglounge.com/');UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://localho st/wordpress/', 'http://englishtraininglounge.com/');- This reply was modified 9 years, 5 months ago by Jan Dembowski.
Forum: Fixing WordPress
In reply to: How to make Switch Desktop Version button on wordpress?Use this as a button
<a href="mywebsite.php?show_desktop_mode=true">I want desktop mode!</a>And insert following in header.php
<?php session_start(); if($_GET['show_desktop_mode'] == 'true') { $_SESSION['desktopmode'] = 'true'; } ?>After doing that, you have to change the viewport according to the
Sessionvalue by doing this in <head><?php if($_SESSION['desktopmode'] == 'true') { /* DESKTOP MODE */ ?> <meta name="viewport" content="width=1024"> <?php } else { // DEFAULT ?> <meta name="viewport" content="width=device-width, initial- scale=1.0"> <?php } ?>Forum: Themes and Templates
In reply to: How to setup a responsive theme?Hi,
the functionality you want is i think one page wordpress theme.
try by searching onepage wordpress theme
ThanksForum: Themes and Templates
In reply to: How to setup a responsive theme?Hi,
You have to buy that theme and install that theme on wordpress with
dummy data installation and than select one page demo as front page to
get look as you want.Thanks.
Forum: Fixing WordPress
In reply to: How do I translate error messages(login)?Hi,
you can do that using login_errors filter hook and here is how:add_filter('login_errors','login_error_message'); function login_error_message($error){ //check if that's the error you are looking for $pos = strpos($error, 'incorrect'); if (is_int($pos)) { //its the right error so you can overwrite it $error = "Wrong information"; } return $error; }OR by Plugin
https://ww.wp.xz.cn/plugins/custom-login-error-message/Thanks
Forum: Fixing WordPress
In reply to: Fatal errorHi,
Try attempting troubleshooting recommended here:
https://ww.wp.xz.cn/support/topic/fatal-error-after-wordpress-4-7-update/
Thanks- This reply was modified 9 years, 5 months ago by joy1212.
Forum: Fixing WordPress
In reply to: Erroneous Menu Item AppearingCan you check header.php file of your theme and check which hook
generate menu ?
if it is not from menu than it should be from code.
ThanksForum: Fixing WordPress
In reply to: Menu Links Go To Temp URLHi,
I can easily load http://mcxpressturbos.com/ with all menu items from my browser. So it is working and your browser cache might be causing those problems. You should try ctrl+f5 (mac+f5) from your browser to get it working from yourside.Thanks
Jignesh AakoliyaForum: Fixing WordPress
In reply to: Error loading websiteOk, try downloading WordPress again Access your server via SFTP or FTP, or a file manager in your hosting account’s control panel and delete. Then replace your copies of everything on the server except the wp-config.php file and the /wp-content/ directory with fresh copies from the download. This will effectively replace all of your core files without damaging your content and settings.
Thanks
Jignesh AakoliyaForum: Fixing WordPress
In reply to: Update image alt tags and titlesYou can use a WordPress plugin named SEO Friendly Images. It will automatically update all of your images with Title and ALT text for SEO. If your images don’t contain the title and alt tag, it will add them according to your setting.
You need to install the plugin. Just go to your WordPress Dashboard > Plugins > Add New and type ‘SEO Friendly Images’ on the search box. Click on ‘Install Now’ button.
Thanks
Forum: Fixing WordPress
In reply to: New htaccess file broke whole siteYou must delete all code from .htaccess except following code block to get your website working again.
# 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 WordPressThanks
JigneshkumarForum: Installing WordPress
In reply to: Install.php just displays the HTMLHi,
cPanel is a Linux-based web hosting control panel that provides a graphical interface of hosting a web site.
You can login to your cpanel by your hosting account or by going to http://yourdomain.com/cpanelthanks
Forum: Installing WordPress
In reply to: New to wordpressI recommend to look at https://codex.ww.wp.xz.cn/Getting_Started_with_WordPress
that page contain all requireddocument and steps to start with wordpress.
I can say you easyly develop site with help of that page only
there are so many other tutorial available also on web.
You can check following
tutorial websitesThanks