Arun Singh
Forum Replies Created
-
Forum: Plugins
In reply to: [Better bbPress Signature] Sig file update button not displayingjoesegal, it seems the theme on you website is has customized the bbPress templates and it might be missing some of the hooks that I have been using in my plugin to make it work.
Forum: Plugins
In reply to: [Better bbPress Signature] Formatting issue with BuddypressUpdated the plugin, it should have fixed now. I have removed the style-sheet for the buttons so that it uses from theme.
Forum: Plugins
In reply to: [Better bbPress Signature] Spacing Issue on ForumsHey George,
Sorry for not responding on time, I believe you may have found a solution or alternative. If you still have some query or need any help please let me know. Also please mention your URL so that I can help you.
Forum: Plugins
In reply to: [bbPress Quotes] [Plugin: bbPress Quotes] does not work with latest vs.avaroth see the code here https://pastebin.com/qnbwsLWU
Forum: Plugins
In reply to: [bbPress Quotes] [Plugin: bbPress Quotes] does not work with latest vs.Hi avaroth,
In the bbpress-quotes.js file replace the quote function with the following edited version :
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
Forum: Plugins
In reply to: [bbPress Quotes] [Plugin: bbPress Quotes] does not work with latest vs.Try this:
Just open the bbpress-quotes.js file and in the Quote function
Add this after try statement starts:
var editor_html = document.getElementById('bbp_reply_content-html'); switchEditors.switchto(editor_html);
and this before functions return is called:
var editor_tmce = document.getElementById('bbp_reply_content-tmce'); switchEditors.switchto(editor_tmce);
Working awesome for me.
Forum: Networking WordPress
In reply to: Best plugin for "business directory" and classifieds..found for classifieds, the classifieds plugin from wpmu dev works great
Forum: Networking WordPress
In reply to: Best plugin for "business directory" and classifieds..thanks for your response but I have already purchased this, the problem is it is a complete theme and my requirement is for a plug-in.
Do they also have plug-in for the same?I have already made a custom theme according to my choice.
Forum: Fixing WordPress
In reply to: How to get top most parent category id.try this to get the top most category for any depth level
function get_top_parent($cat){ $curr_cat = get_category_parents($cat, false, '/' ,true); $curr_cat = explode('/',$curr_cat); $idObj = get_category_by_slug($curr_cat[0]); echo $id = $idObj->term_id; }
Forum: Fixing WordPress
In reply to: How to get top most parent category id.it will work for 2 level only…
Forum: Plugins
In reply to: [Norman YouTube Plugin] [Plugin: Norman YouTube Plugin] Plugin Not Workingcan you give me your site’s link…
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Conditional Redirect?hello naturalworth,
I visited your site. I think you are still unable to fix the problem. Your change in the code is wrong:
you should put only :if (1 == data.mailSent) { if (data.onSentOk) jQuery.each(data.onSentOk, function(i, n) { eval(n) }); jQuery(data.into).find('form').resetForm().clearForm(); wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ok'); } else {
in spite of presently :
`if (1 == data.mailSent) {
jQuery(data.into).find(‘form’).resetForm().clearForm();
wpcf7ResponseOutput.addClass(‘wpcf7-mail-sent-ok’);if (data.onSentOk)
jQuery.each(data.onSentOk, function(i, n) { eval(n) });
} else {if (1 == data.mailSent) {
if (data.onSentOk)
jQuery.each(data.onSentOk, function(i, n) { eval(n) });jQuery(data.into).find(‘form’).resetForm().clearForm();
wpcf7ResponseOutput.addClass(‘wpcf7-mail-sent-ok’);
} else {`replace the whole code with this.
Post back you still find some problem.
Thanks