writecraft
Forum Replies Created
-
Forum: Plugins
In reply to: [Private Only] [Plugin: Private Only] Private by IPI would like this as well.
Forum: Plugins
In reply to: [Store Locator Plus?] Store list page or shortcodePerfect! Thanks
Thank you for your response! Your plugin is wonderful and I will be contributing soon — once I figure out some of these little issues.
Yes — I have custom user roles. I want files downloadable only by registered users, including my custom roles. But when I enabled “Daily user download limits”, which is the only way I could see to have it default to members-only for all files, WP-Filebase didn’t recognize my custom user roles as having permission.
We don’t actually need the limits, so I’m working around this by disabling the download limits and making each individual file (all pdfs so far) ‘members only’ instead of ‘everyone’ and selecting the user roles in the dropdown (using the ‘extended form’ when uploading the files).
It would be nice to be able to set this as a default setting for all files, to be over-ridden in individual files, though, so that the site manager doesn’t have to fuss with each file she uploads. Is there a way to do this?
Forum: Fixing WordPress
In reply to: add Archive page to wp nav menuI too would like to know this.
Had the same thing — in scripts.js I commented out the ‘jQuery(document).ready(function()’ funtion, then it worked.
Also had issue with IIs pretty permalinks, so I modified /includes/classes.php:
below: function form_html() {
add: global $post;below: $url = wpcf7_get_request_uri();
add:
$title = the_title();
$url = str_replace($title.’/’, ‘/wordpress/index.php?page_id=’.$post->ID.”, $url);Replace /wordpress/ with the name of the folder where WordPress is installed.