VolumeWatchers
Forum Replies Created
-
Even with the Auto option got the same error
Sure. You can mark this as closed. I need sometime to work on the migration. I will post the page with example.
Thanks again for your prompt response.
Super…! Worked great..! I saw the Custom HTML list in the plug-in set up panel. But, never figured out what’s the box for. Great work.
Forum: Plugins
In reply to: [Captcha] How to add captcha in buddy press reply form?Looks like the changed the location of the files now.
/wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php
/wp-content/plugins/bbpress/includes/replies/functions.php/wp-content/plugins/bbpress/templates/default/bbpressform-topic.php
/wp-content/plugins/bbpress/includes/topics/functions.phpEnjoy.
Forum: Plugins
In reply to: [Captcha] How to add captcha in buddy press reply form?Sorry…! Side tracked by other issues. Here is quick and dirty fix. Added the following code.
In : wp-content/plugins/bbpress/bbp-theme-compat/bbpress/form-reply.php
<div class=”bbp-submit-wrapper”>
<?php if( function_exists( ‘cptch_display_captcha_custom’ ) )
{ echo “<input type=’hidden’ name=’cntctfrm_contact_action’
value=’true’ />”;
echo “<b> Solve this: </b>”. cptch_display_captcha_custom().”
<b> Then click => </b>”;
} ?>In :/wp-content/plugins/bbpress/bbp-includes/ bbp-reply-functions.php
/** Capcha Check *******************************************************/
if( function_exists( ‘cptch_check_custom_form’ ) &&
cptch_check_custom_form() !== true )
bbp_add_error( ‘bbp_reply_content’, __(
‘ERROR: Please complete the CAPTCHA.’,
‘bbpress’ ) );Did the same in form-topic.php and bbp-topic-functions.php files.
Worked as expected and solves the need for now.
By the way thanks to Marcus for the hint. I was breaking my head for the last couple of days on the suffusion drop down menu stuff.
Also check on other plugins scripts. Do a quick source view. I was using a widget from https://www.automotive.com/car-tools/widgets/gas-prices/ to list the gas price and it had a code like this <script src=”//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js”></script> . Just removed it. The date piker showed up. So, the suffusion drop down menu. Give a try.
Forum: Plugins
In reply to: [Quick Adsense] [Plugin: Quick Adsense] No quicktag buttons under HTML editorRezso…! You Rock..! Worked Great…!