Bubai
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Read More […] Colour changeuse this css to change […] color
.entry-content p a { color: black; }for hover
.entry-content p a:hover { color: black; }Forum: Fixing WordPress
In reply to: Can't display categoriesI think there have php fatal error so go to wp-config.php from root folder then find out
define('WP_DEBUG', false);and change false to true and run. Of course you will see something error on the screen and let me knowForum: Themes and Templates
In reply to: [Hueman] Page title row removingdo it by css or remove entire row html
by css use
.div_name{display:none}Forum: Themes and Templates
In reply to: [Briar] homepage issueuse
the_excerpt();insteadthe_content();if not work then change excerpt word limit to show read more button
https://wordpress.org/support/topic/limit-the-number-of-words-in-excerpt-without-plugins?replies=28
Forum: Fixing WordPress
In reply to: Change logo url in TwentySixteengo to editor of the theme from dashboard and open header.php and look line no.34 here you can see this
<?php if ( is_front_page() && is_home() ) : ?> <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <?php else : ?> <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p> <?php endif;just replace
<?php echo esc_url( home_url( '/' ) ); ?>this area with your external url. example<?php if ( is_front_page() && is_home() ) : ?> <h1 class="site-title"><a href="https://google.com" rel="external_url"><?php bloginfo( 'name' ); ?></a></h1> <?php else : ?> <p class="site-title"><a href="https://google.com" rel="external_url"><?php bloginfo( 'name' ); ?></a></p> <?php endif;Forum: Fixing WordPress
In reply to: WordPress visual editor backgroundtry to use
!importantin your css. like.body{background:#000000!important}Forum: Plugins
In reply to: ajax form submit errorsolved by me 🙂
Forum: Fixing WordPress
In reply to: I cannot access my admin pagemost welcome!
but i f you have changed your plugin folder name, now all plugins are disabled. so find out the plugin that did your admin page blank and remove it after that rename plugin folder name with old name (plugins).Forum: Fixing WordPress
In reply to: I cannot access my admin pageok so try another one, rename your plugin folder name that is under wp-config folder. then go http://natanamysore.com/wp-admin/
and before that problem what exactly work you have done?
Forum: Fixing WordPress
In reply to: I cannot access my admin pagelogin by FTP and go to wp-content->themes->your activated theme->functions.php
Forum: Fixing WordPress
In reply to: I cannot access my admin pagefrom dashboard go to appearance -> editor -> functions.php from right side , now you can see it’s all code in editor screen
Forum: Fixing WordPress
In reply to: 404 Not Found Error MessageForum: Fixing WordPress
In reply to: No results found errorWhat is your activated theme name?
And first of all make sure your content page or post published then do preview.Forum: Fixing WordPress
In reply to: I cannot access my admin pagego to your activated theme directory and edit functions.php file and make sure there are no spaces at the top or bottom
Forum: Fixing WordPress
In reply to: How to I add an image to this HTML codejust change with it
<form><input onclick=”hisotry.back(-1)” type=”button” value=”<< Return to what you were reading” class=”background”/>
and write this in your css file
.background{background:url(‘your image path here’)}