Simon
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Credit Card field suddenly appearing on checkout pageHi @beautyofcode, thanks for your reply. It turns out that my site had been hacked a while ago and though I had resolved that issue, there was some residual code that was causing the field to appear. I tracked it down and removed it which is why you were unable to replicate the issue.
Forum: Plugins
In reply to: [WooCommerce] Remove "State" dropdown from checkoutThat’s perfect!
Thumbs up for Venumurki
Aaaand as usual, I stumble across the answer after I post on this forum.
I found a setting within the WordPress Theme that hid the link.
I had tried clearing the cache, but it was in Chrome which can be a bit belligerent in refreshing.
I have viewed in Firefox and the widgets etc are appearing.
Tks
Simon
Forum: Themes and Templates
In reply to: [Kippis] "Continue reading" link not working on mobile deviceThat solution works perfectly.
Thanks for your help, it is greatly appreciated!
Simon
Forum: Themes and Templates
In reply to: [Kippis] "Continue reading" link not working on mobile deviceOk, thanks for the response.
I will give that a go tonight when I get home from work.
Simon
Forum: Themes and Templates
In reply to: [Kippis] "Continue reading" link not working on mobile deviceHi Paul,
I am unable to find any display content setting. Do you mean in the Theme options?
I have looked in all of the Theme Options sections (Notes, General, Main areas, Menus, Sidebars, Text, Structure and Mobile devices) and I can’t find it.
I looked in the WordPress settings and the only thing that I could find that might be what you were talking about is on the Reading page which was “For each article in a feed, show”, but I already have that set to Full Text so I doubt that it is.
Can you point me in the right direction please.
Thanks
Simon
Forum: Themes and Templates
In reply to: [Kippis] "Continue reading" link not working on mobile deviceI have found the function that puts the Continue Reading link in. The code is as follows:
‘// Excerpt Begin
//
if (!function_exists(‘kippis_excerpt_length’)) {
function kippis_excerpt_length($length)
{
return KIPPIS_EXCERPT_LENGTH;
}}if (!function_exists(‘kippis_continue_reading_link’)) {
function kippis_continue_reading_link()
{
return ‘ <span class=”continue-reading”>‘ . __(‘Continue reading <span class=”meta-nav”>→</span>’,’kippis’) . ‘</span>’;
}}if (!function_exists(‘kippis_auto_excerpt_more’)) {
function kippis_auto_excerpt_more($more)
{
return ‘ …’ . kippis_continue_reading_link();
}}if (!function_exists(‘kippis_custom_excerpt_more’)) {
function kippis_custom_excerpt_more($output)
{
if (has_excerpt() && !is_attachment()) {
$output .= kippis_continue_reading_link();
}
return $output;
}}add_filter(‘excerpt_length’ ,’kippis_excerpt_length’ );
add_filter(‘excerpt_more’ ,’kippis_auto_excerpt_more’ );
add_filter(‘get_the_excerpt’,’kippis_custom_excerpt_more’);
//
// Excerpt End’Have you got any idea what is causing the PHP header warning error, and how to resolve it?
I have tried to narrow down what is causing it, but with no success.
I don’t want to have to drop using this addon, but if it is not working correctly then I will have to try another solution.
Thanks
Simon
Hi,
Additional note, I have tested the functionality in the Twenty Eleven template as well as the template that I am wanting to use (Delicate) and it is happening in both (so I am confident that it isn’t a template issue).
Thanks
Simon
Forum: Everything else WordPress
In reply to: Update my profile email addressThanks Otto,
Not only did I find out that I can change the email address, I just found out that at some time in my distant past I have registered another profile on the WP Forums.
Thanks
Simon
Forum: Everything else WordPress
In reply to: Update my profile email addressI just did a test with an email address that doesn’t have an underscore and it works, so the issue appears to be that.
Thanks
Simon
Forum: Everything else WordPress
In reply to: Update my profile email addressIt is along the lines of [email protected]
I have tried multiple times with no luck. I don’t get any error message, it just doesn’t save the change.
Thanks
Simon
Forum: Fixing WordPress
In reply to: Lines and spaces aren't the same on browersHeya Whitelight,
Not sure about how to fix the text issue (2) because it is caused by IE rendering spaces differently to FF.
Issue 1 can be resolved by adding 3 line breaks before the text.
Hope that helps.
Simon
Has anyone managed to integrate some kind of Captcha with this addon yet?