edgarcia78
Forum Replies Created
-
Forum: Plugins
In reply to: [Inline Upload] [Plugin: Inline Upload] filebaselink fixedGenius…. THANKS!!!
Okay… for those who want to downgrade, once you uninstall the plugin, you have to delete the themes-ai1ec folder in the wp-content folder through an FTP application. Once you delete this folder you can do a clean install again.
Everything works great for me in 1.8.2.
After further research, it seems to be a theme issue. The problem goes away when I use the twenty eleven theme. So would someone be kind enough to point be in the right direction on what could cause this issue?
Thanks,
EdThanks for all your hard work.
Ed
This this code. You can modify it anyway you want.
<?php
$comments_count = wp_count_comments( post_id);
echo ” (“.$comments_count->approved .” Comments)” . “
“;
?>Also, make sure that the “Auto Approve” button is checked in the SEO Facebook settings.
Never mind. I figured it out… In case someone needs to update the agenda.php file, please visit the following directory:
wp-content/themes-ai1ec/vortex/agenda.php
My dropdown to change between Agenda, Month and week does not work anymore. It stays stuck at the default setting.
I can’t seem to find this issue in the track seed anymore. Is this still being worked on? Or does anyone have any alternative resolutions?
It looks like this is going to work… Thanks
And just for clarity purposes, the issue is that business accounts are not allowed to create apps while personal accounts do have the ability to create apps.
Is your facebook account a business account by any chance? I am having the same issue, but the problem seems to be with business accounts only. I tried creating a personal account and did not have any problems. Unfortunately, I really need to setup a business account or this plugin will be worthless for me. Does anyone have any suggestions? I tried following the direct link that was suggested (https://developers.facebook.com/apps) without any success.
bpedrasani… you comment is interesting. I will have to try that trick. I don’t know what’s causing this issue. Some have said that the plugin AddThis Social Bookmarking is causing this issue, but I do not have this plugin installed.
I’m still having issues downloading events to google calendar. I’m assuming I have an app that’s causing the issue. What’s the best way to figure out the culprit?
Here is a link of an event if someone is willing to help me troubleshoot:
Here is the code again… I don’t think it came out correct in the previous post.
<?php
$comments_count = wp_count_comments($event->post_id);
echo ” (“.$comments_count->approved .” Comments)” . “
“;
?>So after hours of playing around, I think I figured out the necessary code. So for anyone interested in adding a comment count for each event in the agenda view, just add the following code anywhere in the agenda.php file. You will have to modify the file via FTP. Add the code where ever you want to to show the count. I personally wanted the count on the “Read More” button. Here is the code that I used (only the bolded code):
<?php _e( ‘Read more ?’, AI1EC_PLUGIN_NAME ) ?>
<?php
$comments_count = wp_count_comments($event->post_id);
echo ” (“.$comments_count->approved .” Comments)” . “
“;
?>
?>