Morteza Khaki
Forum Replies Created
-
Same problem here.
Forum: Fixing WordPress
In reply to: Customer Login Form…Once you active the plugin, create a page and write some description (just like the existing form) then put plugin’s shortcode in it. You can change style by adding CSS to the form which I don’t think it’s necessary and if you persist in doing that, an expert must help you.
Forum: Fixing WordPress
In reply to: Customer Login Form…Maybe this could help:
Forum: Fixing WordPress
In reply to: Text FormattingCould you please take an screenshot of your page so we can understand it better?
Forum: Fixing WordPress
In reply to: Adding a class to every user linkWhat kind of class? If you are talking about CSS class, you can add it simply by javascript.
https://stackoverflow.com/questions/507138/how-do-i-add-a-class-to-a-given-elementor
You can apply CSS class directly to the link:
<?php global $current_user; get_currentuserinfo(); $current_user_url = $current_user->$user_url; ?> <a class="put-your-class" href="<?php echo $current_user_url; ?>">Website</a>
Forum: Fixing WordPress
In reply to: htaccess and 404 errorsThe structure wont broke anything but it’s still a bit ugly ??
Maybe these could help:
Forum: Fixing WordPress
In reply to: htaccess and 404 errorsAre you using a SEO plugin like All in One SEO or something else?
Try to deactive all plugins and switch your theme to default then try.If above didn’t help you, put “index.php” at the start of your custom permalink structure, for example:
/index.php/%postname%/
Forum: Fixing WordPress
In reply to: WordPress site has very long load time1- I didn’t work with Wp Super Cache but W3 Total Cache has many tools like minify HTML, CSS, JS and Gzipping HTTP which can help speeding up.
2- Google Webmasters registration has nothing to do with the speed of your website but you may face SEO problems. Add www to your address by going to Settings->General.
Forum: Fixing WordPress
In reply to: WordPress site has very long load timeHave you tried a cache plugin like:
Forum: Fixing WordPress
In reply to: htaccess and 404 errors.htaccess is a configuration file for use on web servers running the Apache Web Server software. When a .htaccess file is placed in a directory which is in turn ‘loaded via the Apache Web Server’, then the .htaccess file is detected and executed by the Apache Web Server software.
WordPress Pretty Permalinks use .htaccess to do the job. As you are running Lamp Stack, your web server software is Apache so you can use .htaccess with no difficulty but you need to check if mod_rewrite module installed.Please switch your global Permalinks to default and paste your .htaccess here. Then switch it to Post Name and paste the .htaccess again. I need these two so I can make sure you have no .htaccess Generation Issues.
Forum: Fixing WordPress
In reply to: Wp-admin works, site doesn'tTry to deactive all plugins one by one and switch your theme to default theme. If it doesn’t help let us know.
Forum: Fixing WordPress
In reply to: htaccess and 404 errorsMake sure your htaccess is working properly.
You can use a redirection for a test:Forum: Fixing WordPress
In reply to: disable robots.txtTry to manually check by going to:
https:// your – website.com/robots.txtRobots.txt is discoverable through web browsers. If you dont want to use it, simply go to your web root and delete it.
Forum: Fixing WordPress
In reply to: display-posts giving error >200 posts per pageThe structure of the Query is so important. I’m not sure which plugin or theme you are using. So if you believe it is a theme problem and if it’s a commercial theme or plugin, then the theme or plugin seller is in charge of supporting it in case of problems or questions.
Forum: Fixing WordPress
In reply to: pictures won't uploadAlso check you have empty disk space on your server or not.