Ketan Vyawahare
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: When i migrate my wordpress can’t load correctlyHi @suranga14 ,
It would be great if you could mention 2 things as follows:
- What issue you are facing
- What steps did you take to migrate this site
Looking forward to hearing from you!
Forum: Fixing WordPress
In reply to: Mouse Hover Colors – Going Crazy…Hi @money4you ,
Please find my responses below:
- This is the CSS code causing the issue. I will suggest to add your own Custom CSS using same selectors but add your CSS in footer.
@media (min-width: 1200px) #site-header-menu #site-navigation div.nav-menu > ul ul li:hover > a { /* background-color: #ffffff; */ /* color: #fff !important; */ }
Just Remove the ‘/*’ and ‘*/’ and then add your desired colors in place of ‘#ffffff’ and ‘#fff’.
- There are 2 different CSS being applied on input type submit. I will suggest to do the above step with following selector and with ‘!important’. Your problem will get solved.
input[type="submit'] { background-color: 'You desired color hashcode'; color: 'You desired color hashcode'; }
Please let me know your response.
Forum: Fixing WordPress
In reply to: can’t even get to login page – 500 internal server errorHi @meeshymee ,
We are seeing the login page from our end. Is the issue resolved?
Forum: Fixing WordPress
In reply to: where has ‘add file’ option gone from block in post?Hi @stevepdfprob ,
Please open the developer tools on your browser and check if you have got any javascript errors.
Here are the steps to see that:
- Open the edit post page where you are trying to add the pdf file
- Then Right click on the page anywhere and select ‘Inspect’ or ‘Inspect Element’
- A window will popup from bottom or a new tab
- Click on ‘Console’ tab in the new window
- And then check if you are seeing any red lines in the console
Please let us know your response so we will revert on your issue.
Forum: Fixing WordPress
In reply to: Help to fix the transparent header menu on mobileHi @hin0215 ,
The reason behind this line is the CSS code snippet below:
.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a { box-shadow: 0 2px 0 0 #5697d1; }
Please find if you have added this in additional CSS or somewhere else.
If you can’t find it, then please add the below CSS snippet in additional CSS:
.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a { box-shadow: none; }
Forum: Fixing WordPress
In reply to: Help to fix the transparent header menu on mobileHi @hin0215 ,
Please add the below CSS snippet into additional CSS section of customizer and see if it works for you.
#x-btn-navbar { color:#5d99d1; }
It will show the hamburger(i.e. 3 lines menu opening button) in the mobile view which opens up the menu.
Forum: Fixing WordPress
In reply to: Help with Contact Form CSSHi @rashidazhussain ,
There is a max-width applied to your contact forms due to which you are seeing the whitespace.
Here is the CSS code you need to remove. Maybe, you have either added in the additional CSS section or in the page builder extra CSS.
.wpforms-container.wpf-center { margin: 0 auto !important; max-width: 500px; }
Add this CSS in additional CSS section or extra CSS section in the page builder to get your submit button aligend center:
div.wpforms-container-full .wpforms-form .wpforms-submit-container { text-align:center; }
Please let us know your resposne on this!
Forum: Installing WordPress
In reply to: Simpliest guide to getting started pleaseHi @paulhabitatcom ,
Could you please let us know which hosting provider you have purchased?
Mostly hosting providers do have the feature to install the wordpress from cPanel.
Please contact hosting provider if they have this feature. If not then please drop your response here so I can brief you the steps.
Forum: Fixing WordPress
In reply to: Help to fix the transparent header menu on mobileHi @hin0215 ,
It seems the theme issue in responsiveness.
Could you please put on the site URL here? Maybe some CSS is hidding the menu in the mobile view.
Forum: Fixing WordPress
In reply to: How to change the location from where images are served?Is there any caching enabled on the site?
If yes then please purge the existing cache and try again.
Please drop your response on this here.
Forum: Fixing WordPress
In reply to: woocommerce shop pageHi @dontknowstuff ,
Could you please brief about the theme you are using?
Also, please put on the URL of the site to check.
Forum: Fixing WordPress
In reply to: My featured Images are not coming upHi @snerious ,
Can you post the link for the blogs page which you are talking ?
Also, could you please explain how you have added the featured image in the blog post ?
There are many errors coming up from Smooth Scroll plugin. Please check by deactivating this plugin.
- This reply was modified 4 years, 6 months ago by Ketan Vyawahare.
Forum: Fixing WordPress
In reply to: search widget doesn’t appearHi @oussamafeki ,
There is a CSS being applied from your theme ‘bfc-blog’ which is hiding the search bar:
Here is the snippet:
#bitnami-banner, #recent-comments-2, #search-2 { display: none !important; }
Please remove this CSS snippet. Or at least remove the last selector i.e. #search-2 from above code.
Forum: Developing with WordPress
In reply to: wp_get_post_revisions always emptyHi @josephyhu ,
Could you please tell us, if you are doing this for a custom post type or default blog post type?
If this is about a Custom Post type then please check if the support for ‘revisions’ is added while registering the Custom Post Type.
Please let us know your feedback on this!