cconoly
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-FlyBox] WP-FlyBox will not work after going liveThat means you don’t have full privileges. Here is a workaround:
1. Save WP-Flybox plugin to your computer.
2. Unzip it and find static/FlyBoxSpriteRight.png
3. Go back to wordpress admin and then to media and upload this image as a new wordpress media file.
4. Once uploaded go to edit the media file and on the right side will be a form box labeled File URL. Copy that file URL.
5. In wordpress admin go to plugins>editor
6. At top right choose wp-flybox and click select
7. Under plugin files look for wp-flybox/includes/facebook.php (it’s like 10 down on mine)
8. Find where it says:
background-image:url(\''.WP_PLUGIN_URL.'/wp-flybox/static/FlyBoxSpriteRight.png\')
9. Change it to:
background-image:url(\'PASTE_YOUR_COPIED_MEDIA_FILE_URL_HERE\')
so it will look something like:
background-image:url(\'https://trebolcleaning.com/wp-content/uploads/2013/12/FlyBoxSpriteRight.png\')
10. Click update file at the bottom
11. Repeat steps 7-10 but for wp-flybox/includes/twitter.php
12. Repeat steps 7-10 for whichever other tabs you are using. The media file will be the same for all tabs.Let me know if this works. I believe your “one-button” install wasn’t very good and limited access to a few files, and cascaded to your cache plugin and now it has affected the other plugins as well.
Forum: Plugins
In reply to: [WP-FlyBox] WP-FlyBox will not work after going live644 or anything higher will work for the permissions. Can you copy and paste your .htaccess file contents from https://trebolcleaning.com. I think something there may still have the caching half way enabled.
Forum: Plugins
In reply to: [WP-FlyBox] WP-FlyBox will not work after going liveI still cannot see the images for the WP-Flybox plugin.
https://trebolcleaning.com/wp-content/plugins/wp-flybox/static/FlyBoxSpriteRight.png
gives me a 403 permission error. Do you have any kind of security or caching plugin installed?Forum: Plugins
In reply to: [WP-FlyBox] WP-FlyBox will not work after going liveI found a couple problems.
1. In that theme there is an option to hide the full footer. If you go to theme options then footer you can disable it. WP-Flybox and most page plugins attach to the bottom of the page where the footer is. Since the footer is hidden, the plugins dont show up. Try unhiding the footer and it should show the plugins.2. However. None of the plugins images are showing. When I try to view them it tells me that I do not have the correct credentials access to them. There must be something in your htaccess or server configuration to disable direct access to your wp-content folder. Since the images do not show you cannot really see the tabs on the right side of the screen, but if you hover your mouse over there, then it will slide out.
Let me know if you are able to atleast slide the plugin out after unhiding the footer. If you cannot figure out what server configuration is messing it up, I can walk you through how to reference the image off of your server where there is no server errors.
Forum: Plugins
In reply to: [WP-FlyBox] WP-FlyBox will not work after going liveOK Did you try reinstalling WP-FlyBox? Is WP-Flybox plugin enabled and turned on right now?
Forum: Plugins
In reply to: [WP-FlyBox] WP-FlyBox will not work after going liveHmm… as for the images not showing up, it could be an installation issue and I would try reinstalling or downloading and manually uploading the files.
Usually if WP-Flybox is conflicting with other plugins it is because WP-Flybox uses an older version of jquery. You can disable WP-Flybox’s jquery and just use one on another plugin. To do that go to the bottom of the WP-Flybox Settings and you will see an option to disable it.
Please try reinstalling or manually installing and disabling WP-Flybox’s jquery and let me know if you get any better results!
Thanks!
Forum: Plugins
In reply to: [WP-FlyBox] Warning Message on Instagram TabOh I see, that is my fault, I missed an argument. Please update to version 4.2 to fix this issue. Thank you so much for letting me know about it!!
Forum: Plugins
In reply to: [WP-FlyBox] Translate to spaninshThere is no easy way of doing that. Sorry. You would have to edit every file that has text and translate it all to Spanish. If I have time soon I may try and see if I can make it any easier to do.
Forum: Plugins
In reply to: [WP-FlyBox] Facebook Link not displayed in WP-FlyboxI see you have it working on your site now. I will mark this thread resolved.
Forum: Plugins
In reply to: [WP-FlyBox] Facebook Link not displayed in WP-FlyboxHey Bjorn,
Facebook only allows Facebook Pages to be shown on external websites. Since the link you want to use is a personal one it will not show up. This is a limitation on Facebook’s end. If you want to create a Facebook page for your website and use that link, then it will work.This may help also. It is a quick tutorial on how to convert your personal profile to a fan page or other type page that will work on external sites.
https://www.facebook.com/help/116067818477568/#How-do-I-convert-my-personal-account-to-a-Facebook-PageForum: Plugins
In reply to: [WP-FlyBox] Problem with WP-FlyBox and Responsive ThemeGREAT! Thanks for the help!
I am marking this post resolved. Let me know in a new post if you have any other problems.
Forum: Plugins
In reply to: [WP-FlyBox] Problem with WP-FlyBox and Responsive ThemePlease update WP-Flybox to version 3.8 for the possible fix. I never could get the same results as you did, but I have an idea of what may have caused it. I issued an update fixing what I think may have been the problem. Try removing the lines of code you added earlier to manually insert it, update to 3.8 and then please let me know if this update fixed it. Thanks!
Forum: Plugins
In reply to: [WP-FlyBox] Problem with WP-FlyBox and Responsive ThemeOh ok I think I see what might be wrong. I will try and push out an update this afternoon if I can get it fixed. Thanks.
Forum: Plugins
In reply to: [WP-FlyBox] Problem with WP-FlyBox and Responsive ThemeI tried leaving the mainpage blank and used the themes front page and everything still worked correctly. The only way I was able to make it not show on front page was when I unchecked the “show on front page” option in the WP-Flybox settings. Double check for me and make sure that you have the box checked to show it on the front page in the WP-Flybox settings. Thanks
Forum: Plugins
In reply to: [WP-FlyBox] Problem with WP-FlyBox and Responsive ThemeIf you want to manually insert the tabs then there are two things that need to be included. They are the tabs and the stylesheets for the tabs
Put the following code in your header.php right below
<?php wp_head(); ?>
:
<?php include_once('wp-content/plugins/wp-flybox/includes/css.php'); ?>
and the following right after the <body> tag:
<?php include_once('wp-content/plugins/wp-flybox/wpflybox_import.php'); ?>
so that the end result will look like:
<?php wp_head(); ?> <?php include_once('wp-content/plugins/wp-flybox/includes/css.php'); ?> </head> <body <?php body_class(); ?>> <?php include_once('wp-content/plugins/wp-flybox/wpflybox_import.php'); ?>
I did not actually test that this will work, so let me know if it works and if not then I will see what I can do. This will also manually insert it into every page even if it is turned off in WP-Flybox settings. Let me know if you need it to be turned on and off or on specific pages and I can help you to add limiters to the manual code. I am still going to try and figure out why it won’t show the right way, but I am unable to produce the same result you had by making the “static mainpage” tab empty because I cannot find that tab?
Thanks