computerslayer1
Forum Replies Created
-
Awesome, thanks 🙂
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] posterboard broken in all versions of IEI figured out where the problem is:
http://wordpress.org/support/topic/conflict-with-timely-in-ie?replies=1#post-3876299
I’m currently running version 1.3. I don’t see any updates available on the wordpress plugin page or on your website.
In version 1.3, the error is still present.
The date on the package available on wordpress.org is Feb 7th 2013.
Where is the updated version with the fix hosted?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change the ai1ec_event in the URLI’m finding the same thing.
It has a lot of potential, but the javascript is awfully buggy. Not to mention it’s missing a number of obvious settings like this one.
So, I’ve been looking at other options. I’d recommend searching for “top 10” lists on the web rather than attempting to dig through the wordpress plugin repository.
In my case, it ended up being an issue in my php.ini file for the SMTP settings.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change the ai1ec_event in the URLI figured it out.
Find this file:
\wp-content\plugins\all-in-one-event-calendar\app\helper\class-ai1ec-app-helper.phpSearch the file for “slug”. (In version 1.9.2, it’s line 188)
'rewrite' => array('slug' => 'ai1ec_event'),Simply change the array value to whatever you like, such as this:
'rewrite' => array('slug' => 'event'),On another note, The Events Calendar Plugin allows you to change the slug within its settings without having to dig through code.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] posterboard broken in all versions of IEIt looks like this problem surfaces when I activate the “Better WP Security” plugin.
On line 38:
register_taxonomy('keywords', page, $args);Should be:
register_taxonomy('keywords', 'page', $args);Easy fix. Can we get an official release for it? Thanks 🙂
Forum: Plugins
In reply to: [Fast Secure Contact Form] Suggestion: add CSS classes on DIVsOk, I may have misunderstood what you posted earlier.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Suggestion: add CSS classes on DIVsIt looks like I can enter a class tag or style tag, but not both at the same time.
If I try entering both at the same time like this:
class="something" style="font-weight:bold;"Then the double quote marks are converted to
"in the HTML:class="something" style="font-weight:bold;"However, since I can enter a class tag by itself, I’m satisfied as far as my purposes are concerned.
It was a configuration issue unrelated to the plugin.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change the ai1ec_event in the URLI was looking for a way to do this as well. I downloaded version 1.9.2.
I am also having this issue.
WordPress itself has no issue with sending out email notices. I just don’t get any email when this form is used.
I’ve tried using the option for wp-mail and mail, but neither worked.
Forum: Plugins
In reply to: [Social Media Widget] Spacing of the icons way to close nowUsing firebug, what is effectively this CSS rule appears to be missing in 3.0.1, but present in 2.9.8:
.widgets .Social_Widget .smw_center img, .widgets .Social_Widget .smw_left img{ margin-right: 10px !important; }Forum: Plugins
In reply to: [Single Value Taxonomy UI] Doesn't save or hide original taxonomy meta box`’hierarchical’ => false
needs to be set.