Sykat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Log in mistakeexample.com/wp-login.php don’t work? Then download WordPress and Add/replace wp-login.php from ur wordpress folder. And it is not clear that 1. u can’t login or 2. u can’t access login page.
Forum: Fixing WordPress
In reply to: Related post for custom post type is not working.Solved
Forum: Fixing WordPress
In reply to: Related post for custom post type is not working.Thank u veryy much.. I know about <? ?> and how it works but forgot to check the whole code because I just copy pest that code and didn’t imagined that reckless blogger used <? ?> instead of <?php ?>. So I thought it is a coding problem.
Forum: Fixing WordPress
In reply to: How to remove 'uncategorised' from main menuI think ur problem is solved. If yes then mark it as resolved
Forum: Fixing WordPress
In reply to: how to delete default adsThere have to be an ad management option in Appearance>Theme Option.
As u are using a paid theme then It must have dedicated support. WP forum only support themes shared publicly on here.Forum: Fixing WordPress
In reply to: Does Google See Two Homepages?u can use robot.txt and disallow any page you wish to hide.
Forum: Fixing WordPress
In reply to: mobile menu not working on specific thememost of the paid theme distributor have dedicated support. feel free to contact.
Forum: Fixing WordPress
In reply to: Site is down & no backend accessdid u mess with permalink (setting>permalink) ? if yes then have a look at phpmyadmin>ur db>wp_options table and dubble check siteurl and home is right check dns is ok or not.
Forum: Fixing WordPress
In reply to: WP custom field is not working..!My problem solved.. It never had any error. I used video link as custom field name and renamed it video_link later. but the id i think didn’t rename. So the return value was null. I deleted that custom field and added new field named video_link and the code works.
But tell me one thing… What is the id if I use space in custom field name?
As example, for a space name, is it
get_post_meta($post->ID, ‘a space name’, true);?
It doesnt work.
orget_post_meta($post->ID, ‘a%20space%20name’, true);?
orget_post_meta($post->ID, ‘a-space-name’, true);?
orget_post_meta($post->ID, ‘a_space_name’, true);?Forum: Fixing WordPress
In reply to: WP custom field is not working..!Then please tell me the fixed code
Appearence>editor
Bit complicated.. Different theme work differently.. If the inline css <style> wasn’t added by something like include then you can edit them from header.php
and adding anything in styles.css wouldn’t work.
However u can patch this (but not recommended) with a !important tag.
Add bellow code in styles.css
a,h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover,.x-comment-time:hover,#reply-title small a,.comment-reply-link:hover,.x-comment-author a:hover{color:#0602a9!important;}Forum: Fixing WordPress
In reply to: How to add some code (guess css) in header?Your theme have inline css in head tag. Did u posted any custom css in Appearence>Theme option>CSS?
If yes the find `a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .x-comment-time:hover, #reply-title small a, .comment-reply-link:hover, .x-comment-author a:hover {
color: #FFF;
}`
And replace it withh2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .x-comment-time:hover, #reply-title small a, .comment-reply-link:hover, .x-comment-author a:hover { color: #FFF; }That class mean you set the link color white (#fff). If none of your head(h1,h2 etc) tag’s body is darken then u can remove that class or replace #fff with a nutral color like #b3b3b3.
I was actually asking for the page that have the link and the position of the link.