[email protected]
Forum Replies Created
-
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Malware DetectedAwesome. And sorry, didn’t mean to imply that malware was in the plugin, but as I re-read what I wrote, it did sound like that.
Thanks for the quick reply!
I haven’t looked at the recent release, but I’ll close this as it seems like it’s gotten appropriate attention.
Yes, sorry. I meant
short. I thinkmingot in there while debugging.Ultimately, ‘short’ should point to
get_localized_weeks_short()The bug is located in
/Users/senica/projects/matchbook_do_dev/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Main.phpon line 2177
$this->daysOfWeekShort = Tribe__Date_Utils::get_localized_months_short();This should reference days of week, not months.
Forum: Fixing WordPress
In reply to: Timeout waiting for output from cgi script errorI have a client who has a client that is experiencing this exact same issue. Did you find a resolution?
You wouldn’t happen to be on media temple would you?
Forum: Plugins
In reply to: [WP REST API (WP API)] Custom meta data@rmccue Thanks for this.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Add Dynamic Fields to Formplugins/contact-form-7/includes/classes.php
I don’t know what version you have, so I can’t say whether or not to just replace your file. Look for the parts that have my name (senica) in it.
Then in contact-form-7 create a new form but put your form in an hidden div like so:
<div class="student-request-hidden student-info" style="display:none">form here</div>Then, when some clicks a button or something and you want to add the dynamic fields you have to use javascript to clone the hidden div, add it to your page and show it. Each field will have to have the “name” attribute with an incremental number.
For example:
<input type="text" name="user-0" /><input type="text" name="user-1" />Than the script should process them.
Hope this helps.
Forum: Hacks
In reply to: Same old getting strippedI got it.
I could not enable the tinymce advanced plugin, but I just called the replace script using the following in my functions.php file:
if ( ! function_exists('tmce_init') ) { function tmce_init() { /*global $wp_scripts; $tadv_options = get_option('tadv_options', array()); if ( ! isset($tadv_options['fix_autop']) || $tadv_options['fix_autop'] != 1 ) return; $queue = $wp_scripts->queue; if ( is_array($queue) && in_array( 'editor', $queue, true ) )*/ wp_enqueue_script( 'tadv_replace', WP_PLUGIN_URL . '/tinymce-advanced/js/tadv_replace.js', array('editor'), '20080425' ); } } add_action( 'admin_enqueue_scripts', 'tmce_init', 25 );Forum: Plugins
In reply to: [Plugin: Contact Form 7] contact form not showingAlright,
You have to make sure the following code is in your custom template:
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <?php if ( is_front_page() ) { ?> <h2 class="entry-title"><?php the_title(); ?></h2> <?php } else { ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php } ?> <?php the_content(); ?> <?php endwhile; ?>And yes, it does need the while loop.
I just made a custom template with the above code just for my contact form and everything worked fine.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] contact form not showingSame problem. What is the deal??
Forum: Plugins
In reply to: Adding Editor on my plugin – need html/visual tabs to look rightNevermind. I just did a bad implementation 🙂
This code works great!
Forum: Plugins
In reply to: Adding Editor on my plugin – need html/visual tabs to look rightHey,
Thank you for posting the code above. Works great.
My box always goes to the top of the screen like it is positioned absolutely. Any ideas how I can get it to stay where I am putting it?
Forum: Fixing WordPress
In reply to: How do I add custom stylesheets to TinyMCE?Has anyone figured this out in 3.0?
Forum: Requests and Feedback
In reply to: Admin Media Library – folders and sorting functionStill need this!
Forum: Plugins
In reply to: [Plugin: Custom Field Template] insert custom code into a templateGeez! Thank you so much! I spent hours trying to figure out a problem with Page.ly MultiEdit. It seems that with 3.0 (for me anyways) $Globals were not being registered for the multiedit fields. When I did a var_dump for the multiedit Globals, I got nothing.
Anyways, this fixed me right up