Ricardo Gonçalves
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] All-in-One Event Calendar Update 1.10.11I just added this great plugin to two new sites, but instead of installing the 1.10.11 version I installed the 1.10.9. I’m just keeping a copy of 1.10.11 and I’ll upgrade just before the 2.0 upgrade.
There are no improvements that justify upgrading to 1.10.11 and deal with these errors.
@haizdesign to get rid of the message I just added the following code in functions.php
add_action('admin_head', 'remove_messages'); function remove_messages() { echo '<style> .updated{ display:none; } </style>'; }It get rids of ALL admin messages, but for most of the clients it is not a problem.
If you want to get more fancy with this, just add an if statement to disable the messages for all users that doesn’t have the capability to switch themes:
add_action('admin_head', 'remove_messages'); function remove_messages() { if ( ! current_user_can( 'switch_themes' ) ){ echo '<style> .updated{ display:none; } </style>'; } }Forum: Plugins
In reply to: [Download Manager] Will WordPress Download Manager do this?You can do it using S2 Member combined with Wpdm. You set your content restrictions using S2Member tags and place the specific packages inside each tags.
Forum: Hacks
In reply to: WP_Query Taxonomy ParametersThank you @bcworkz. It worked perfectly!
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] All-in-One Event Calendar Update 1.10.11Did you comment the line 160 in all-in-one-event-calendar.php?
Paste the fatal error here so we can see what’s happening…
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] All-in-One Event Calendar Update 1.10.11I commented the line 160 in all-in-one-event-calendar.php and now it is working.
(The only issue is that the google and twitter icons disapeared)
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] All-in-One Event Calendar Update 1.10.11I just upgraded and advice you not to.
In the front end it is working but in the backend it crashed my plugin.php and update-core.php with this error:
Warning: array_search() expects parameter 2 to be array, object given in /…/wp-content/plugins/all-in-one-event-calendar/all-in-one-event-calendar.php on line 160
Fatal error: Cannot use object of type stdClass as array in /…/wp-content/plugins/all-in-one-event-calendar/all-in-one-event-calendar.php on line 160
I still can add/update events and the frontend is ok.
As I use the standard version I posted a question at timely forum. Waiting for their reply: http://community.time.ly/forum/troubleshooting/general_aa/9151-plugins-php-and-update-core-php-crashed-after-1-10-11-update
Forum: Plugins
In reply to: [Testimonial Rotator] Can't get anything to rotateTHank you for taking the time to take a look for me. We had some file permission problems when we transfered the site from our localhost to the webserver. We reinstalled the theme and everything is working fine now.
Forum: Plugins
In reply to: [Testimonial Rotator] Can't get anything to rotateI’m with the same issue here. It’s a Twentytwelve child theme and I’m getting the ‘jQuery is not defined’. So I changed it back to Twentytwelve just to check if I wasn’t messing something up, but it’s not working in Twentytwelve either. I tried to add wp_enqueue_script( ‘jquery’ ) in functions.php but it didn’t work either.
The site is emeryaccounting.com/test/
Thanks for the great plugin!