yogeshyadav20
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating different user groups in WordPressThis plugin may fulfill your requirement, this is open source, so you can use this
https://www.ads-software.com/plugins/wp-user-groups/
Hope this will be helpful for you
Thanks
Forum: Fixing WordPress
In reply to: help update wordpressHi @arnaud01500
You should follow this guidelineshttps://www.inmotionhosting.com/support/edu/wordpress/fix-download-failed-errors-on-update/
Hope this will help you
Thanks
Forum: Fixing WordPress
In reply to: general-template.php functionYou should follow this step
Hope this will work for you
Thanks
Forum: Fixing WordPress
In reply to: Course RecommendationsYou can grab basic about html & CSS from here
https://ilovecoding.org/courses/htmlcss2Hope this will be helpful for you
Forum: Fixing WordPress
In reply to: kicked out after login, no styleHi @pitz72
#First, let’s start with ruling out any sort of conflict. Try deactivating plugins and check which one is causing the issue. If you cannot do it via dashboard, there are other ways to do it: https://www.wpbeginner.com/plugins/how-to-deactivate-all-plugins-when-not-able-to-access-wp-admin/
#Second, If it doesn’t work – follow this thread: https://stackoverflow.com/questions/18769141/wordpress-admin-not-loading-css-js
#Third, Backup your files and do a fresh WordPress install: https://www.ads-software.com/support/article/wordpress-backups/
Let me know which one works out for you!
- This reply was modified 3 years, 2 months ago by yogeshyadav20.
Forum: Fixing WordPress
In reply to: how to use web version of wordpressHi @whateversm
You should follow these guidelinesForum: Fixing WordPress
In reply to: Hiding Page Navigation?You can add conditions before rendering html code like
if(!empty($var)):?> <div>content goes here</div> <?php endif; ?>
There are lost of blank html
Thanks
Forum: Fixing WordPress
In reply to: Hiding Page Navigation?Hi @tourq,
By using this CSS you can hide breadcrumb from your side.site-content-header { display: none; }
This code will remove breadcrumb nav and it’s spacing to, but if you want to hide only breadcrumb item then use this CSS
.breadcrumbs { display: none; }
if you want to remove this from specific page then please add that page class before it.
like.page page-id-294 .site-content-header { display: none; }
Forum: Fixing WordPress
In reply to: Lost alignment of the pageHi @joseph1978
You can fix this by using following CSS.home .wpb_wrapper .wpb_video_wrapper { padding-top: 0; }
You can put this CSS in theme customization, see the attachments.
https://www.awesomescreenshot.com/image/13461313?key=53de8466c39f22e2ad24ead63192cea0Forum: Fixing WordPress
In reply to: Adjusting Slider HeightHi @howardskeptron
You can fix your slider image height using CSS like this
.orbit-slide>a>img{height:550px;}
But this is not better solution, for best solution you should to ask your here
https://www.ads-software.com/support/plugin/wp-orbit-slider/Forum: Fixing WordPress
In reply to: Since updating my PHP version I can’t access one of my other siteHi @screenbyte
Are you using WPML plugin, if yes then you should try thisPlease increase your MaxInputVars to 10000 (you have to ask your hosting provider regarding this)
Please increase your max_execution_time as much as you canRegards,
yogesh.alternate way to fix this issue is
It solved when switched off zlib.output_compression in php.ini
zlib.output_compression = Off
In your theme functions.php file
Forum: Fixing WordPress
In reply to: My WP 5.8.1 was hackedAnd here are some more stuff
https://www.acunetix.com/websitesecurity/preventing-wordpress-hack/
hope this will help you
ThanksForum: Fixing WordPress
In reply to: My WP 5.8.1 was hackedHi @jessforest
After all stuff, you can do thisTo disable the code editor, simply add the following code into your wp-config.php file: // Disallow file edit define( 'DISALLOW_FILE_EDIT', true ); Another way to prevent file editing is by disabling PHP file execution in your /wp-content/uploads/ folders. For this, open Notepad – or a similar text editor – and paste the following: <Files *.php> deny from all </Files>
- This reply was modified 3 years, 2 months ago by yogeshyadav20.