Achyuth Ajoy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Strange capcha, unable to login to adminHi,
The CAPTCHA must have been added by any of the plugin you’ve installed. Try renaming wp-content/plugins directory to disable all plugins. Try logging in after that.If that helps, rename the plugins folder back to original & try enabling the plugins one by one.
Hope this helps.
Forum: Fixing WordPress
In reply to: Home Page ImageHi,
Can you share a screenshot?Forum: Fixing WordPress
In reply to: 500 Internal Server ErrorHi,
Please check your server error log for more details on this error. If you’re using cPanel, error_log file can be found at public_html directory. Scroll down to find the last error & share it here to analyse the problem.Good day!
Forum: Fixing WordPress
In reply to: Do you know how to access to wordpress Website Admin Panel?Hi,
You can access WordPress control panel by visiting https://your-domain/wp-adminGood day!
- This reply was modified 7 years, 1 month ago by Achyuth Ajoy.
Forum: Fixing WordPress
In reply to: I cannot go live with WPLooks like the domain partnerwithpam.online is not a registered domain. Check here https://www.whois.com/whois/partnerwithpam.online
Have your registered the domain?
Forum: Fixing WordPress
In reply to: Some of the Icons are missing from the DashboardHi Apostolia,
The problem is caused by CORS(Cross Origin Resource Sharing) policy set by your hosting server. It happens because the server treats https://www.simplyapostolia.com and https://simplyapostolia.com as different domains.Try updating your .htaccess file with the below code.
<IfModule mod_setenvif.c> SetEnvIf Origin ":" IS_CORS </IfModule> <IfModule mod_headers.c> <FilesMatch "\.(gif|png|jpe?g|svg|svgz|ico|webp|ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$"> Header set Access-Control-Allow-Origin "*" </FilesMatch> </IfModule>
This code tries to remove CORS restriction, if supported by the server. Append it below the existing code in your .htaccess file. Do take a backup of the current file before modifying.
Hope this helps.
Good day!Forum: Developing with WordPress
In reply to: Display custom post type categories as CSS classYou’re welcome
Forum: Fixing WordPress
In reply to: How to add colour to link hover in sticky menuUse this code to hide the static menu & to avoid extra whitespace after the hello section.
@media (min-width: 1600px) { .container { padding: 0 250px; } } #mysticky-nav{ display: none; } #mysticky-nav.wrapfixed{ display: block; }
I can see that you have updated the code & the hover color works. Try this code as well.
Forum: Developing with WordPress
In reply to: Display custom post type categories as CSS classYou’re welcome. Try to use term slug instead of term name. Term name may contain spaces which may break your css
- This reply was modified 7 years, 1 month ago by Achyuth Ajoy.
Forum: Fixing WordPress
In reply to: Some of the Icons are missing from the DashboardYou’re welcome.
Can you share the screenshot of your browser console. Let’s see whether there ane any errorsForum: Developing with WordPress
In reply to: Display custom post type categories as CSS classfunction cats($echo = false) { $terms = get_the_terms( get_the_ID(), 'event_cat' ); if( !empty( $terms ) ) { $post_terms = array(); foreach ( $terms as $term ) { $post_terms[] = $term->slug; } if( $echo ){ echo implode( " ", $post_terms ); } else{ return $post_terms; } } }
Code updated to check whether the terms variable is empty, before looping.
- This reply was modified 7 years, 1 month ago by Achyuth Ajoy.
Forum: Fixing WordPress
In reply to: How to add colour to link hover in sticky menuOk. Will send the code for that
Forum: Fixing WordPress
In reply to: How to add colour to link hover in sticky menuSo you don’t want to show the menu under hello section. Only show it on scroll right?
Forum: Fixing WordPress
In reply to: WordPress dashboard works, live website does not?@optimizingmatters suggested to disable the plugin to check whether the problem is caused by it. Can always reconfigure and enable the plugin ??
Forum: Fixing WordPress
In reply to: How to add colour to link hover in sticky menuI can see you have added the line height to the menu items. But the span element still remains unchanged. Do check.