Forum Replies Created
-
AuthorPosts
-
July 2, 2012 at 5:54 pm in reply to: Advanced Events Widget is no longer showing as a choice after upgrade #21431
Jonah
ParticipantHey Cooper,
Are you talking about this widget: http://cl.ly/392W1M3n0l1L421N0x1q – looks pretty styled to me…
– Jonah
Jonah
ParticipantHi Tony,
I think this is more of a theming issue. Can you provide a link for your site so I can see it in action and play around with the CSS for a solution?
Thanks,
JonahJonah
ParticipantJonah
ParticipantHi all, you can add the above code to your functions.php but you likely won’t need the opening PHP tags because PHP will probably already be open but this is something you’ve got to figure out on your own because it’s going to be different in every functions.php file. Basically if PHP is open you don’t need to open it again. If it’s closed from a previous block of code, you’ll need to re-open it. Here is a good intro to PHP everyone should ready before dabbling: http://www.w3schools.com/php/php_syntax.asp
I hope that helps!
– Jonah
Jonah
ParticipantHi Clara,
You can add widgets anywhere where you have widget area’s defined, i.e. all the widget/sidebar areas that show in Appearance > Widgets. If you need additional ones that it outside the support we can provide here. Good luck!
– Jonah
July 2, 2012 at 4:56 pm in reply to: Thousands of URLs for every future date possible auto generated. Possible bug? #21423Jonah
ParticipantHi Vincent,
Adding this code: https://gist.github.com/2763669 – should fix the issue for you.
@Jamie – have you added the above code to your theme’s functions.php file?Jonah
ParticipantHi Paul,
Try adding this to your theme’s functions.php file:
add_filter( 'manage_edit-tribe_events_columns', 'my_columns_filter', 10, 1 );
function my_columns_filter( $columns ) {
$column_date = array( 'date' => 'Date' );
$columns = array_slice( $columns, 0, 2, true ) + $column_date + array_slice( $columns, 2, NULL, true );
return $columns;
}
That should do it!– Jonah
Jonah
ParticipantHi Kyle,
That sounds possible but complicated and unfortunately we cannot help out with such customizations. You’ll either need to figure it out or hire a developer. Good luck!
– Jonah
Jonah
ParticipantHi Alex,
For some reason you are missing a stylesheet that should be included in the plugin. Are you running 2.0.7 for both of our plugins? Make sure you update both if not.
If you’ve made any customizations, either core or by placing files in an ‘events’ folder in your theme, you’ll want to ensure that those templates are using the latest code by comparing with the base versions of those files. I.e. if you edited /wp-content/plugins/the-events-calendar/views/table-mini.php by placing a copy in an ‘events’ folder, you’ll need to compare your modified version with the updated version in the latest copy of the plugin.
I hope that helps!
– Jonah
July 2, 2012 at 4:38 pm in reply to: Removing Popularity Contest AKPC_IDS+ from calendar view excerpts #21418Jonah
ParticipantHi Jonathan,
It might not be ideal but conventions vary in PHP and if it works for you then that’s the main thing that matters.
Let me know if you need anything else with this.
Cheers,
JonahJonah
ParticipantHi Ken,
Looks like its ok in Firefox now. Can you please confirm whether or not this is resolved?
Thanks,
JonahJonah
ParticipantHi Lydia,
Ok gotcha, so what you’ll want to edit instead is /wp-content/plugins/the-events-calendar/views/full-address.php by making a copy and placing in the ‘events’ folder in your theme. Then, just remove whatever chunks you don’t want. If you remove something and get an error, just go back to the file, undo and try again 🙂
I hope that helps,
JonahJonah
ParticipantHi Kyle,
Unfortunately not. How would you envision this working?
– Jonah
July 2, 2012 at 4:27 pm in reply to: Advanced Events Widget is no longer showing as a choice after upgrade #21414Jonah
ParticipantHi Cooper, got a link we can check things out at? You might want to try re-installing both of our plugins to be sure all the files got copied over.
– Jonah
Jonah
ParticipantHi Mark,
Try adding this to your theme’s functions.php file:
function remove_styles() {
if(!is_admin()) {
wp_dequeue_style( 'tribe_events-admin-ui' );
}
}
add_action('wp_print_styles','remove_styles',1);
-
AuthorPosts
