WPTrashPanda
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Events Importer] link to post does not work@abita0uais Everything looks like it working well. Nice site! under setting-> Facebook Events -> adjust the colors use the color pickers. The hover state is the “Alternative” or “Alt” color. By design most of the styles will come from your website though.
Forum: Plugins
In reply to: [MailChimp Sign Up] cssI believe it’s already set to expand to the column width of wherever you add it. You would not be able to do 100% on the input without taking into account the outer width of the summit button. So try like 90%.
Forum: Plugins
In reply to: [MailChimp Sign Up] not workingYou cannot have 2 on the same page. Since both go buttons do the same thing is is likely that the confirmation is showing up in the footer if you input the email in the header and vice versa. I would try adding it in only one place to start.
Forum: Plugins
In reply to: [MailChimp Sign Up] No Link to Select ListI never had a response from JHS8 so I’m not sure what the fix would be. I know that the latest WP update had some significant JQuery changes.
Forum: Plugins
In reply to: [Facebook Events Importer] broken in 4.5.2I think the issue you are having is that you don’t have any upcoming events in Facebook. Try creating a new event in Facebook set for a future date to test this.
After that run the importer again to refresh the list and see if you get the new event to show up under https://iedc.ie/gigs/
Forum: Plugins
In reply to: [Facebook Events Importer] Header comes and goes?!Glad it helped. Just remember when you’re developing content you may need to clear the cache to view your updates right away. This really depends on how you set up Super Cache or W3 Total cache. Whichever you went with.
I believe you’re using font awesome in your project. I noticed a few warnings pertaining to font rendering issues in your CSS. The “skipping” is likely the fonts loading and changing due to font rendering.
I would suggest downloading or converting your fonts and using the @font-face property rather than relying on a heavy utility like font awesome. This way you can control when and how to load font characters rather than sprite sheets or other unnecessary resources that it depends on. Google Fonts is a quick way to implement fonts without custom @font-face loading.
Example:
@font-face { font-family: 'MyWebFont'; src: url('webfont.eot'); /* IE9 Compat Modes */ src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('webfont.woff2') format('woff2'), /* Super Modern Browsers */ url('webfont.woff') format('woff'), /* Pretty Modern Browsers */ url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */ url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */ }
Forum: Plugins
In reply to: [Facebook Events Importer] Images are not importing with eventNope not Voodoo. I actually did implement a function during the deactivation process for issues like this.
So yes do the Deactivation and Reactivation after step 1. If you’re struggling with this issue.
You may lose any permalink settings that correspond with the events plugin though.
Forum: Plugins
In reply to: [Facebook Events Importer] Not all the events are displaydThis plugin will not show Past events. So if they are expired they will not be displayed.
Forum: Plugins
In reply to: [Facebook Events Importer] Load more events Frontend doesn't work!I see you have a javascript issue related to that like widget in your footer most likely. Did you try turning that off?
Forum: Plugins
In reply to: [Facebook Events Importer] Just Purchased…It was $15.20. Not a support question and resolved via email. Did not realize it was posted here.
Forum: Plugins
In reply to: [Facebook Events Importer] DOesn't workDid you read any threads? The answers to common issues
are here. This is an issue caused by your server running an outdate php version. Simply update to 5.4 or better and you’d have been golden. Sites looking good though.I literally have 0 emails from you or purchase data. Try email again
Cheers.
Forum: Plugins
In reply to: [Facebook Events Importer] App ErrorYup! This will be adjusted as long as I can recreate the issue somehow. Are you guys using internet explorer by any chance?
Forum: Plugins
In reply to: [Facebook Events Importer] Update Events manuallyUpdate the events on Facebook.
Or create a new one inside the custom post type Facebook Events
Example Cron:<?php add_action( 'wp', 'fbe_cron_setup_schedule' ); function fbe_cron_setup_schedule() { if ( ! wp_next_scheduled( 'fbe_cron_hourly_event' ) ) { wp_schedule_event( time(), 'hourly', 'fbe_cron_hourly_event'); } } add_action( 'fbe_cron_hourly_event', 'fbe_cron_do_this_hourly' ); function fbe_cron_do_this_hourly() { // Check for new events every hour $pages = get_option("facebook_pages"); $location = array_filter(explode(",",$pages)); foreach ($location as $loc){ fbe_facebook_sdk($loc,get_option("app_id"),get_option("app_secret")); } update_option('fbe_cron_date', time()); } ?>
Forum: Plugins
In reply to: [Facebook Events Importer] Page not found@tooster can you provide a link. It could be many things.
Forum: Plugins
In reply to: [Facebook Events Importer] Import in Custom Post-TypeDude, Trying to merge two plugins is way beyond the scope here. Sorry. If no-one else has made any suggestions this should be closed.