starpro
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fruitful] remove nofollow in footerExcellent! Thanks.
Forum: Themes and Templates
In reply to: [Fruitful] Footer font weightHi
Issue still exists. I was trying a tweak :-
html { -webkit-font-smoothing: antialiased; }This does stop the flicker, but means that all the text on the page becomes lighter weight, so not the right fix.
I have searched on google and there a whole raft of comments around flex slider causing this issue, but a range of different ‘fixes’ that seem to have some side effects!
Just looking at different options, but if you have any ideas, please let me know.
Thanks
Forum: Themes and Templates
In reply to: [Fruitful] Footer font weightI have just tried this, and reset the theme. The issue remains though.
It seems that it is when the slider is configured to slide as opposed to fade?Would you mind trying it on yours, switching it to slide as opposed to fade and seeing if you see the same issue?
Forum: Themes and Templates
In reply to: [Fruitful] Footer font weightInteresting, okay. Thank you. Can you advise, when using the slider, the footer text flashes as the slider swaps the image. At this point, the text actually appears to become non bold.
Two questions:
1) How do I stop this happening?
2) Could I make the text appear like it does as it flashes at the slide swap over all of the time?Thanks.
Forum: Themes and Templates
In reply to: [Fruitful] remove nofollow in footerI have looked into this more, and located the issue.
The code in functions.php is as follows:-
/*Get footer text*/ function fruitful_get_footer_text () { $out_footer_text = $footer_text = ''; $theme_options = fruitful_ret_options("fruitful_theme_options"); if (!empty($theme_options['footer_text'])) { $footer_text = fruitful_kses_data(stripslashes($theme_options['footer_text'])); if (!is_home()) { $out_footer_text .= '<nofollow>'; $out_footer_text .= $footer_text; $out_footer_text .= '</nofollow>'; } else { $out_footer_text .= $footer_text; } echo $out_footer_text; } }However the is_home() function does not recognise the the front page if you have it set to a static page. Instead, it will be plied to your posts page.
I have altered this is_home() to is_front_page, as this will return TRUE if a static page is used. See http://codex.wordpress.org/Function_Reference/is_home and http://codex.wordpress.org/Function_Reference/is_front_page for details.
Forum: Themes and Templates
In reply to: [Fruitful] Footer font weight@windomerle – Thank you, but I had tried that already with no luck.
Forum: Themes and Templates
In reply to: [Fruitful] Get Rid of HeadingsI followed the first option but later noticed that Bing Webmaster Tools were complaining that there were two h1 tags on each page.
I attempted the 2nd option of commenting out, and the same issue was seen.
The only way to resolve was to remove the line from content-page.php altogether.
I know there may be differing views on H1 tags, but as they are significant to SEO, its worth watching.
Forum: Themes and Templates
In reply to: [Fruitful] Footer text flashes as slider changesI have looked into this and still cannot locate why it occurs, however it definitely happens as the slider swaps slides.
The url is http://www.progressconcepts.com
I have found that adding the following CSS resolves this issue.
/* Ensure Menu colour is always right (stops orange flashing up) #1 */ .main-navigation ul li:hover a { background: none repeat scroll 0 0 #95bf31; } /* Ensure Menu colour is always right (stops orange flashing up) #2 */ .main-navigation ul li.current_page_item a, .main-navigation ul li.current-menu-item a, .main-navigation ul li.current-menu-parent a, .main-navigation ul li.current_page_parent a, .main-navigation ul li.current-menu-ancestor a { background: none repeat scroll 0 0 #95bf31; }Obviously, set #95bf31 to the colour that you have set you menu items to.
Forum: Themes and Templates
In reply to: [Fruitful] Logo image size and retina displaysI managed to rectify the logo thank you. Added the following to the CSS:-
.site-header img.logo { width:177px; height:55px; }Also, the slider works with @2x images by default.
I just need to understand why the menu keeps going orange now!
Forum: Themes and Templates
In reply to: [Fruitful] Logo image size and retina displaysOkay, do you have any timescales in mind?
Also, would it be possible to accommodate this within the slider too? Or would I need to employ a 3rd part slider?
Lastly, I notice an issue where having used the menu options to chafe the colour of the menu items, sometimes the menu buttons flash up with the default orange colour before my chosen colour then appears. Would you be so kind as to advise what I should change to rectify this?
I should also thank you for an exceptional & clean theme.
Forum: Fixing WordPress
In reply to: How can I post to a shopping cart using GETIn-case there is some other way of doing the first part of this, the php within an iframe is a script that will do a domain lookup and check for availability.
If there is some way I can do this via a plugin that can search multiple TLDs including .co.uk and allow me to pass a selected available domain to a shopping cart, feel free to comment!
Thanks