cconoly
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-FlyBox] Blank Content on facebook tabWhen it shows blank like that in an iframe it is usually because there is a restriction of age or country. Go to your Facebook settings “Manage Permission” then set “Age Restrictions:” Anyone 13+ and remove any country restrictions. If you have any restrictions at all, then Facebook cannot verify if you pass the restriction while it is in an iframe. Remove the restrictions on your facebook page and let me know if that solves the problem.
I have made a couple small edits to how the hover works and it should be a bit more responsive. It should respond quicker and not do the hovers that were fired a while back in succession. Please update the plugin and let me know if you have any other problems!
Forum: Plugins
In reply to: [WP-FlyBox] Change text coloursIn the update coming out today I added IDs for each piece. You can customize the font, color, input areas, etc. of each section using CSS. Below are the IDs:
wpfb_contactMe
wpfb_name
wpfb_email
wpfb_message
wpfb_captcha
wpfb_submitExample:
#wpfb_contactMe { color: blue; }
Please update to the latest version that comes out today and let me know if that solves your problem. Thanks!
I think I see what you mean. The extra space was intentional at first since this plugin was only social tabs. Usually the social tabs are much taller than the button and when there were multiple, the top tab (when opened) covered the buttons below. Moving the tabs out bast the buttons below solved this. I added an option under Dsiplay Options to remove the extra whitespace. This update is being released sometime today. Please update the plugin, change the setting and let me know if that solves your problem. Thanks!
Forum: Plugins
In reply to: [WP-FlyBox] Instagram permissions failsInstagram has approved this app. It should now be working correctly. Please let me know if there are still problems. Thanks
which browser are you you using?
Forum: Plugins
In reply to: [WP-FlyBox] Instagram permissions failsInstagram started requiring plugins that use their API to be approved. WP-Flybox is currently pending review by instagram and hopefully will be back to functioning correctly soon! Sorry for the inconvenience!
Forum: Plugins
In reply to: [WP-FlyBox] Wpfly box not workinNevermind. I found the problem. WP-Flybox and your “aside” widget (form your theme I assume) are using the same CSS ID. I changed WP-Flybox’s ID to a more non-generic name and it should fix the problem. Please upgrade WP-Flybox to v 6.35 and let me know if your problem is solved. Thanks!
Forum: Plugins
In reply to: [WP-FlyBox] Wpfly box not workinThanks for this. What theme are you using?
Forum: Plugins
In reply to: [WP-FlyBox] Wpfly box not workinI see it works fine on all the pages except the homepage. It is probably an interference with another plugin. Try disabling whatever plugins you are using for your homepage and see if that solves it? If so let me know which plugin caused it and I will look into why. Thanks
Forum: Plugins
In reply to: [WP-FlyBox] Not visible any moreGreat! Thanks
Thanks! What theme are you using?
Forum: Plugins
In reply to: [WP-FlyBox] Not visible any moreOr if your theme allows custom CSS you can put the following in the custom CSS…
.wp-flybox_tab iframe { visibility: visible !important; opacity : 100 !important;}
Forum: Plugins
In reply to: [WP-FlyBox] Not visible any moreIf you use the avada theme or similar it can be found in the
wp-content/themes/Avada/includes/class-avada-init.php
file. If not there then I have no clue where it would be. It is part of your theme it seems.Forum: Plugins
In reply to: [WP-FlyBox] Not visible any moreTry changing the code :
<div class="fusion-youtube-flash-fix">­<style type="text/css"> iframe { visibility: hidden; opacity: 0; } </style></div>
to..
<div class="fusion-youtube-flash-fix">­<style type="text/css"> iframe { visibility: hidden; opacity: 0; } .wp-flybox_tab iframe { visibility: visible; opacity : 100;} </style></div>
This keeps the iframes hidden for the “fix”, but shows them only for the plugin. let me know how it works.