Davood Denavi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help with Profile FieldsSounds like you are wanting to add a field to the user profile and have that be only visible to paying members.
You will probably need to look at premium plugins to do this. A couple you might consider include Ultimate Member (which has a free version in the repository) https://ww.wp.xz.cn/plugins/ultimate-member/ and ACF https://www.advancedcustomfields.com/.
Hope this gets you headed in the correct direction.
Forum: Fixing WordPress
In reply to: Remove Buttons and actionBe careful using CSS to fix something like this because it could break on an update if the theme developer changes the classes. I’ve had that happen before and then had extra CSS laying around that was not being used and had to install an old version of the theme to figure out what to delete from my custom css.
Forum: Localhost Installs
In reply to: Can’t Access Admin Dashboard / Login@toristutzman, Glad you figured it out. Sorry I was not able to help much.
Forum: Fixing WordPress
In reply to: How to authenticate plugins on our serversWell, this is more of a question for https://wordpress.stackexchange.com/ than it is here. You wont get much help with things like this here on wp.org. This forum is meant for support with the core code that is provided through the download section of this site and the plugins/themes provided in the repository. We are a volunteer based forum. Sorry I could not be of more help.
Forum: Localhost Installs
In reply to: Can’t Access Admin Dashboard / LoginI personally do not use MAMP any more and have not in years. I just use a portion of the server I pay monthly for to work on my development sites. I’m sure someone else who volunteers here in the forums will be able to help you though, sorry for the delay. I will draw the attention of some others to this to see if someone has any input.
Forum: Networking WordPress
In reply to: The requested URL /wp-admin/ was not found on this server.You might be getting the security errors due to the fact that the url you are using in the database not having the s after the http.
Forum: Developing with WordPress
In reply to: Error including img in a php fileProbably not wrong syntax, just that you have your image code placed in the file incorrectly. It’d be easier for us to help you if you share the exact error and also your exact single.php code. You can share the code using a service like pastebin.com.
Forum: Fixing WordPress
In reply to: How to make two column for Related PostI’d suggest looking at the Lightweight Grid Columns plugin: https://ww.wp.xz.cn/plugins/lightweight-grid-columns/
Also, check out wp show posts: https://ww.wp.xz.cn/plugins/wp-show-posts/
With those two plugins you should be able to accomplish what you are trying to do much easier. You may only need the first one depending how you go about it.
Hope this helps.
Forum: Fixing WordPress
In reply to: Remove Buttons and actionThis is a question for your themes developer. You can contact them here: https://extendthemes.com/empowerwp/#support
Forum: Fixing WordPress
In reply to: Menu Issue/Custom Link/sub item/sub itemThis is a styling issue within your theme. Your best bet would be to contact the theme developer about the issue. You can do so here: https://themeforest.net/item/woffice-intranetextranet-wordpress-theme/11671924/support
Forum: Fixing WordPress
In reply to: 301 Redirects InquiryI would put 301 redirects directly in the HTACCESS file.. Using a plugin usually stores them in the database and causes them to work a bit on the slower side since the database has to be called to find the correct url to forward it to. Also, when using a plugin the redirects can break whenever that plugin releases an updated version. All of that said, I am not sure if YOAST SEO stores them in the database or writes them to the HTACCESS file for you, most of the plugins that exist specifically for creating redirects do write them to the database though so I am guessing YOAST does too.
Forum: Networking WordPress
In reply to: The requested URL /wp-admin/ was not found on this server.I asked you to please share what the prefix is. Rather than changing the prefix, I’d suggest changing the prefix back to what it was in the wp-config.php file and changing the url in the options table with that prefix.
Forum: Fixing WordPress
In reply to: Issue with Google Search ConsoleI’m not sure about the google issue.
As for the speed issue I’d suggest looking into using a cdn such as cloudflare, not a plugin.
Forum: Networking WordPress
In reply to: The requested URL /wp-admin/ was not found on this server.My apologies, I missed that you said there were two tables in the original post.
Forum: Networking WordPress
In reply to: The requested URL /wp-admin/ was not found on this server.Okay, you need to check your wp-config.php file to see which table is the correct one.
DO NOT share a screenshot of this file.You are looking for a line that looks something like this
$table_prefix = 'wp_';
It should be around line 66.Let me know what the prefix is then I will attempt to help you based on the screenshots.