Forum Replies Created
-
-
Hello all,
we are working on a new version and we are close to releasing it.
It will make sure the Flowplayer is properly cached for each version, so you won’t have these issues after the upgrade. I was able to reproduce some of these issues, but clearing the browser cache always solved the issues.
We also put in an improved play icon, which is more visible of bright backgrounds.
Hello Keith,
the plugin works actually works with both [flowplayer] and [fvplayer] shortcodes. No need to update all of these to [fvplayer]. This was just a mistake in the Settings screen, it should not be recommended to do unless you are having no issues with the new version.
Thanks,
MartinHello Nize,
you mentioned there is no play button – could you please check if you are not using white background? Just try to change the “canvas” color in Settings –> FV WordPress Flowplayer to black and see if that helps.
The problem is that the new Flowplayer icon is white and so it’s not visible on white background.
We haven’t noticed any issues with Firefox or with missing controls.
Thanks,
MartinHello Sozo,
could you please tell us what browser are you using? We haven’t noticed any issues with closing of the shortcode editor dialog window.
Also, what other plugins are you using? There could be some JavaScript conflict.
Thanks,
Martin12 years ago in reply to: Integrating with existing newsletter pluginHello Tori,
our plugin was designed to work with the existing newsletter. So you just need to enter your signup form code into the “Enter your newsletter/feed subscription code here” field in Settings –> FV Feedburner Replacement.
In case of Newsletter Pro plugin, the code is:
[newsletter form=”1″]
Thanks,
Martin12 years ago in reply to: Category Slug Showing Instead Of Page SlugHello Ken,
thank you for letting us know!
That means our fix which we have planned will surely help you and you won’t be having this issue anymore.
Thanks,
Martin12 years ago in reply to: Category Slug Showing Instead Of Page SlugHello Ken,
Settings –> Permalinks should really help, it’s bit of mystery why it didn’t helped on your site.
If this is important for your work, I would suggest you use our pro plugin support option, where we can fix the plugin directly on your site or find a reason for this issue and make sure it doesn’t appear again.
Other than that, we will work on the new version and make sure it works for us, perhaps it will help your issue too.
Thanks,
Martin12 years ago in reply to: Category Slug Showing Instead Of Page SlugHello Ken,
thank you for the bug report.
please try to visit the Settings –> Permalinks screen after you added the page. That might help.
Could you please let us know if it helped? It would make fixing of the bug easier.
Thanks,
MartinHello Sergey,
this is a WP design issue. We expected that the “supports” attribute of the register_post_type() function would allow you to enter “fvseo_meta” to show our meta box, but it does not.
If you know a bit of PHP, you can use this code to add out meta box to your custom post type:
add_action('admin_menu', 'yoursite_your_custom_pos_type_meta_box');
function yoursite_your_custom_pos_type_meta_box() {
global $fvseo;
if( is_a( $fvseo, 'FV_Simpler_SEO_Pack' ) ){
add_meta_box('fvsimplerseopack',__('FV Simpler SEO', 'fv_seo'),
'fvseo_meta', 'your_custom_pos_type');
}
}It should not be a problem, as most of the time you need to know PHP to create these custom post types in the first place.
If this is important for your work, we are happy to add this feature into our plugin. Just use our pro plugin support (as a donation for our open source development).
Thanks,
MartinHello Lopsang,
I’m not sure what you mean. Are you looking for some way of customizing the layout of the WP Link Robot link pages?
Thanks,
Martin12 years ago in reply to: Broken after 3.4 update?Hello Szaleq,
we are happy to assist you in finding the source of the problem, just use our professional plugin support. There might be a conflicting WordPress rewrite rule in some other plugin.
Thanks,
Martin12 years ago in reply to: Broken after 3.4 update?Hello Szaleq,
we upgraded a lot of WP sites and haven’t noticed any issues.
It might be depending on what version of WordPress you upgraded the site from. Try to visit the Settings –> Permalinks screen and re-save. It should help with any issues.
Thanks,
Martin12 years ago in reply to: IP already banned!Hello Seemoonlight,
thank you for your interest in our plugin!
You should be able to see a list of banned IPs in: Settings –> Discussion –> Comment Blacklist
So you should be able to remove your IP. If you don’t know your IP, you can find out what it is here: http://www.infosniper.net/
I see that the button should not be there for your own comments, I’ll put that on our list of fixes.
Thanks,
MartinHello Vijay,
if this is important for your work, you might just submit a request at our pro plugin support. That would allow us to fix the problem directly on your website and also fix any related problem in our plugin.
Also, we are preparing a new version of the plugin. So maybe you won’t have these issues with the new version.
Or if you know a bit of PHP, you can add a log for this in update_spam_count() function. A dump of both POST and SERVER variables together with the spam_count variable into a text file would be really helpful for any debugging.
Thanks,
MartinHello Gal,
do you mean the index page settings in Settings –> FV Simpler SEO? If so, try using the qTranslate language tags like: <!–:en–>English<!–:–><!–:de–>Deutsch<!–:–>
Thanks,
MartinHello Vijay,
all spam caught by FV Antispam should be in trash. Each message should increment the counter by one.
If you are using Akismet, check if you didn’t enabled “Auto-delete spam submitted on posts more than a month old.”. Checking that will make Akismet hard delete all spam comments on posts older than one month.
Perhaps these messages are incrementing the counter, but you don’t see them as they are hard deleted (without going to trash).
Also, are you using any caching other than WP Super Cache or Hyper Cache? I’m not sure how, but I don’t see any reason why the number should fluctuate like that. The plugin uses it’s own option “fv_antispam” which is array, so nothing should interfere with it.
Thanks,
Martin12 years ago in reply to: WordPress Download Manager Pro CompatibilityHello Barry,
Download Manager probably includes a set of small plugins which act like new buttons in TinyMCE. Adding that into our plugin would be a bigger job.
If Download Manager works outside of posts, it would be probably easier if it would fall back to using TinyMCE when Download Manager screen is loaded.
Thanks,
Martin12 years ago in reply to: FV WordPress Flowplayer not workingHello Renee,
then this has to be a conflict with some other plugin.
You can try to check your JavaScript error console, there is probably some error (instructions here).
If this is a time sensitive fix which you need for your work, I would suggest you use our Pro plugin support. Or perhaps this issue won’t occur in new FV WP Flowplayer (with Flowplayer version 5).
Thanks,
Martin12 years ago in reply to: FV WordPress Flowplayer not workingHello Renee,
we tested this again and it works for us.
Are you using any weird popup message code for the video? Are you using our WP Mobile Video Player extension?
At any rate, we are currently working on Flowplayer 5 integration, so we will add any fixes into it.
Thanks,
Martin12 years ago in reply to: qTranslate and custom post typesHello Konrad,
thank you for the code sample!
It looks good. Other way of doing this is by hooking into admin_menu and adding the meta box there in a new plugin:
add_action(‘admin_menu’, ‘fv_tweak_admin_menu’);
function fv_tweak_admin_menu() {
add_meta_box(‘fvsimplerseopack’,__(‘FV Simpler SEO’, ‘fv_seo’), ‘fvseo_meta’, ‘[your_custom_post_type_slug]’);
}Thanks,
Martin12 years ago in reply to: Short Titles with HTML Special CharacterHello Mia,
we included your fix in our new version, which will be released soon.
You can test it out here: http://foliovision.com/downloads/fv-all-in-one-seo-pack-1.6.19.zip
Thanks!
Martin12 years ago in reply to: FV Simpler Seo multi languageHello Gerhard,
this is bad news, as we put in some effort to learn qTranslate and also worked on making our plugin compatible.
Did you already moved your site to stella-free? Is that anything like qTranslate and is it easy to convert?
They have broken images on their WP.org plugin page, so it’s not a good advertising: http://wordpress.org/extend/plugins/stella-free/screenshots/
However there are people saying qTranslate works in WP 3.5: http://wordpress.org/support/topic/plugin-works-under-35?replies=12
And there are more fixes here: http://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=3831
Thanks,
Martin12 years ago in reply to: FV Simpler SEO and FV DescriptionsHello Brian,
you can find these under “_aioseop_description” meta key in WordPress post_meta table.
Thank you for interest in our plugin.
Martin
12 years ago in reply to: Short Titles with HTML Special CharacterHello Mia,
I see what you mean. Thanks for your workaround. I think a more simple htmlspecialchars_decode() would be enough. We will fix this for next release.
Thanks,
Martin12 years ago in reply to: audioHello Mai,
sorry about the delay here.
I’m not sure how we can use some whitelisting, since the Flash component of the Flowplayer runs on the user’s computer, so we must allow access to the file.
You should look into the original Flowplayer site – if somebody has a suggestion, it’s them. If there is a solution, then we can perhaps integrate it to out plugin for easier operation with it.
Thanks,
MartinHello Jonathan,
sorry about the delay.
If you homepage is not using WordPress, then it would be fairly tricky to integrate FV Simpler SEO into it. But you can start by loadin wp-load.php in it and then getting the required option and echoing it.
Thanks,
MartinHello Fred,
you should start by checking if the video FLV or MP4 file URL opens for you in your browser.
Then you can for example check the access logs to check if Flowplayer is trying to fetch the file properly. If it appears to be using the correct path, then you are probably not using the right mp4 encoding. Check supported codec here: http://flash.flowplayer.org/documentation/technical-facts.html
Thanks,
Martin12 years ago in reply to: Flowplayer 5 – Solved!Hello Misha,
iPad doesn’t support Flash or Flash video, so I guess you would have to encode into mp4 too.
Thanks,
Martin12 years ago in reply to: Flowplayer 5 – Solved!Hello Misha,
if you’re looking for player that plays on mobile devices, you might want to check out our extension for FV WordPress Flowplayer, WP Mobile Video Player. See the demo here. This extension supplies different video for different devices, using Flowplayer for normal browsers and HTML 5 video for mobile browsers.
Unfortunately, we can’t promise any exact time line of when we will integrate Flowplayer 5 which will work with HTML 5.
Thanks,
Martin12 years ago in reply to: Uninstalling the pluginHello Pavol,
the multilanguage plugin is probably creating a lot of new WordPress rewrite rules for all the different language prefixes (/en, /de and so on).
So this is not a simple task at all. If you have an experience with adjusting Wordpres rewrite rules, you can take a look at the fv_top_level_categories_rewrite_rules() function in the plugin and adjust it so that it adds the language prefix for each language or something similar. If your fix would be good enough, we would be happy to include it in our plugin for future releases (so you could use auto updates without worries).
Otherwise if you need help and this task if important for your work, I would recommend you let us know using the contact form on our site, we would be happy to help you.
Thanks,
Martin12 years ago in reply to: submit buttonHello Michael,
we fixed this in the documentation. The instructions on wordpress.org and our site were correct, however there were instructions in the plugin admin page and these were not updated until now.
Thanks,
MartinHello Nick,
thank you for reporting this.
I can’t promise you exact time line of when we might be able to fix this in the plugin. If this fix is important for your work and you can contribute to our open source development, we are happy to fix this for you, just use the donate button on our WP Link Robot page.
If you know some PHP, you should be able to fix this yourself. Just have a look at the eblex_niceify function in our plugin and if you improve it, we would be happy to include your fix in the plugin.
Thanks,
Martin12 years ago in reply to: submit buttonHello Michael,
thank you for reporting this.
WordPress doesn’t like the HTML comments, there is a function called wptexturize which does all of this. We typically handle this function bit differently by our editor Foliopress WYSIWYG, so we haven’t noticed it.
However the fix with the shortcode is the proper one. Sorry about the mistake in our documentation, we will fix it.
Thanks!
Martin12 years ago in reply to: Fix for category_link()Hello svsdnb,
yes, our plugin works with WordPress 3.4.2.
If you are having any strange issues with category or post URLs not opening, just visit Settings –> Permalinks to refresh the rewrite rules and the issues should disappear.
Or there could be some plugin conflict too, but we only registered that kind of issues, when we were putting up some more custom rewrite rules to test something out.
Thanks,
Martin12 years ago in reply to: Amazon S3 videos supportHello Mac,
I assume you mean Amazon S3.
Are you sure that your files are not set to be private or password protected and that they open in your browser for download when opened with link like this?
“http://your.s3.amazonaws.com/video.mp4”
Thanks,
MartinHello Jason,
Foliopress WYSIWYG has no problems with the most recent WordPress versions, it shows up in the Settings properly.
Once the image is inserted, you can right click it and change some of its properties. However we need to clean up that dialog box, as changing styling like that is not a good practice. It’s better to setup a few classes for the images in your CSS and then apply the classes using the Formating drop down menu. You can read about how it’s done in our Foliopress WYSIWYG installation guide
Thanks,
Martin12 years ago in reply to: Prevents “Plain text editing” from workingHello Bob,
sorry about the issues with logging into our support forum which you reported.
The “Plain test editing” is a feature of Foliopress WYSIWYG and not of WordPress. Thank you for reporting this, we will have to fix that.
Thanks,
Martin12 years ago in reply to: Fix for category_link()Hello svsdnb,
you should be able to use FV Top Level categories as it is, without any modifications.
Why are you trying the above modification if the code has been already included in our plugin?
Thanks,
Martin12 years ago in reply to: Fix for category_link()Hello svsdnb,
you should be able to use FV Top Level categories as it is, without any modifications.
Why are you trying the above modification if the code has been already included in our plugin?
Thanks,
Martin12 years ago in reply to: audioHello Irfan,
here’s how you can adjust the default volume – you only need to modify the JS used to play the video in our plugin.
We plan to move to new version of Flowplayer – version 5, so we don’t want to upgrade the current version too much. I’m not sure how this will work in the new version. However if this is important for your work, we would be happy to add this feature for you – just use the “Donate” button here to support our open source development and let us know: http://foliovision.com/seo-tools/wordpress/plugins/fv-wordpress-flowplayer
Thanks,
MartinHello Rod,
we can fix this in the next release. If this is important for your work and you are willing to contribute to our open source plugins, we can accelerate the development, just let us know and use the “Donate” button here: http://foliovision.com/seo-tools/wordpress/plugins/wp-link-robot
Alternatively, you can just have a look into the code in wp-link-robot.php at line 343, where the check for ‘link-reciprocalurl-new’ is and make sure it’s never true. Then it won’t check for any reciprocal link at all.
Thanks,
Martin12 years ago in reply to: Custom toolbars gone after last upgradeHello Matt,
you are right about JustifyBlock, I updated our documentation with it.
However these buttons add CSS class to the element rather than inline styles. Instructions for what CSS should be added for these features to work are included in the Settings –> Foliopress WYSIWYG page, but of course we will try to make it as seamless as possible. We just believe there shouldn’t be any inline styling and classes should be used for everything. That allows easier design adjustments in the future if you ever change your template.
Thanks,
Martin12 years ago in reply to: Flowplayer not working on wordpress siteHello Johhny,
you should be able to remove the “splash” attribute of the shortcode, that will remove the image.
I updated this in “Manual editing” section of our user guide: http://foliovision.com/seo-tools/wordpress/plugins/fv-wordpress-flowplayer/user-guide
Thanks,
Martin12 years ago in reply to: Custom toolbars gone after last upgradeHello Matt,
I tested this and Anchor,FontSize,HorizontalRule are working.
However JustifyFull is not. That was not in our documentation, so I updated that.
Thanks,
Martin12 years ago in reply to: Flowplayer 5 – Solved!Hello Desean and Jay,
sorry about the delayed reply – yes, we plan to support Flowplayer 5. HTML5 support will be very important as both Apple and Microsoft seem to do everything to stop Flash.
Thanks,
Martin12 years ago in reply to: Custom toolbars gone after last upgradeHello Matt,
sorry about the issues. The new version uses CKEditor which is a lot faster than FCKEditor, but it also brings up these differences.
We tested what we could, but for cases like this, we included a notice appearing below the upgrade message on the plugins screen.
We will have to include some check in the upgrade if there are unsupported toolbar items defined.
The custom toolbar configuration however works. Perhaps you are entering some button which has a new name. I documented the new available toolbar buttons here: http://foliovision.com/seo-tools/wordpress/plugins/wysiwyg/installation
Thanks,
Martin12 years ago in reply to: Flowplayer not working on wordpress siteHello Johnny,
this might depend on if you have auto play enabled or if you are using splash images. I would suggest that you start with no splash images and autoplay turned off, that really should work.
If the autoplay is on, the splash image might need to be removed for it to work.
Hello Gail,
the path “http://www.lwvchaffeecounty.org/example.flv” is not correct unless you have the example.flv stored in your website root folder. You need to put in full path to the FLV file. If you follow our instructions, you should get the correct path: http://foliovision.com/seo-tools/wordpress/plugins/fv-wordpress-flowplayer/user-guide
Thanks,
Martin12 years ago in reply to: FV WordPress Flowplayer not workingHello Gail,
our plugin works with WordPress 3.4.2. Just double check that the src parameter in the inserted flowplayer shortcode is correct. Perhaps you are using some non-standard path for your uploads and the path is not correct.
If you need this up and running, you can order our professional plugin support and we will fix it for you on your site (if it’s our plugin) or recommend a solution (if it’s something else – a plugin conflict).
Thanks,
Martin12 years ago in reply to: Unable to upload imagesHello Robert,
thank you for trying the new version, we hope you find the new editor faster and easier to use.
However there was no change in the SEO Images file manager part of our plugin. Could you please try to upload some other and small image and see if it still happens?
Thanks,
MartinHello Mia,
you probably have error reporting turned on, which is not good for security and performance. You can check display_errors setting of PHP as it can be added into WordPress.
However we should still fix this. Could you try to send us this warning once again? It seems it didn’t made it through to our system in it’s full length. That would be a nice report which would allow us to fix the issue, but we will check for warnings anyway to make sure we don’t cause these. But it might be a plugin conflict too.
Thanks,
Martin12 years ago in reply to: qTranslate and custom post typesHello Bernhard,
thank you for your report, it really helps.
We will check this out and add the capability for custom post types, but I can’t promise you when it will be done as our schedule is full right now.
Let us know if these features are important for your work and you can donate this project and contribute this way to open source (you can use the donate button here).
If you know a bit of PHP, you can also use WP function add_post_type_support to add out editing box to your custom post type.
Thanks,
Martin12 years ago in reply to: Flowplayer not working on wordpress siteHello Johnny,
are these videos in the same post or page? Do they work if you put them into different posts?
There could be something wrong with your template that is causing this, as multiple videos on the same page work. We would be happy to solve this issue directly on your site using our professional plugin support, but please make sure both videos play when they are in different posts and there is only one video in your browser window.
Hello Shafiq,
I’m sorry, but that really looks like an issue with your video encoding.
Thanks,
Martin12 years ago in reply to: Flowplayer not working on wordpress siteHello Michael,
you could try to download the file using the URL which gets inserted into the flowplayer shortcode to make sure it’s a correct path. If you can’t download it, neither Flowplayer is be able to do so.
Thanks,
MartinHello jay,
you can enter category description right in WordPress Admin –> Posts –> Categories when you edit one of them. This will populate the meta description field on category archive. I’m not sure if it works for tag archive with our plugin though, perhaps we missed that.
Thanks,
Martin12 years ago in reply to: FV WordPress Flowplayer not workingHello clk55,
we never had issues with IE9, but you might want to try save the page HTML into a file on the server and troubleshoot by removing all the other scripts.
Thanks,
Martin12 years ago in reply to: “Movie Not Loaded” after clicking on play.Hello Michael,
you might try to use the SWF from the 1.0.6 version in the latest version and see if that works.
Otherwise there is not much we can do without actually fixing it on your site (we would be happy to help you, just let us know), as this looks to be related to the core Flowplayer.
Thanks
Martin12 years ago in reply to: Link list has disappearedHello Soccerwidow,
you should be checking Tools -> Link Robot -> “Directory slug name” option it should contain the URL slug of your page which contains the [wp_link_robot_genlinks] shortcode. That’s where the list of links should be displayed.
Alternatively you can try to leave that field empty, to see what happens. In that case, the link directory should not use pretty permalinks, but it would be a good troubleshooting to see if it helps with your problem.
If you need this section to work on your site quickly, you can consider the professional plugin support which we offer.
Thanks,
MartinHello Eric,
this might be tricky, as there is quite a bit of settings.
To figure this out, you should make the shortcodes more simple. Try to remove everything but src, width and height and see what happens. Then you can add autoplay=false to videos which should not start playing automatically. These can also have splash images.
If you just want to make this work on your site, I can recommend you our professional plugin support.
Thanks,
MartinHello Philip,
we tested this and you are right, the option is not saving properly. We will include the fix in next version.
If this functionality is very important for your work and you are able to make a donation to our open source plugin as either individual or group, we wold be happy to accelerate the development for this feature.
Thanks,
MartinHello Eric,
sorry for not responding earlier. I’ll double check how the global setting and setting in individual shortcodes are working.
Thanks,
Martin12 years ago in reply to: FV Simpler SEO and FV Descriptions12 years ago in reply to: FV Simpler SEO and FV DescriptionsHello Philip,
with FV Descriptions you can check quickly which of your posts don’t have meta descriptions filled in, so you can add these missing descriptions quickly. FV Simpler SEO makes sure the SEO fields are there for search engines and provides interface for editing of these fields, while FV Descriptions just provides interface to speed up the editing of the descriptions. Useful when you know that you have a lot of old posts which don’t have any descriptions.
Thank you for interest in our plugins!
Martin
12 years ago in reply to: FV Simpler SEO and FV DescriptionsHello Philip,
FV Descriptions allows you to edit meta descriptions for your posts quickly, as you can edit these descriptions for multiple posts on a single screen and you don’t have to go post by post.
You can read about it more about it here: FV Descriptions
Currently we are planing to add a support for editing of SEO titles and auto-detection of SEO plugin used (yes, it supports fields of some other plugins too).
Thanks,
Martin12 years ago in reply to: Custom fonts, dropdown menus not working.Hello Mattias,
I can see the problem. It occurs because you are using the style attribute with apostrophe symbols in it.
You should be putting in just a class attribute with some class name and then add the class style definition in your CSS file. Other advantage of this approach is that you can change the font in future easily.
Thanks,
MartinHello Frank,
the default values should certainly be 755 and 644, so we will fix that. We are using 755/644 and PHP FastCGI, but there defaults should be safe.
These are used for new directories and files uploaded via the built-in image manager – SEO Images. As you noted, they might come handy in special setups like yours.
Thank you for letting us know about this.
Martin
Hello Frank,
I’m not sure if your post title came properly into our site. Could you please tell us what problem do you have again?
Thank you for your interest in our plugin!
Martin
12 years ago in reply to: Only the add links section is showingHello Ignacio,
it looks like a problem with your WordPress version, as people reported before that after upgrading WordPress the issue was resolved.
So I would recommend that you sort out the issues with the old plugin.
It this fix is important for your work and you can donate to this project, then we would be happy to help you site and put in the required fix.
Thanks,
Martin12 years ago in reply to: qTranslate issues with new versionHello Leslie,
I see that we use the other kind of qTranslate notation. I suggest that you use the previous version of the plugin until we add support for the kind of notation you are using.
You can get the previous version here: http://downloads.wordpress.org/plugin/fv-all-in-one-seo-pack.1.6.14.zip
If this functionality is very important for your work and you are able to make a donation as either individual or group, we could be persuaded to accelerate the development for this fix.
Thanks,
Martin12 years ago in reply to: FV WordPress Flowplayer not workingHello Jim,
we recommend that you check if your theme is compatible. You can start by following the second question on our FAQ page for FV WordPress Flowplayer.
Alternatively, we will be happy to help you, just use our professional plugin support. It includes fixing the issue directly on your website, letting you know about where the issue was and fixing bugs found in the process, so it’s sort of a contribution to open software.
Thanks,
Martin12 years ago in reply to: Category issuesHello Eduardo,
the plugin was not really designed with this in mind.
What you can do is to leave the plugin’s option “Directory slug name:” empty. Then you should be able to use your shortcode in a page which you can set as a homepage in Settings -> Reading. That would show the links you have in your root category, but all the sub categories would have ugly URLs without rewrite.
If you are a programmer and you see that you can make some changes in the code to make this work, we are open to your contribution.
On the other hand, if this functionality is very important for your work and you are able to make a donation as either individual or group, we could be persuaded to accelerate the development for this feature.
Thanks,
Martin12 years ago in reply to: Are you implementing titles editor too?Hello Steven,
first of all, thank you for your interest in our plugins.
Editing of SEO titles is a feature that we have planned to add for a while now. However we’ve been quite busy, so there was not enough time to take care of all the tasks like this one.
If this functionality is very important for your work and you are able to make a donation as either individual or group, we could be persuaded to accelerate the development for this feature.
Thanks,
Martin12 years ago in reply to: Splash image at the end of videoHello steven,
there must be some CSS issue. You might want to diagnose that. You can try to do a preview with different template and see if it’s better. Or you can use our professional plugin support, we will be happy to resolve your issue and let you know what was causing the issue, so it won’t repeat in future.
Thanks,
Martin12 years ago in reply to: Splash image at the end of videoHello steven,
thank you for reporting the issue.
I found that there was a mistake in the code. I fixed the issue, the splash image now shows up at the end of the video, when you add splashend=show to the shortcode, or use the insert video dialog.
I added the fixes to the latest version on WordPress.org, so if you remove the plugin and add install again from WordPress.org, it should work.
Martin
Hello Rulatir,
thank you for the bug report and bug fix. We will include it in the next release.
Thanks!
Martin12 years ago in reply to: videos not playing on iphoneHello steven,
if the image is not being scaled properly, I would guess there is some CSS conflict with your template.
If you have no luck figuring it out, you can still use our professional plugin support and we will fix it right on your website.
Thanks,
Martin12 years ago in reply to: Flowplayer not working on wordpress siteHello kiara,
thank you for reporting the issue with the inserting of the code. We will checking that one out.
However the issue MP4 is more difficult. MP4 has many different options. The video codes used has to be H.264 and audio codec has to be AAC. More details can be found here: http://foliovision.com/wordpress/plugins/fv-wordpress-flowplayer/encoding
Thanks,
MartinHello ScifiSlacker,
sorry about the delay. Something happened to our forum notifications, so we haven’t received your message.
If your are having problems with link directory permalink, I would suggest you to check for conflicts with your other plugins. Alternatively you could let us do the work for you on right there on your actual weblog, so we would resolve these conflicts.
Thanks,
Martin12 years ago in reply to: Flowplayer not working on wordpress siteHello Larry,
sure, if the file is in required format, it can be linked from any website.
Thanks,
Martin12 years ago in reply to: Google Indexing issueHello Archie,
sorry about the delay, there was something wrong about our notifications.
Please download the latest development version here, it fixed the problem with canonical links which could cause your issues: http://foliovision.com/downloads/wp-link-robot-0.6.10.5.zip
Thanks,
Martin12 years ago in reply to: Fatal error: Cannot redeclare ffilesizeHello Sascha,
I’m sorry about the delay in our reply, something happened to our notifications.
Could you please check if you are having the same issue when you switch to some other template?
Thanks,
MartinHello Wendy,
sorry about the delay, something happened to our notifications.
Here’s our latest development version which might fix the issues you are having: http://foliovision.com/downloads/fv-wordpress-flowplayer-1.2.17.zip
Could you please install it and let us know if it helps?
Thanks,
MartinHello Alex,
sorry about the delay, something happened to our forum notifications.
Here’s our latest development version which might solve your issues, as it’s using a better way of obtaining the site URL: http://foliovision.com/downloads/fv-wordpress-flowplayer-1.2.17.zip
Please let us know if it fixes your issue.
Thanks,
Martin12 years ago in reply to: Flowplayer not working on wordpress siteHello drake,
Flowplayer is not a Youtube video player – you need to use it with a FLV, H.264, or MP4 video file. In your message it appears, that you are just trying to use URL of a Youtube video, that won’t work. There are other WordPress plugins which allow you to use a Youtube video like that.
Hello Lantz, Larry,
if you have the right file, it should work. Please double check the file encoding and file URL.
Thanks,
Martin12 years ago in reply to: Broken after 3.4 update?Hello kilzac,
you should try to go to Settings -> Permalinks and re-save the permalinks. Then you issue should be solved.
Hello Ken,
there should be no issue with duplicate content, as the URLs with /category/ should redirect to the right category URL with no category prefix. If that was not happening, there must be some plugin conflict on your site.
Hello Alek,
look like your Ajax was not handling 301 redirection properly, as it should still load the category even if there is a redirection to right URL with no category prefix.
Hello Rothbert,
new version of FV Top Level Categories (1.4) is now available for upgrade in WordPress.org. It fixes the WordPress 3.4 and 3.4.1 issues, so if you are having issues, just upgrade.
Thanks,
Martin12 years ago in reply to: Fix for category_link()Hello scribu!
we added your fix into our plugin and released the new version. It was tested in both new and older version of WordPress.
Thank you for your contribution to open source!
Martin
Hello hitcreative,
sorry about the delay, I’m not sure what happened to our forum nofications.
To change the color of the background of the “Format” drop down, add following at the end of “Custom WYSIWYG CSS” field in Settings -> Foliopress WYSIWYG:
.SC_Panel { background: black !important; }
That should do the trick.
Thanks,
MartinHello Mouli,
normally you should be able to give your editor some of the capabilities to allow access to FV Simpler SEO page.
However I checked our code and we are using the obsolete capability check in our plugin which will have to be improved to allow this. I’ll put that on our todo list for the next version of our plugin.
Don’t hesitate to let us know if you need this change quickly.
Thanks,
MartinHello Kendall,
sorry about the delay, something happened to our forum notifications.
We know the kind of issues you are talking about. Sometimes the third party server is overloaded and is slows down your entire website if it’s loading some images or scripts from that server. It could be gravatars, sharing buttons or even stat tracking codes.
That’s one of the ideas behind FV Gravatar Cache, it reduces the amount of external images on site.
We haven’t noticed any issues within admin section yet and the gravatars are not cached in it. One of the issues is that we would have to cache different sizes of the same gravatar.
Thanks,
Martin12 years ago in reply to: Broken after 3.4 update?Hello Rothbert and everybody,
sorry about the delay here, I’m not sure what happened to our forum notifications.
We noticed that there are some issues with FV Top Level Categories in WordPress 3.4.1, so we will work on resolving these and then release a new version of the plugin.
Thanks,
Martin12 years ago in reply to: Fix for category_link()13 years ago in reply to: Support for Yoast SEO PluginHello Allan,
it’s hard to tell where the issue could be. Perhaps the portfolio in the Veles theme is using different template and our plugin is not able to reach it.
If you are interested in really making this work on your site with your set of plugin, you can still use our professional plugin support. It’s a good value package, as we will let you know where the problem is and then the author of template will be able to fix the problem in the template, if there is any.
Thanks,
Martin13 years ago in reply to: Support for Yoast SEO PluginHello Allan,
the FV Simpler SEO plugin uses all the standard WordPress functions. You haven’t included the information about how your theme portfolio is build – are you using pages with custom templates or a plugin?
Anyway, this is not something that should break because of our plugin. There might be other issues with your website. Let us know if you are interested in professional plugin support for your website.
Thanks,
MartinHello Manley
I hope you are doing well, here’s the test version for you: http://foliovision.com/downloads/foliopress-wysiwyg-0.10.zip
So far we haven’t noticed any issues with moving the old settings over.
However when you paste a lot of clipboard text into the editor, it moves your window scroll position in Firefox. That’s one of the last bugs we are figuring out.
Thanks,
Martin13 years ago in reply to: Inserting file link to existing mediaHello Jonas,
I’m sorry, but we had to remove that functionality from our plugin, as one of the recent WordPress upgrades changed the code for that part and our integration was broken. They really made it harder to integrate in plugins.
Thanks,
MartinHi Dennis,
1. You should fix this in your template CSS file. Your bullets probably don’t have proper formating in it when there is a floated element next to them.
There are some nice articles about CSS on WordPress.org. Some good tutorials for bullets are also on w3school.com
3. You asked about “dropdown customization choices”, so I pointed you o the right place where you can read about customizing it.
Thanks,
MartinHello Dennis,
1. Regarding you questions about image formatting – you need to fix this in your template CSS file. Both the issue with bullets and the issue with image border. That’s your master setting which you are looking for. It requires some HTML and CSS knowledge, but that’s the right way of fixing issues like this, no need to adjust the styling in the editor.
2. Editor size setting is described on this WordPress.org page, it’s the “Size of the post box”.
3. Dropdown customization – you can read about this in our Foliopress WYSIWYG Installation Guide, Dropdown customization section.
Thanks,
MartinHello Dennis,
a) Please try to re-save the options. Perhaps that will help. We are currently working on a new version of plugin which uses a new code for this part.
b) You are right, the options for image alignment are all there.
c) You need to do a right mouse click on the image to insert it. On Mac, you need to do Ctrl + Left click. All of this is in the our Foliopress WYSIWYG user guide.
d) You can change the editor size in Settings -> Writing. The issue with full screen is another bug which is addressed in our new version which will be out in few weeks. You can disable the admin bar in your user profile to have a quick workaround.
Thanks,
Martin13 years ago in reply to: Default Gravatar ImagesHello Holly,
I’m not sure what could be wrong here, so let’s try this:
1. when you visit the wp-admin -> Settings -> FV Gravatar Cache screen, check the “Cache directory” path. It should be like public_html/wp-content/plugins/fv-gravatar-cache/images/
2. If you copy your desired image into this directory, name it “default.png” and make sure it has the proper dimensions, it should be visible in the options screen and also in the comments on the site.
To get the Mistery Man image, just edit the s=32 parameter in this URL and open it in your browser: http://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=32
Well, that’s the workaround. The image will disappear again if you click “Empty Cache”. But let’s see if this helps with your site, perhaps then it will be more clear where the issue is.
Thanks,
Martin13 years ago in reply to: FV Antispam: EVERY Comments is TrashedHello Cassim,
we used a lot of Elegant Themes before and we never had any issues.
Could you please test this with the standard WordPress template? It might be a conflict with some other plugin.
Thanks,
MartinHello Cheryl,
we are sorry about the issues, but we can’t replicate the issues you are having. I would suggest that you turn all the plugins off and only keep Disable wpautop active and try if it still deletes your posts on saving.
If it does, then there must be something wrong with your template (functions.php might contain some bad code) or other plugins, as it’s a really simple plugin which literally doesn’t do any processing of the text. It would be a good test to make sure your WordPress works properly.
Or you can order our Professional plugin support.
Thanks,
Martin