vikas.kodesk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login cookie error because of child themeCan you please share your child theme zip with me, so that i can debug issue.
Thanks
VikasForum: Installing WordPress
In reply to: My own database(s) with WP?Hi sdlinda,
Yes, you can easily do this in wordpress and within wordpress database by creating a custom post type, where you can add websites and then do all operations like add/edit/delete/search etc on that custom post type.
but, for this you should be familiar with wordpress coding, if you are not a programmer, then we can help you with this.
Thanks
VikasForum: Fixing WordPress
In reply to: Lost password, password reset doesn’t workHi John,
Resetting your password is quite easy if you have some knowledge about cpanel and database. Below are the steps to reset/change your password directly from database.
If you have hosting with cpanel, you can do the following steps:
1) Login to Cpanel
2) Search for phpmyadmin on cpanel home page after login.
3) select the database connected with you wordpress website
4) search for table wp_users (wp_ is the prefix of tables, that you selected when you initially setup your website and may differ)
5) from wp_users table, search for your username and click on edit user
6) from edit user screen, type in new password in password field and select MD5 from dropdown.you can follow steps in the below page which shows all steps with proper screenshots:
If you have any difficulty with it, please contact me and I will be happy to help you with this.
goto option “Through phpMyAdmin” on the above page.Thanks
VikasForum: Everything else WordPress
In reply to: Can’t get rid of white spaceHi Jmpavo,
Did you add the above css in wordpress custom css area under customize section, if you will add it under Appearance -> Customize -> custom css section, then it should be applied to all posts.
Thanks
VikasForum: Fixing WordPress
In reply to: Captcha loads 2 timesalso, please share links to both pages..
Forum: Fixing WordPress
In reply to: Captcha loads 2 timesSure, I would have to try changing code, can i get ftp access to website, you can share details to my email: [email protected]
Forum: Developing with WordPress
In reply to: Suggestions for two blogs in one WordPress?cant we create 2 categories in wordpress and add posts to their relevant categories. then we can add links to both those categories in menu
Forum: Everything else WordPress
In reply to: Can’t get rid of white spaceThanks for update jmpavo. Glad to know that ??
Forum: Fixing WordPress
In reply to: Span Tags visible on frontend – archive titleGlad to know, that it helped ??
Forum: Fixing WordPress
In reply to: Changed url now cannot access my dashboard and site is not workingPlease read following article for details:
Forum: Fixing WordPress
In reply to: Core 5.5 SiteMap Featurecan you please let me know plugin you are using to generate sitemap?
Forum: Fixing WordPress
In reply to: Changed url now cannot access my dashboard and site is not workingin order to fix this you can edit you wp-config.php file and add these 2 lines of code:
please change urls below with your website url
define( ‘WP_HOME’, ‘https://example.com’ );
define( ‘WP_SITEURL’, ‘https://example.com’ );Forum: Fixing WordPress
In reply to: I couldn’t able to access my wordpress Dashboard LoginYour website has been hacked and will need to be cleaned. If you like I can help you with this. Please contact me at [email protected]
Forum: Fixing WordPress
In reply to: Span Tags visible on frontend – archive titlepls try to replace this code
echo esc_html($title)
with
echo strip_tags($title)
Forum: Fixing WordPress
In reply to: Captcha loads 2 timesHi,
can you try removing following code from functions.php once:
define( ‘RECAPTCHA_SITE_KEY’, ‘your_site_key’ );
define( ‘RECAPTCHA_SECRET_KEY’, ‘your_secret_key’ );
// Enqueue Google reCAPTCHA scripts
add_action( ‘wp_enqueue_scripts’, ‘recaptcha_scripts’ );
function recaptcha_scripts() {
wp_enqueue_script( ‘recaptcha’, ‘https://www.google.com/recaptcha/api.js’ );
}