dineshkashera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin not workingHello,
The error displays itself when there are:
Blank lines at the top or bottom of a document.Too many spaces before, in between or after the beginning <?php and ending ?> PHP tags
There are too many unneeded spaces or blank lines in a specific part of a document
In order to fix the spacing issue, you need to first know where it’s happening. Fortunately, the error message lets you know which file and line is affected. Keep in mind that you may see this sequence multiple times on the page which means there are multiple files that need fixing.
Check unwanted space in your functions.php file.Thanks
Forum: Fixing WordPress
In reply to: Lost password, and edit it in database, cant login now.Hello,
Please see the below video to change the user password from database.
Note : Select your database and user tableshttps://drive.google.com/file/d/1ARZv13Htnj0pRJXq6a_URmwqJ1FEXYsQ/view
I hope it will help you.
Thanks
Forum: Fixing WordPress
In reply to: No Checkout buttonHello,
Please go to your wordpress root directory in file wp-config.php and Enable WP_DEBUG by making its value true. So you can check what error is throwing.Because after cart summary the checkout button and footer section not loaded.
To get more help please visit this link https://codex.www.ads-software.com/WP_DEBUG
Thanks
Forum: Fixing WordPress
In reply to: wp-admin not workingHello,
Please go to your wordpress root directory in file wp-config.php and Enable WP_DEBUG by making its value true. So you can check what error is throwing.
To get more help please visit this link https://codex.www.ads-software.com/WP_DEBUGThanks
Forum: Fixing WordPress
In reply to: call to action button – can’t see textHello,
@anevins i appreciate your answer :).Forum: Fixing WordPress
In reply to: How To Add Sidebars In A Theme Without Sidebars OriginallyHello,
You can create sidebar dynamically by using below plugin:
https://www.ads-software.com/plugins/dynamically-dynamic-sidebar/But using the above plugin you must have to paste the action hook where you want to render sidebar. Please read plugin details :).
I hope it will help you.
Thanks
Forum: Fixing WordPress
In reply to: code to take user to a different pageHello,
I think for this you don’t need to install any plugin, you can achieve your requirements by creatingauthor.php
file in your child theme , If you don’t create child theme then you can create in your parent theme also.And on the basis of assigned code or logic you can redirect to his author page.
To get more help visit this link:
https://codex.www.ads-software.com/Author_TemplatesThanks
Forum: Fixing WordPress
In reply to: call to action button – can’t see textHello,
Your button text is not showing because it inherit the color from his parent div and parent div color is black so,it mixup with black color .
To apply default color on button, remove inlinestyle="color: inherit;"
from link.If you can’t remove inline style, then paste the below css in file
/wp-content/themes/sydney-child/style.css.promo-controls a.roll-button.border { color: #5180b6 !important; } .promo-controls a.roll-button.border:hover { color: black !important; }
Thanks
- This reply was modified 7 years, 4 months ago by dineshkashera.
Forum: Fixing WordPress
In reply to: Focus border around logoHello,
You can’t remove the border around WordPress logo because it is complete image.
Please see this image
https://www.maurascuderi.com/wordpress/wp-admin/images/wordpress-logo.svg?ver=20131107To change logo or modify logo you can do using below code:
function my_login_logo() { ?> <style type="text/css"> #login h1 a, .login h1 a { background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/site-login-logo.png); height:65px; width:320px; background-size: 320px 65px; background-repeat: no-repeat; padding-bottom: 30px; } </style> <?php } add_action( 'login_enqueue_scripts', 'my_login_logo' );
To get more help visit this link : https://codex.www.ads-software.com/Customizing_the_Login_Form
Thanks
Forum: Fixing WordPress
In reply to: Adding to Multi Level MenusHello,
Please use this plugin
https://www.ads-software.com/plugins/auto-subpage-menu/It will solve your problem.
Thanks
Forum: Fixing WordPress
In reply to: write Post by FormHello,
Please use this plugin
https://www.ads-software.com/plugins/wp-user-frontend/I hope it will meet your requirements.
Thanks
Forum: Fixing WordPress
In reply to: Creating splash landing pageHello,
I have seen your screenshots, To design the given screenshots you don’t need to any theme.By custom design you can create that layout.Thanks
- This reply was modified 7 years, 4 months ago by dineshkashera.
If the problem has been resolved then market it as resolved :).
Hello,
No @jwtaniza, Don’t worry everything will work fine on your site :).- This reply was modified 7 years, 4 months ago by dineshkashera.
Hello,
Please go to wp-config.php file and set WP_DEBUG variable to false.
define( 'WP_DEBUG', false );
To get more help visit below link:
https://codex.www.ads-software.com/Debugging_in_WordPress- This reply was modified 7 years, 4 months ago by dineshkashera.