sasweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Quiz Cat - WordPress Quiz Plugin] Quiz not showing for users except adminsAh, so the save and preview doesn’t preview fully! Okay, I’ve tested it on the embed and it seems to work when it’s a fully published page.
Thank you!
I’ve come to the root of the problem thanks to your message there! It seemed to be changing the guest default user # every time an event was published. I’ve reset the permissions and gone through the submission process a few times now and it seems to be sticking, so hopefully that’s sorted now…
Thank you 🙂
Still nothing I’m afraid. Is it possibly because people browsing the website aren’t “subscribers” but more like “guests”? Allowing anonymous submissions is what we want but it seems like you can’t do anything unless you’re at lesat a subscriber?
Thanks
Only User Access Manager which I’ve already tried deactivating!
I’ve just tested a new blog with the default WP theme and same issue: https://events.blogs.sas.ac.uk/test/
This site only has the handful of non-user related plugins on it.
🙁
I do yes.
As I said in my initial post I’ve deactivated what I can due to the multisite setup and it’s still not working. I can request for something to be turned off manually but it would affect the whole network so it’s not really possible to do that unless I can pinpoint the exact issue in the exact plugin. Is there anything else I can do?
[event_form] is the shortcode!
Under capabilities I’ve limited it to:
publish_events
edit_events
publish_recurring_events
edit_recurring_events
publish_locations
edit_locations
upload_event_imagesBut I’ve also given the usergroup all of the options for access and that still doesn’t work!
Hiya,
I am using a shortcode yes. I tried putting it on a separate page but it still isn’t working: https://hrrn.org.uk/test-2/
I thought it might have something to do with the User Access Management plugin we have but I’ve tried disabling that and get the same issue.
It’s a problem across the entire network as I’ve tried with a different site too.
Thanks for your help!
I have tried deleting, no luck 🙁 I’ve submitted a ticket there. Thank you!
Forum: Plugins
In reply to: [Custom Post Type UI] Page title takes from CPT taxonomyThe header file doesn’t have any errors in it.
I’ve deactivated Yoast and the problem persists still. I deactivated another plugin called Adminize which has removed the Events Archive title issue but replaced with another different title that’s nowhere either. Thanks for your help but I think this is now beyond the CPT plugin. I’ll keep looking elsewhere.
Forum: Plugins
In reply to: [Custom Post Type UI] Page title takes from CPT taxonomyYes, the first screenshot, as well as the tab name: http://i.imgur.com/JRA4UdJ.jpg
Haven’t got any archive-eventarchive.php file – I’ve even deleted and re-made the page and it’s still showing the same.
It *has* to be something to do with CPT – I’ve just gone into edit the Plural and Singular labels and when those fields say “Events” instead of “Events Archive”, the page is overwritten to display everything in that custom post type instead of the new tribe events page. I can’t find any settings that tie it to a certain page on the site, even when the slug is under /eventsarchive.
Thanks so much for looking into this again. If there’s anything else I can provide let me know.
Forum: Plugins
In reply to: [Custom Post Type UI] Page title takes from CPT taxonomyForgot the link: https://pastebin.com/TL7pcCa1
Forum: Plugins
In reply to: [Custom Post Type UI] Page title takes from CPT taxonomyHere’s the full archive.php
The one pasted above was from the custom-post-type-ui/custom-post-type-ui.php file
Thank you!
Forum: Plugins
In reply to: [Custom Post Type UI] Page title takes from CPT taxonomyIs it something to do with this code (which I’ve just tracked down):
function cptui_settings_tab_menu( $page = ‘post_types’ ) {
/**
* Filters the tabs to render on a given page.
*
* @since 1.3.0
*
* @param array $value Array of tabs to render.
* @param string $page Current page being displayed.
*/
$tabs = (array) apply_filters( ‘cptui_get_tabs’, array(), $page );if ( ! empty( $tabs[‘page_title’] ) ) {
printf(
‘<h1>%s</h1><h2 class=”nav-tab-wrapper”>’,
$tabs[‘page_title’]
);
}foreach ( $tabs[‘tabs’] as $tab ) {
printf(
‘%s‘,
implode( ‘ ‘, $tab[‘classes’] ),
$tab[‘url’],
$tab[‘aria-selected’],
$tab[‘text’]
);
}echo ‘</h2>’;
I think it is overriding any settings generated through the page editor?
Forum: Plugins
In reply to: [Custom Post Type UI] Page title takes from CPT taxonomyIt’s not the Tribe Events that is causing the problem though – the page is showing the title of the CPT taxonomy “Events Archive” rather than “Events” as is the page name/metadata/Tribe default.
Forum: Plugins
In reply to: [Custom Post Type UI] Page title takes from CPT taxonomyI believe when the site was developed some extensive work was done including CPT plugin including lots of template files but I can’t find *anything* within the template/php files anywhere that refers to an overridden page title.