ricks03
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Capabilities required to Add/Manage usersThat’s not helpful at all. Spending an additional 30 seconds to provide more direction would make your feedback more useful.
Forum: Themes and Templates
In reply to: [Responsive] bbPress Full Width PageThis was resolved for me by the bbPress team by their making modifications to the
full-width-page.php > bbpress.php file and my local custom CSS.Change:
<?php Responsive\responsive_in_wrapper(); // wrapper hook. ?>
<main id=”primary” class=”content-area col-940″ role=”main”>to
<?php Responsive\responsive_in_wrapper(); // wrapper hook. ?>
<main id=”primary” class=”content-area bbpress-area col-940″ role=”main”>and
add this to the custom css section of your theme.bbpress-area {
width: 100% !important;
}and now supporting bbpress!
Forum: Themes and Templates
In reply to: [Responsive] bbPress Full Width PageWhen I copy it over, the theme for bbpress doesn’t use the full page.
Forum: Themes and Templates
In reply to: [Responsive] bbPress Full Width PageIt’s not a bad idea, so I just tried that.
If my new page is /forums (which it lets me do) the page doesn’t get wide, but gets mangled.
If my new page is /forums2 it’s the correct width, but mangled.
Forum: Themes and Templates
In reply to: [Responsive] bbPress Full Width PageHmm. I wasn’t using a short link, just accessing the forums through the default
/forums/According to the bbPress documentation, I need to copy full-width-page.php to bbpress.php and place it in the root of my child theme, but this doesn’t appear to work.
Forum: Plugins
In reply to: [Frontier Post] Editing of Custom Post TypesBut it is a different end-user experience, so it’s awkward.
Forum: Plugins
In reply to: [Frontier Post] Custom role and user-editingYup, I know I don’t need URE for FP. But since I have to use it for other reasons, I might as well have all my permissions in one place. The permissions for the role(s) are set programmatically, so it’s easy enough to maintain.
My comment was that the frontier_* capabilities are, I thought, the only ones that would need to be set in order to use FP.
However, even if I give a user all of the FP capabilities, the Edit button still didn’t appear. I had to add edit_published_posts
Forum: Plugins
In reply to: [Frontier Post] Number of Tags to Edit can’t be set to 0?I’m currently hiding tags by removing the permission frontier_post_tags_edit, which makes tags not display.
Right now the config in theory lets me select “Default Taxonomy Layout”: Hide which doesn’t appear to actually make all the taxonomy stuff hide, so I was looking for another path.
Forum: Plugins
In reply to: [Frontier Post] Publish isn’t enoughWell, I’m given the option of deselecting/not displaying the “Save” button.
I’m not suggesting the user not be able to Save, I’m suggesting that, when the article is Published, that the Publish button should still appear so the user can republish it.
Forum: Plugins
In reply to: [Frontier Post] frontier_post_form_standard_init brokenI don’t get any errors. The text just doesn’t show up. My plan is to do something more complicated, but when it wasn’t working a reduced it down to this simple example because I was trying to limit variability for you.
I have multiple custom fields working via frontier_post_form_standard_top . However, frontier_post_form_standard_top doesn’t have access to $fpost_sc_parms while frontier_post_form_standard_init does.
My first attempt was without the “<P>”. I added it troubleshooting from the other direction 🙂 Have also removed the “!”. Still don’t get the text to appear.
Forum: Plugins
In reply to: [Frontier Post] Custom Post Type PermissionsI do know why copy/paste does’t work I think! The code that is copy/paste from the site is using “smart quotes” instead of well, not smart quotes. I had a number of other weird problems in other shortcode things that were fixed from that (just deleting the smart quotes, and re-entering them as normal quotes).
So this is now resolved.
Forum: Plugins
In reply to: [Frontier Post] Custom role and user-editingIt looks like the user needs the edit_published_posts capability to get the edit button to appear? I thought I could set all permissions only with the frontier_* capabilities.
Forum: Plugins
In reply to: [Frontier Post] “Status” shows when disabledThis appears to be only the Simpel input form. It’s ok on the standard one.
Forum: Plugins
In reply to: [Frontier Post] Custom Post Type PermissionsFollowing the suggestion from a report several years ago,
[frontier-post frontier_add_post_type=tripreport]seems to resolve the issue. It’s a bug, but at least I can work around it now!
(Great plugin, clearly built by someone who understands the need to be able to customize and extend things!)
Forum: Plugins
In reply to: [Frontier Post] Custom Post Type PermissionsIf I make the shortcode:
[frontier-post]the page loads.