Davood Denavi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: nothing work to get rid of the p tagsAll themes have padding or margin on the p tags…. they need to in order to make the site look good across all devices. In fact, all websites (even non-wordpress ones) have the padding or margin if they are designed/programmed/built correctly.
The amount of padding or margin can be changed using Custom CSS. However, since you are using a theme from WPBakery or the page builder you need to contact their support community. This is the general support community for core wp code that can be downloaded here on WP.org. You can contact WPBakery support here: https://support.wpbakery.com/.
Forum: Fixing WordPress
In reply to: nothing work to get rid of the p tagsThat is relevant because the p tags are added no matter what you are using even if you build the site using solid html you need p tags or div tags to style the content correctly.
child themes allow you to remove a few of the auto generated p tags but even them they will still be added for the most part because else the webpage will look like a text document and be very unfriendly to look at.
Forum: Fixing WordPress
In reply to: Page loads only properly after reloadGlad you found a solution. You still might want to notify the theme developer of the issue you had and the fix you used just to be sure it does not happen again on a future update.
Forum: Fixing WordPress
In reply to: Page loads only properly after reloadChances are this is an issue with your theme and you are using a premium theme. So, you will need to contact the theme developer for support with this you can do so by going to https://helpcenter.qodeinteractive.com/hc/en-us.
Forum: Fixing WordPress
In reply to: Page update not showingAre you using a page builder plugin such as Beaver Builder? What theme are you using? This might actually be a question for the theme’s support community but without knowing exactly which theme you are using it will be hard for volunteers like myself to actually provide solid support and help you fix the issue.
Forum: Everything else WordPress
In reply to: All roads lead to homepage!@alanfuller You’re right. I forgot about the OP being unable to use the dashboard.
@charic Due to what Alan pointed out you may have no choice other than to do what I suggested in my earlier post and dig through the code to find what is causing this dashboard issue.
However, a few other things did come to mind.
1) You may have a “ghost” htaccess file in the wp_admin directory causing the issue. This was a problem I ran into about six months ago when we accidentally uploaded an updated htaccess file to the wp_admin directory once we deleted the htaccess from the wp_admin directory using the hosts interface (in our case cPanel file manager) the problem was solved.
2) The core wp files which should never be edited may have been damaged which would require you to upload them manually. If you do that you will need to make sure you are getting the files for the same version of your install and then upload them via FTP or your hosting providers interface.
3) Depending who your host is there might be a custom forwarder or cron job in their server hosting panel that is causing this issue. I had this happen once too where it was a custom forwarder added in cPanel’s forwarding feature that was not updating htaccess and still forwarding the admin area to the sites homepage.Forum: Everything else WordPress
In reply to: All roads lead to homepage!Ah yes, the rewrite flush suggested by Alan could work as well. However, in the case that it does not I would not deactivate plugins without using the Health Check & Troubleshooting plugin, https://ww.wp.xz.cn/plugins/health-check/, the benefit of using this plugin is it will only deactivate the plugin(s) for the admin who activates debug mode.
I hope you are able to get to the bottom of this and fix the problem.
Forum: Everything else WordPress
In reply to: All roads lead to homepage!You’ll need to do some digging in the theme and plugin code to rule out custom php being the problem. You also need to check the htaccess file as I mentioned the other day to be sure there’s nothing in that file causing it.
Forum: Fixing WordPress
In reply to: nothing work to get rid of the p tagsYou likely need to edit the page template php files in your theme and put the modified ones inside of a child theme to fix the problem you are having. Here is more info about child themes https://developer.ww.wp.xz.cn/themes/advanced-topics/child-themes/.
Page template php files can sometimes be found inside of plugins you are using as well as your theme. If you are editing any page template php files the code will still need to go in a child theme.
I hope this gets you headed in the correct direction.
Forum: Fixing WordPress
In reply to: WordPress – incorrect display of the page in googleAre you using a translations plugin such as WPML? Also, are you using an SEO plugin such as Yoast? If so this is likely caused by those plugins not syncing the settings correctly and you will need to talk to the support communities for those plugins to get to the bottom of the problem you are having and find a fix. You can do so here:
https://ww.wp.xz.cn/support/plugin/sitepress-multilingual-cms/
https://ww.wp.xz.cn/support/plugin/wordpress-seo/Forum: Developing with WordPress
In reply to: Custom field in customize-control-nav_menu-itemThis thread on Stack Overflow https://stackoverflow.com/questions/38201211/how-to-add-custom-fields-to-customize-menu-in-wordpress should help you get going in the correct direction. It discusses adding code to your themes functions.php file, you will need to do this using a Child Theme if you are not using a custom built theme. Learn more about how to build/use a Child Theme here: https://developer.ww.wp.xz.cn/themes/advanced-topics/child-themes/
I hope this helps get you going in the correct direction.
Forum: Everything else WordPress
In reply to: Plugin for reviewing usersYou will probably need to use a plugin like Ultimate Member paired with an addon or something like Advance Custom Fields (ACF)
https://ww.wp.xz.cn/plugins/ultimate-member/
https://ww.wp.xz.cn/plugins/advanced-custom-fields/Some custom code might be required to do what you are trying to do as well. If you are adding custom code you will need to be sure to use a Child Theme or your own custom built plugin.
https://developer.ww.wp.xz.cn/themes/advanced-topics/child-themes/
https://developer.ww.wp.xz.cn/plugins/Hope this helps get you headed in the correct direction.
Forum: Everything else WordPress
In reply to: Blog Layout Columns…If you are using the free version then you need to post in the support community for the free version as I stated earlier. https://ww.wp.xz.cn/support/theme/evolve/
That is where you will get the best and fastest support with the question you are asking.
Forum: Everything else WordPress
In reply to: Blog Layout Columns…Sounds to me like you are using a premium theme. You will need to contact the theme developer or their support community with this question. You can contact them here. https://theme4press.com/support-forum/
If you are using the free version of the theme you can contact the support community here: https://ww.wp.xz.cn/support/theme/evolve/
Forum: Fixing WordPress
In reply to: Footer disappeared after wp updateYes, if you are using a custom made theme then the files won’t be updated unless you or a developer update them manually. That said, I have only experienced the problem you are having with the footer disappearing twice and both times were with custom built themes that were originally built for much older versions of WordPress where the functions to the display footer were changed on an update. There was a third time where I ran into this problem but the website was using a plugin that caused a conflict after the update to the latest version of WP. I’d suggest using the Health Check and Troubleshooting plugin https://ww.wp.xz.cn/plugins/health-check/ to debug your site and see if there is a plugin conflicting with the updated version of WordPress.
Hope this helps.