Forum Replies Created
-
-
13 years ago in reply to: SEO Header Title
Hello Rob,
what plugin are you using? This support forum is for FV Simpler SEO which has no field for custom SEO title for categories.
Thanks,
MartinHello hilz,
you should be able to switch to standard linking dialog by turning off this option:
WP Admin -> Settings -> Foliopress WYSIWYG -> Advanced Options -> Use WordPress Linking Dialog
The WordPress Linking Dialog which we added to our editor was completely rewritten in WordPress 3.3. and this was not fixed yet.
Thanks,
Martin13 years ago in reply to: Bug in _postmeta meta_key fieldHello Linda,
I guess you are using some special template which shows all the custom post meta values. We didn’t counted on this, but we can fix this in the next release.
Our custom meta value is not showing in the “Custom Fields” editing box when you edit a post, because it’s an Array, so at least that part works ok.
Thanks,
MartinHello Louise,
I see your point. However we don’t like these attachment pages, so we never aimed to have similar functionality.
Could you just simply remove the Lightbox effect form the image link? Or is that not good enough as just opening the image won’t show your site header and sidebar?
Thanks,
MartinHi Mr Duong,
if that worked it was just a side effect. I was not our goal with this plugin.
WordPress 3.3 includes some changes in how the rewrite rules are generated for categories and pages, so putting in support for /subcategory URLs would be tricky, as it would have to check for the pages on the same URL.
If you use hierarchical categories and then you want all the URLs on the same level, I would suggest that you make all the categories master categories and then organize them into structure in the WordPress menu. You can build any structure there and not worry about the actual structure of your categories.
Thanks,
Martin13 years ago in reply to: Compatible with WP 3.3?Hello hilz,
we tested our plugin with WordPress 3.3 already and it works fine.
Thank you for the reminder, we will update our plugin directory information.
Regards,
Martin13 years ago in reply to: how do I insert an image with a macintosh?Hello Teresa,
if you are using Mac computer and you don’t have the right mouse button, you need to hold the Control or “ctrl” key and click the image to see the available options (same as any other contextual menu on Mac).
Then pick the desired image size with just the mouse click – don’t hold the Control key.
Thanks,
MartinHello Joe,
this can be done with a bit of custom programming and PHP knowledge.
The shortcode for FV WordPress Flowplayer is registered like this in fv-wordpress-flowplayer/controller/shortcodes.php:
add_shortcode(‘flowplayer’,’flowplayer_content_handle’);
So you could use remove_shortcode() function (http://codex.wordpress.org/Function_Reference/remove_shortcode) to block our player from initializing based on user membership level.
Thanks,
Martin13 years ago in reply to: Only the add links section is showingHello Rob,
are you still having these issues? When I open your site I can see “Web Designers (1)” with one link in it.
Thanks,
Martin13 years ago in reply to: Support for JigoshopHello Antoine,
our plugin only deals with the standard WordPress permalinks.
If you have any problem with permalinks of Jigoshop plugin, I recommend that you ask authors of that plugins first. They have control over the plugin, so they should be able to handle your request.
It’s more difficult to ask developers to remove the category URL prefix in core WordPress, since they control its future development and it’s used by a lot of users, so it’s harder to make sure all the parts work together. That’s why there is a plugin for removing the category URL prefix – which is optional. But if Jigoshop is a plugin, they should be able to do some modification directly inside of it.
Thanks,
MartinHello jagdynamics,
Foliopress WYSIWYG works only for posts, pages and derived custom post types.
Sorry, it does not work for comment fields.
What exactly do you mean by topic description? Sounds like you expect our plugin to be compatible with some other plugin you are using.
We are currently providing no general hook for our editor which would allow it to work on any text input field of any plugin. The main plugin object has fv_wysiwyg_load() function which replaces the post editing textarea with id ‘content’, so that part would have to be rewritten. If you know a bit of programming, you can probably figure it out – we will be happy to include your improvements.
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.
We prefer our comment and other forms plain text.
Thanks,
MartinHi bergamasque,
thanks for your report. Perhaps re-generating the permalink rules is what helped.
Thanks,
MartinHello David,
Can you try to go into Settings -> Permalinks and hit “Save Changes”? That should reset the WordPress rewrite rules. Let us know if that helps please.
Otherwise you can remove the plugin and install previous version 1.1.3 from a zip file here:
http://wordpress.org/extend/plugins/fv-top-level-cats/download/However the previous version won’t work in WordPress 3.3.
Thanks,
Martin13 years ago in reply to: WordPress 3.3. Menu LabelsHi Gary,
we fixed this and released version 1.6.14. It should be available in Auto upgrade soon. Please do so and let us know if you notice any issues please.
I tested it in both WP 3.2.1 and 3.3 and it worked fine.
Thanks,
MartinHello Jonathan,
we will have a look into this in our own WP Multisite and let you know if it’s just you, or there is some issue between our plugin and WP Multisite.
Thanks,
MartinHello bergamasque,
that is really weird. I would suggest that you try to turn off our plugin and see what happens. If it still persists, then you can start turning off other plugins until you find the reason.
Thanks,
MartinAlso, if you try to open a link like ‘http://blog.com/child-category’ and the correct link is ‘http://blog.com/parent-category/child-category’ – then the WordPress will try to redirect you to some post or page I think which has similar slug. So that would be the reason to the weird redirection issue you are seeing.
Thanks,
MartinHello bergamasque,
we had to fix FV Top Level Categories to work with WordPress 3.3. Check out the latest version please.
Do you mean that you want to link to your child categories like ‘http://blog.com/child-category’ instead of ‘http://blog.com/parent-category/child-category’ ? I’m afraid that won’t work with our plugin anymore – even if it used to in the older version. We had to fix some parts of it, as the category feed links were not working when using /%category%/%post-name% structure.
Thanks,
Martin13 years ago in reply to: Category Feed 404 ErrorHello Ken,
thank you for your report, highly appreciated!
The new version of the plugin should be released tomorrow.
Martin
13 years ago in reply to: Copying Post TitlesHello Brett,
this was done in FV Simpler SEO – when there is no long title, it automatically shows the title in the “Long title” field. Then when you click to it, it’s already there and you can edit it:
http://foliovision.com/seo-tools/wordpress/plugins/fv-all-in-one-seo-pack/Thanks,
MartinHello Matt,
we are not using your test environment anymore. We only used it when we were fixing the issues you reported.
Thank you for your contribution and cooperation.
Martin
13 years ago in reply to: Disabling Featured Image FeatureHello Andreas,
we are glad that you like our editor!
To disable the Featured Image feature of this plugin, you can put this into your template’s functions.php a new simple plugin which you create:
global $fp_wysiwyg;
remove_action( 'wp_ajax_seo_images_featured_image', array( &$fp_wysiwyg, 'featured_image' ) );
remove_filter( 'admin_post_thumbnail_html', array( &$fp_wysiwyg, 'admin_post_thumbnail_html' ) );Or you can set the “Path to images on your web server” in plugin Basic Options to something else than your WP Media path.
Thanks,
Martin13 years ago in reply to: change google descriptionHello Aisak,
you should look at 3 random articles you wrote and check the <meta name=”description”> tags in their source code. It should contain the correct meta description as entered with FV Simpler SEO.
If it does not, then it could be a problem with your theme or a conflict with some other plugin.
Thanks,
Martin13 years ago in reply to: Question about homepage paged formatHello sean and seoweb,
thank you for all the links and you view on this.
I checked what Yoast is doing and it looks nice. WordPress actually puts in a good amount of link rel tags on single posts and pages by default. You can see the same set of link rel=”prev” and link rel=”next” tags in post head section on any WordPress site. I’m not sure how this fits into the advices presented in the article by Google. It links to next and previous post based on post date, so it’s there even when no paging is needed.
Thanks,
Martin13 years ago in reply to: Category Feed 404 ErrorHello walt,
could you please try our development version?
It’s here:
http://foliovision.com/downloads/fv-top-level-cats-dev.zipPlease let us know if that solved your issue. Think of it as of a contribution to open source development – we didn’t had time to fully test it yet, so any help is welcome.
Thanks,
Martin13 years ago in reply to: Inserting file link to existing mediaHi Bryan,
just one more thing – if you want to use normal WordPress Media Library, you can – just turn on Settings -> Foliopress WYSIWYG -> Enable WordPress uploader buttons.
Thanks,
Martin13 years ago in reply to: Inserting file link to existing mediaHi Bryan,
just one more thing – if you want to use normal WordPress Media Library, you can – just turn on Settings -> Foliopress WYSIWYG -> Enable WordPress uploader buttons.
Thanks,
Martin13 years ago in reply to: Inserting file link to existing mediaHello Bryan,
with Foliopress WYSIWYG, you can use the Link dialog to put in links and link to existing posts or pages. Same as WordPress, you just need to enable it in Settings -> Foliopress WYSIWYG -> Advanced Options -> “Use WordPress Linking Dialog”. However the dialog needs to be cleaned up, the “Upload” function should not be showing up.
Then you can use the “Quick Insert Image” button which launched SEO Images image manager to upload pictures. If you need to get URL of some picture, you can use the “View Image” function which will open the selected image in popup window, which you need to allow. So having a “Copy file location” function would be nice, we can look into it when we do another round of updates.
Thank you for your suggestions.
Our editor currently has some issues with IE9, we are starting a fund raising drive which would allow us to accelerate development of fix for IE9 and also some other fixes.
Martin
13 years ago in reply to: Using your editor on other textareasHello hittheroadjack,
the main plugin object has fv_wysiwyg_load() function which basically does what you want. However it’s fixed to textarea with id ‘content’.
Then it would also require the main editor JS to be loaded, just like in FckLoadAdminHead().
So if you know a bit of programming, you can probably figure it out – we will be happy to include your improvements.
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.
We prefer our contact forms plain text.
Thanks,
Martin13 years ago in reply to: quick insert imageHello Amanda,
1. the issue with our image uploader should be related to permissions. Check the path in Settings -> Foliopress WYSIWYG -> Path to images on your web server and make sure it exists. If it does, you can ask your host administrators to fix permissions for that folder to be writable by your web server.
2. the issue with the WordPress uploader is even more weird. There must be some JavaScript issue on your post editing screen or some of WordPress files might be missing.
Check if you see any error messages in your web browser error console (you can use Web Inspector in Safari or Web Console in Firefox). If you do, you could start disabling plugins until you see which one was in conflict. Perhaps you installed some new plugins recently.
Thanks,
Martin13 years ago in reply to: Can’t Edit PagesHello Randy,
I did a quick test with WP Security Scan, but I haven’t noticed any issues.
However, I cleared up the warnings which show up when WP debug is ON, so maybe that will help you.
The new version was released just now.
Thanks,
Martin13 years ago in reply to: Can’t Edit PagesHello Randy,
we haven’t noticed such issue yet. By not being able to edit the pages you mean:
a) the pages are not in the menu in wp-admin?
b) the pages can’t be saved?1. Can you please try to turn off other plugins which might be affecting the permission levels first? (if you use any)
2. Is it just the “Pages” menu that is hidden for your editors or are they not allowed to edit pages at all? You can try to open page editing URL as editor and see what happens.Thanks,
Martin13 years ago in reply to: No reply buttonHello CJ,
this is actually in WP Dashboard -> Settings -> Discussion as “Enable threaded (nested) comments”:
http://codex.wordpress.org/Settings_Discussion_ScreenOur plugin is great for moderating larger discussions where you need to see the comments in context, rather than seeing them all sorted by time regardless of to which article they belong. We don’t redo this basic WordPress functionality, we just extend the moderation interface to the front-end.
Thanks,
Martin13 years ago in reply to: Can’t get Foliopress’ image manager to workHello Jelenko,
I checked out your issues. You probably have the WordPress debuging turned on. Read more about it here:
http://codex.wordpress.org/Editing_wp-config.php#DebugI also cleaned up the plugin code, so there warnings should not show up anymore.
New version – 0.9.20 is out.
Thanks,
Martin13 years ago in reply to: When will Foliopress be available for IE?Hello Pontus,
Foliopress WYSIWYG 0.9.20 is out. It doesn’t have the IE9 fix yet, but it has the Youtube button, which can be used for pasting of any Embed code and also any HTML code, so it comes handy.
Regarding the IE9 issues – we discovered that when you switch IE9 to IE8 mode, it works with our editor. We suggest this in our compatibility warning message when editing. Hopefully it will work at least for the more advanced users.
Thanks,
Martin13 years ago in reply to: When will Foliopress be available for IE?Hello again Pontus,
I checked your previous comments and I found out that we promised to you some new features for Foliopress WYSIWYG quite a bit of time ago. I’m really sorry that this was not finished.
I’ll put in these new features in tomorrow (easy posting of Youtube embed codes into post source).
The other issue – Internet Explorer 9 is not currently our priority. Fixing this is a big and time consuming task. We will start a fund raising drive including with your existing donation and if it goes well we will do it.
Thanks,
Martin13 years ago in reply to: When will Foliopress be available for IE?Hello Pontus,
I’m sorry about the delay, we are having a longer debate about this issue (and possible fixes) right at this moment.
Thanks,
MartinHello Edwin,
this must be a conflict with some other plugin (what plugins are you using?) or one of the JS files fails to load.
Are you seeing any error messages in your web browser error console (you can use Web Inspector in Safari or Web Console in Firefox)?
Thanks,
Martin13 years ago in reply to: Plugin generates faulty permalink URLsHello Veaceslav,
first of all, thank you for your interest in our plugin.
I believe this works properly in our plugin. WordPress always picks the category with the lowest ID for the permalink, if you use structure like /%category%/%postname%.html
So if you have parent and child category and you assign post to both, it will end up as /parent/postname.html if you assign only child category, it will be /parent/child/postname.html
If you are aware of this, then the issue must be somewhere else, perhaps some conflict with another plugin. Can you try to disable all the plugins and switch to default template and do the testing again?
There is a new version coming, which is in the final test stages:
http://foliovision.com/support/fv-top-level-categories/bug-reports/category-feed-404-error?replies=9#post-604Martin
13 years ago in reply to: Category Feed 404 ErrorHello Ken,
could you please let us know how if the plugin working for you?
We haven’t noticed any issues.
Thanks,
Martin13 years ago in reply to: Can’t get Foliopress’ image manager to workHello Jelenko,
thank you very much for a nice bug report.
It looks like some of the PHP warnings might be damaging the JavaScript code present in the window. We check our error logs on our sites to make sure our plugins are not filling them with errors, but we haven’t seen these before.
Could you try to save the plugin options in WP Admin -> Settings -> Foliopress WYSIWYG to see if it works afterwards? The options are initialized properly together with the plugin, but there might be a glitch in that.
We will test your issues and see if we can get to the same error. We also prepare some performance tweaks for the new version.
Thank you,
Martin13 years ago in reply to: Removing comment problemHello Mix,
there is probably conflict with some other plugin.
Let us know what plugins and what version of WordPress you use.
Thanks,
Martin13 years ago in reply to: Category paged archivesHello Rachelle, Randall and Ricardo!
Here’s the new beta version:
http://foliovision.com/downloads/fv-top-level-cats-dev.zipIt will fix your issues.
We preserved all the standard category URLs but (same as the older versions), if there’s a page with same URL as category, we show this page instead of the category.
Please let us know if it works for you. We are putting it on some of our sites too, once we have tested it for a while and once we hear back from you, we can put it on WordPress.org.
Thanks,
Martin13 years ago in reply to: Category Feed 404 ErrorHello Ken,
here’s the new version for your testing:
http://foliovision.com/downloads/fv-top-level-cats-dev.zipWe preserved all the standard category URLs but (same as the older versions), if there’s a page with same URL as category, we show this page instead of the category.
Please let us know if it works for you.
Thanks,
Martin13 years ago in reply to: Class ‘kfmSession’ not found13 years ago in reply to: Editor width issuesHello Simone,
your P tags are possibly limited to the 600px size in your CSS. If your content appears to be 900px wide but all the sentences go only up to 600px as soon as you start writing, then it’s likely the cause.
Are you trying to get full width for your editing?
We want to add support for the editor CSS which comes with new WordPress templates. That way any configuration for the true WYSIWYG should be needed only for themes without the editor CSS.
Thanks,
Martin13 years ago in reply to: Category Feed 404 ErrorHello Ken,
we might give this a try next week if we have any time left in our schedule.
Thanks,
Martin13 years ago in reply to: Everything is CenteredHello Daren,
Foliopress WYSIWYG is using your theme CSS if you specify the wrapper ID or class element. We describe the whole configuration process here:
http://foliovision.com/seo-tools/wordpress/plugins/wysiwyg/installation#wysiwygYou might need to adjust the styling for the tables, just like in step 6.: “If some HTML element (for example headers) are missing the styling”
We also want to add support for the editor CSS which comes with new WordPress templates, so this will be easier in future.
Thanks,
Martin13 years ago in reply to: Everything is CenteredHello Daren,
Foliopress WYSIWYG is using your theme CSS if you specify the wrapper ID or class element. We describe the whole configuration process here:
http://foliovision.com/seo-tools/wordpress/plugins/wysiwyg/installation#wysiwygYou might need to adjust the styling for the tables, just like in step 6.: “If some HTML element (for example headers) are missing the styling”
We also want to add support for the editor CSS which comes with new WordPress templates, so this will be easier in future.
Thanks,
Martin13 years ago in reply to: Category Feed 404 ErrorHello Ken,
thank you for your kind words. We see that there are some issues when using /category/postname structure and this seems to be one of them.
I’ll add that to one of the things to look after in our next release, which will use a bit different architecture, but will still preserve the original Top Level Categories behavior (I think it was showing pages instead of categories when they have the same URL, I’ll double check).
Martin
13 years ago in reply to: Question about homepage paged formatHello seoweb!
So your site has a lot of pages with URLs ragiong from http://example.com/page/2 up to http://example.com/page/200 and titles ranging from “Example blog – Part 2” to “Example blog – Part 200”, is that right?
And Google Webmaster tools or similar SEO utility is saying that you have too many similar titles? We suggest that you ignore warnings like this, just changing these titles by inserting some random text as you suggest would remove the warnings, but it makes no sense.
The issue here is that your blog has a lot of URLs which have /page/ in them, so that might lead search engines to assume that “page” is one of your keywords. We try to eliminate these issues on our some of our WP sites which are not really blogs by not providing the paging feature on the homepage and instead featuring the site content in few content boxes on the homepage. Each of these boxes might list one of the main categories and then link to archive for that category.
Thanks,
Martin13 years ago in reply to: Question about homepage paged formatHello seoweb!
So your site has a lot of pages with URLs ragiong from http://example.com/page/2 up to http://example.com/page/200 and titles ranging from “Example blog – Part 2” to “Example blog – Part 200”, is that right?
And Google Webmaster tools or similar SEO utility is saying that you have too many similar titles? We suggest that you ignore warnings like this, just changing these titles by inserting some random text as you suggest would remove the warnings, but it makes no sense.
The issue here is that your blog has a lot of URLs which have /page/ in them, so that might lead search engines to assume that “page” is one of your keywords. We try to eliminate these issues on our some of our WP sites which are not really blogs by not providing the paging feature on the homepage and instead featuring the site content in few content boxes on the homepage. Each of these boxes might list one of the main categories and then link to archive for that category.
Thanks,
Martin13 years ago in reply to: PlaylistsHello slingr,
last time we looked there were only next and previous buttons available for Flowplayer. There appear to be some good options now.
If you would like to implement this code in FV Flowplayer, we would be happy to integrate it in core of our plugin:
http://flash.flowplayer.org/plugins/javascript/playlist.html
http://flash.flowplayer.org/demos/plugins/javascript/playlist/scrollable.htmlThanks,
Martin13 years ago in reply to: Category paged archivesHah, sorry, didn’t see the response to Rachelle. Uploaded and made sure the 1.1.4beta was activated, and it’s working. =)
So now /weblog/category/work/page/2 isn’t needed, it’s just /weblog/work/page/2
Much thanks!
-RandallHello Darian!
We did a major rewrite of this plugin for better WordPress integration and compatibility. We fixed the basics first, so we will need to put this functionality back, as it was in the old version. Stay tuned for future version upgrades.
Thanks,
Martin13 years ago in reply to: Have audio but no videoHello roscoehix,
what video format are you using?
Flowplayer is able to play mp4 files, however not all codecs are supported. If you’re having troubles try to use another codec when saving your video, or use the flv format.
Thanks,
Martin13 years ago in reply to: Visual indicator of selecting image1
13 years ago in reply to: WP Linking dialog disappearedHello Doaadi,
Here is the changelog, also included in plugin zip file in readme.txt and wordpress.org:
http://foliovision.com/seo-tools/wordpress/plugins/wysiwyg/changelog/version-09We also posted an announcement in our blog:
http://foliovision.com/2011/07/19/foliopress-wysiwyg-ie-9Thanks,
Martin13 years ago in reply to: Please add new Wodpress linking dialogHello Stephanie,
this was added in Foliopress WYSIWYG 0.9.19. Some people reported issues with it, so we’ve put this into advanced options, turned off by default (Settings -> Foliopress WYSIWYG -> Advanced -> Use WordPress Linking Dialog).
Thanks,
Martin13 years ago in reply to: Category paged archivesHello Rachelle and Randall,
you both have the same issue. Could you please try the beta version in my previous message?
Thanks,
Martin13 years ago in reply to: Category paged archivesHello Rachelle,
can you at least let us know what WordPress version and permalink structure are you using?
You can give our beta version a try here: http://foliovision.com/downloads/fv-top-level-cats-1.1.4beta.zip
Let us know if it helps. We are planing to do a major rewrite to not have issues like this anymore.
Thanks,
Martin13 years ago in reply to: Support for Yoast SEO PluginHello Sid,
we are working on a revised version which will detect what SEO plugin you use and automatically give you those fields. If your SEO plugin won’t be in the list, you will be able to configure the field names manually.
Thanks,
Martin13 years ago in reply to: Human comments are marked as spamHello Paul,
there might be a conflict with your template CSS or HTML. It works well on all the sites we build, we work with a lot of different templates.
Try following the “Testing” guidelines in our FV Antispam Installation and Testing guide.
Thanks,
Martin13 years ago in reply to: Class ‘kfmSession’ not foundHello Flavio,
thanks to both you and Edrard for finding this!
We will include this fix in one of the next releases.
Thanks,
Martin13 years ago in reply to: Problems after upgrade – files missing?Hello Stephanie,
you need to delete the plugin and install it again. All the configuration will be stored.
Perhaps this is the problem you had – WordPress has issues with FTP on certain hosts: http://foliovision.com/seo-tools/wordpress/plugins/wysiwyg/install-upgrade-failed
We are looking into decreasing the size of our plugin.
Thanks,
Martin13 years ago in reply to: Akismet compatibility13 years ago in reply to: The plugin doesn’t replace the textarea13 years ago in reply to: Akismet compatibilityIt could also be due to CSS. Maybe one of the lines in your template CSS is forcing display for the textareas.
I added your question into FAQ section.
Thanks,
Martin13 years ago in reply to: The plugin doesn’t replace the textareaIt could also be due to CSS. Maybe one of the lines in your template CSS is forcing display for the textareas.
I added your question into FAQ section.
Thanks,
Martin13 years ago in reply to: Akismet compatibilityHello Poli,
my guess be that your template is using some different HTML for the comment form (it should do it with a WordPress function) and that’s why the special CSS is not working and two textareas appear instead of one.
If you are using any publicly available WordPress template, we can check it out and see what could be wrong.
Also, try clearing any WP cache you are using and browser cache.
Thanks,
Martin13 years ago in reply to: The plugin doesn’t replace the textareaHello Poli,
my guess be that your template is using some different HTML for the comment form (it should do it with a WordPress function) and that’s why the special CSS is not working and two textareas appear instead of one.
If you are using any publicly available WordPress template, we can check it out and see what could be wrong.
Also, try clearing any WP cache you are using and browser cache.
Thanks,
Martin13 years ago in reply to: PHP code in editorHello Amanda,
for these advanced posts with code (mostly JavaScript), we added “Plain text editing” check box to “Post Author” post and page editing meta box.
That might do the trick for you. We ended up using plugin called Sniplets to insert PHP code into posts. It’s bit more difficult and don’t forget to properly test if it works for you.
Please let us know if any of this was helpful!
Thanks,
Martin14 years ago in reply to: Upgrading IssueHello Heather,
sorry about the issues, there has been a mistake in the update. Thank you for letting us know.
It’s fixed now, please delete the plugin and reinstall.
Martin
14 years ago in reply to: Format for text is blankHello Karrington,
I’m not sure what you mean. Is the Format drop down menu empty, or is it not reflecting the font size of the text bellow your typing cursor? It works only with the basic HTML tags for headings and such, it won’t take in any inline styles.
In the first case, please try to re-save the plugin options in wp-admin -> Settings -> Foliopress WYSWIYG, there might be some glitch.
If you want to have more styling options, check out “How can I set different font sizes or colors?” in the updated FAQ section.
Thanks,
MartinHello Greg,
it looks like your web server configuration only allows data files being served from wp-content directory. It might be a good idea to block requesting any of the PHP files in that directory and subdirectories, but there is no reason to disallow HTML files.
With your setup, it’s not possible to call any of the PHP plugin code directly, but the PHP includes work.
You will have to disable these restrictions. Make sure that none of these directories is 777 and only restrict the file types in your 777 directories. Actually, chmod-ing plugin directory to 777 might be the reason why PHP and HTML is stopped. Are you sure you put 777 only on the images directory (it shouldn’t be needed on modern hosts anyway).
Thanks,
Martin14 years ago in reply to: Blank Gravatar IssuesHello Djoh,
please try to resave the options.
Also check if your .htaccess is not restricting access to your cache directory. We just discovered that it can (of course) cause issues, so we will cover that in FAQ soon.
Thanks,
MartinHello eak1111,
we tested this plugin in WordPress 3.1 and it works. Can you provide any details about your issue? Does it happen on another blog with other set of plugin? It might be a conflict with some other plugin.
WordPress 3.1 has also better default Screen Options. Is that somehow interfering on your site?
Thanks,
Martin14 years ago in reply to: Issues with WP Admin BarHello Tim,
we actually released a new version which is fixing this issue few minutes ago.
Please upgrade and let us know how it works for you.
Thanks,
Martin14 years ago in reply to: Uploading video via Media libraryHello Dave,
yes, you can insert videos using the WordPress Media Uploader, after you hit the Insert FV WP Flowplayer icon in either Foliopress WYSIWYG or the standard WordPress editor.
The Media Library works with the WordPress Media Library directory (which uses wp-content/uploads/ as a default).
WordPress supports only one directory for all the uploads, so it won’t go into /videos, unless you change that directory in Settings -> Media. But that would affect other uploads too. We are trying to figure our a way of changing this path for the videos without user intervention and without breaking older uploads.
Thanks,
Martin14 years ago in reply to: Please add new Wodpress linking dialog14 years ago in reply to: How to test the plugin?Hello Jeff,
check out the updated FV Antispam Installation page for some suggestions on how to test this plugin.
Thanks,
MartinHello Bill,
I suggest that you write your desired styles for table into template CSS and then just a class to the table, which will make sure you get the look you want.
However I checked the templates and they work. I added ‘Templates’ into Custom Toolbar and selected it as a toolbar for editor. When I did some change in the template, I had to reload the editor.
So you can do the changes to template, but when you upgrade the plugin, make sure to save the file and replace it again. We might also support alternative template XML paths in next release, that way the upgrades wouldn’t destroy the changes.
But for your case I really suggest that you use your template CSS and a class. Inline styles are no good, imagine you want to update your site design and you have to change all the tables by hand, as they have inline styles.
Thanks,
Martin14 years ago in reply to: Uninstall FV Clone Screen OptionsHello Carmen and Douglas,
I tested your isses thoroughly.
1. Installed latest WP with users admin, editor1, editor2
2. Configured admin’s screen options
3. Installed FV Clone Screen Options plugin
4. Logged in with editor1 to see that he has the default screen options
4. Cloned admin’s screen options all around
5. editor1′s and editor2′s screen options are now the same as admin’s6. Registered new account – editor3
7. Checked that editor3 has the new default screen options forced by FV Clone Screen OptionsCarmen’s issue –
8. I changed something in Screen Options for admin – this setting was preserved, it wasn’t destroyed after page refresh
9. Changed some Screen Options for editor2 – working fine
10. Changed some Screen Options for editor3 – working fine
11. Cloned admin’s Screen Options with FV Clone Screen Options – works okSo the plugin is not breaking changes to Screen Options.
Douglas’ issue –
12. I deactivated the plugin and was able to freely change Screen Options for editor2, editor3 and admin, so it works.
13. I registered new user called editor4. He had all the default WordPress Screen Options.The plugin is not altering your WP Screen Options when turned off. There must be something else, maybe some other plugin is having problems. Typically when there is some broken JavaScript in the edit screen, the Screen Options editing for that screen might not work anymore. This plugin uses no JavaScript.
Carmen, I’m not sure what do you mean by “the clone was a permanent state with no role back”. The cloned Screen Options will remain in wp_usermeta after the plugin is deactivated, but they can be freely altered usign all the default WordPress Screen Options controls. We also hate when plugin leaves some irreversible changes. But the purpose of this plugin is
1. you build a new site, you want your users to see some nice pre-configured Screen Options right after logging in.
2. you want to adjust Screen Options for all of your existing users, because you know what you are doing, as that will remove their own custom Screen Options if they had any. If you want to apply your settings only for new users, there’s “Save for new users only” option when cloning.Let us know what’s your opinion, as I think we aim for the same thing here – plugin which is simple to use, works with no extra installation steps and handles your WordPress without breaking any of the core processes or leaving some garbage.
Thanks,
Martin14 years ago in reply to: Uninstall FV Clone Screen OptionsHello Douglas,
our plugin makes no modifications to the WordPress behavior – as soon as you deactivate, everything is back to normal, so users are able to edit the Screen Options. They are able to do so even when the plugin is on.
If the Screen Options are not saving properly, I guess some of you other plugins is breaking the core WordPress Screen Options saving AJAX code.
Thanks,
Martin14 years ago in reply to: Editor width issuesHello Jose,
check “Custom WYSIWYG CSS” text area in plugin Settings screen. We put a width 600px as a default, as that’s the common width of the content column. Adjust it for your liking, or remove it.
Read our Foliopress WYSIWYG Installation Guide for more information.
That will most likely be the cause to your issues.
Thanks,
Martin14 years ago in reply to: WordPress MU compatibilityHello stwc,
I revised the code and tested activation on WordPress 3.0.4 multisite on localhost and one of our Cpanel hosts.
Please download the zipfile again and let us know if it works this time.
Thanks,
MartinHello Will,
I checked the Ajax Comment Preview plugin and there’s nothing we can do about it, as the comment input textarea code is hardcoded in the plugin.
However, there are some other comment preview plugins that work with FV Antispam:
Live Comment Preview works, but you have to change the textarea ID in the live-comment-preview.php file on line 124. You can find out that the ID is by looking into the source code of the page with comment form on it. It will be an unique string of seemingly random numbers and letters like “a7391152e”, so use that.
jQuery Comment Preview is not so lightweight as the Live Comment Preview, but you can set the ID in options, so you don’t have to edit files.
Thanks,
Martin14 years ago in reply to: Copying Post TitlesHello Brett,
sorry for not responding earlier.
Yes, we want to improve this plugin to work with titles and so on.
The function to copy the WordPress title into the SEO Title field could go into our FV All in One SEO Pack plugin.
Thanks,
Martin14 years ago in reply to: WordPress MU compatibilityHello stwc,
I found the issue and worked on getting this fixed. The bugfix will be a part of next release of this plugin, version 0.3.
In the meantime, you can install our latest beta version: http://foliovision.com/downloads/thoughtful-comments-0.2.9.beta.zip
It has some other improvements, which might need a bit of fine tuning, so we will love to hear any suggestions.
Thank you again for reporting this!
Martin
14 years ago in reply to: WordPress MU compatibilityHello stwc,
we are glad that you like our plugin.
I’ll look into the issues you outlined.
Thanks,
Martin14 years ago in reply to: Alternative wp-content locationHi fusse,
big thanks you reporting this, the wp-content directory location can be changed using a constant: http://codex.wordpress.org/Editing_wp-config.php#Moving_wp-content
We will fix it in one of the next releases.
Martin
14 years ago in reply to: Post paginationHello Ivan,
you need to put ‘foliopress-next’ into your custom toolbar. I guess you added ‘PageBreak’, but that’s not the correct command.
Thank you for reporting this, I’ll remove PageBreak from the installation guide and add the correct command.
Let us know how it goes, it works perfectly on our site.
Martin
14 years ago in reply to: Blank Gravatar IssuesHello Oliver,
thank you for the bug report, now the new version is released on WordPress.org.
Regards,
Martin14 years ago in reply to: Blank Gravatar IssuesHi Oliver,
My default (empty) gravatars are all loaded from gravatar.com and your plugin creates files for them. Then your plugin checks for a 404, but the file exists (13 byte).
I’m sending you a tweaked main PHP file of the plugin. Can you test it to see if it solves the problem?
I basically added another check for the 404. But I’m not sure if it will solve your problem. Can you provide the email address of some comment which has this bad 404 13B gravatar so I can see it? Or send me one of these 13B files?
I have tried it on two different servers now and on one it works properly so it won’t actually create empty gravatar files for people without gravatars. On the other it creates a gravatar (empty 13 bytes file) for all comments for some reason.
I suppose it’s because I disabled fopen on one server and it checks via fopen if it’s a default avatar (compare line 437) Since fopen is a major security risk I would have to rewrite this check.
That’s a different part of code and has nothing to do with the default gravatars. But if you disabled the fopen function, that might be the reason why none of the gravatars are cached properly. The files are probably containing only some warning instead of the content. Can you check it out?
Anyway, fopen is a standard function and is required to write the cached gravatar files. The more dangerous function is the remote fopen, but we are not using that. Have you any suggestion what we should be using instead of fopen and fwrite to write the cached files?
Can you check if there are any warnings on plugin settings page? It should be wp-admin/options-general.php?page=fv-gravatar-cache on your site. It checks if the directory is writable. If you disabled just the writing permissions, it should display a warning.
If you just disabled the fopen and fwrite functions, the plugin just can’t work, unless there is any other safer function which you think is better and we could use it.
Thanks, Martin
14 years ago in reply to: Markdown issuesHello Tracey,
I spoke to Alec a bit more about your issue.
We think that the Markdown plugin should be disabled by default and functional only if the post is marked as a Markdown post.
We can add a nice interface for this function, if you can provide a good tested piece of code which will disable the Markdown plugin when editing the post and also a piece of code which will disable it when displaying the post (so the Markdown won’t touch the normal HTML posts).
That way, your advanced users would be able to click a checkbox saying “this is a Markdown post” and our editor would not interfere with it.
Thanks,
Martin14 years ago in reply to: FCKEditor styling XML configuration fileHello Balthazar,
that’s because it’s JavaScript. Firefox seems to cache JavaScript a lot, so when you do changes to some files, it needs to be cleared.
Thanks,
Martin14 years ago in reply to: FCKEditor styling XML configuration fileHello Balthazar,
it should work fine with the latest version which is 0.9.16. Have you cleared your browser cache after the update of XML? I guess that’s what I forgot to add into FAQ.
Thanks,
MartinHello Laura,
looks like there is something wrong with your wp-config.php file – a whitespace character on line 155.
Here’s a guide how to solve this: http://codex.wordpress.org/FAQ_Troubleshooting#How_do_I_solve_the_Headers_already_sent_warning_problem.3F
Please let us know how it went.
Thanks,
Martin14 years ago in reply to: is_dir and open_dir restrictionsHello Steve,
you need to check out open_basedir in your php.ini. More information here:
http://www.php.net/manual/en/ini.core.php#ini.open-basedir
Your host should be able to give you a hand with this. Generally, if you are not running some complicated website, you should not have this issue with Foliopress WYSIWYG.
Thanks,
MartinHello Andy,
actually our plugin is cloning the dashboard settings too. I added a FAQ section with list of what’s cloned.
If you are missing some widgets on dashboard as a contributor, I would guess that the appear only to higher level users.
Thanks,
Martin