Jatsie
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Upcoming Events Widget failsThis is not a plugin issue – I tried the widget in a different sidebar and it works! I will find the problem myself.
Forum: Plugins
In reply to: [Download Manager] Problem with Dashboard Loading in the Latest VersionI have the same problem – I have tested all plugins and this one prevents my dashboard from displaying. I have WordPress 3.8.1 installed. Please fix – I need you plugin.
Forum: Plugins
In reply to: [Contact Form 7] Require one of two fieldsHere is my form at the moment but it has both fields as required – I need only one of them to be required:
<p>Your Name (required)
[text* your-name] </p>
<p>Mobile
[text* your-mobile or_field:your-email or_label:Email ] </p>
<p>Email
[email* your-email or_field:your-mobile or_label:Mobile ] </p>
<p>[submit]</p>Forum: Plugins
In reply to: [Quiz and Survey Master (QSM) - Easy Quiz and Survey Maker] Media SupportI would like to support this request. I need this plugin for Video quiz – where the user has to answer questions about a youtube video. For now, I will add video to a post before the quiz shortcode – but should I need more than one video in the same quiz – this would realy help if the question has proper content area where I can use shortcodes etc to add media.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] "Oops! There is a problem with this form"RESOLVED.
I used dnGREP to search my plugin folder for admin_init and found this function in one of the plugins that are required by my theme:
function atcf_prevent_admin_access() { if ( current_user_can( 'submit_campaigns' ) && ! current_user_can( 'edit_posts' ) ) { wp_safe_redirect( home_url() ); exit; } } add_action( 'admin_init', 'atcf_prevent_admin_access', 1 );
As you know my error includes a red alert box with the home screen inside. I immediately knew this was the conflict, since this function would disallow any non-admin to run ajax from the wp-admin folder.
I insterted a condition to check for running ajax so the code looks like this:
function atcf_prevent_admin_access() { if ( current_user_can( 'submit_campaigns' ) && ! current_user_can( 'edit_posts' ) && $_SERVER['PHP_SELF'] != '/wp-admin/admin-ajax.php' ) { wp_safe_redirect( home_url() ); exit; } } add_action( 'admin_init', 'atcf_prevent_admin_access', 1 );
tested and all working 100%.
My advice to you: Search your plugin and theme folders for a similar function that restricts access to admin-ajax.php since MAILPOET needs to access this file to use ajax for the proper functioning of their subscription form. Good Luck.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] "Oops! There is a problem with this form"I am currently trying the solution here:
https://stackoverflow.com/questions/11011317/wordpress-plugin-works-only-for-logged-users
Will post feedback tomorrow.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] "Oops! There is a problem with this form"My theme has a lot of plugins built in – I did test with only theme and wysija – still gives error when not admin logged in.
I have not made any changes to the way admin-ajax.php is used.
I will do some more conflict testing and update here.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] "Oops! There is a problem with this form"Hi Fabrice,
I am having the same problem on a Wysija subscription form that I have generated (HTML) from the forms page in Wysija settings.
I also see it working perfectly when logged in as admin.
My problem is not identical to yours since I cannot find that function anywhere in my code.
Have you had any progress that could be helpful to me?
Forum: Plugins
In reply to: [Content Scheduler] Notify before expirationDepending on how often your cron runs – could it be a case of setting a small range for the time difference between NOW (time the cron runs) and when it will expire?
Forum: Plugins
In reply to: [Content Scheduler] Notify before expiration+1 from me too. My website has holiday packages and I need to know 7 days prior to when it will expire so I can try to extend the offering or restructure depending on popularity.
Forum: Plugins
In reply to: [Kau-Boy's AutoCompleter] Autocomplete Taxonomy in stead of title or contentMy solution in autocompleter_results.php:
//$wp_query = new WP_Query(); //$wp_query->query(array( // 's' => $_REQUEST['q'], // 'showposts' => $choices, // 'post_status' => 'publish' //)); $taxonomies = "company_taxonomy"; $args = array( 'hide_empty' => false, 'cache_domain' => 'core'); $posts = get_terms( $taxonomies, $args );
and I ended up replacing the URL with ‘#’ to fill the field without directing somwehere
There is a conflick on your site – I tried to disable all plugins and my theme to default – CF 7 worked! Dont blame the plugin first!?
Forum: Plugins
In reply to: [Contact Form 7] New Forms not showing on Admin panelWow thanks! Life Saver. I thought the contact form did not work with WP 3.5.1 but it turns out my Theme is the problem. I swapped back to default theme, created form, then swapped back – all sorted.
Great David.
I could not wait for your next release to I found the theme index.php file and found the function that returns the excerpt:
echo wp_html_excerpt($excerpt,410);
For now I just inserted an IF statement directly above it to force it through your AWESOME filter:
if (function_exists(‘pccf_filter’)){$excerpt = pccf_filter($excerpt);}
Call me paranoid, but I included a function check in case the plugin gets turned off or whatever…… so my home page does not explode.
I have just installed this plugin on WordPress 3.4.2 and the exceprts are not being filtered.