wizcomhosting
Forum Replies Created
-
Thanks for the reply Samer, as I say 4 stars may have been fairer.
2. Not a huge problem as I can order your plugin in my functions.php but…
3. …a dismissible notice please. Your users are not unintelligent, once told you have a premium version we will not forget. An orange flash on my All Plugins page is distracting and should be reserved for a problem that requires attention.
4. Your choice but it loses you a star!Forum: Plugins
In reply to: [WP GoToWebinar] Form display incompleteI have it working now.
I tried it in vanilla Twenty Seventeen – as you might expect it worked fine
I turned off all my plugins in my site – still didn’t work, so some kind of clash with the (bespoke) theme
I went into the plugin file inc/scripts.js and deleted the first function that populates the #calendar div (I’m not using the calendar) and it works.Thanks for your help. We probably won’t buy the premium version but I will insist that the client donates – it’s only fair.
Forum: Plugins
In reply to: [WP GoToWebinar] Form display incompleteMust be later there no?
This is the console log from Chrome
Uncaught DOMException: Failed to execute ‘atob’ on ‘Window’: The string to be decoded is not correctly encoded.
at HTMLDocument.<anonymous> (https://www.wearepes.co.uk/wordpress/wp-content/plugins/wp-gotowebinar/inc/script.js?ver=14.12:8:55)Just to be clear, there is no calendar shortcode on the page (nor any div called #calendar – which could cause a problem perhaps?)
Forum: Plugins
In reply to: [WP GoToWebinar] Form display incompleteOK, will do. I removed the calendar (it was only for testing) so we’re only talking about the form
Forum: Plugins
In reply to: [WP GoToWebinar] Form display incompleteShould have said, the Submit is displaying properly now, thanks.
Forum: Plugins
In reply to: [WP GoToWebinar] Form display incompleteThank you very much.
I’m still getting the error;
var calendarDataDecodedAndParsed = JSON.parse(atob(calendarData)); InvalidCharacterError: String contains an invalid character
in Console
And no thank you message (either in Chrome or Firefox)
I can see you registration ‘Dsfsdf’ but not the ones I’m making this morning
Forum: Plugins
In reply to: [WP GoToWebinar] Form display incompletePHP Version: 7.2.26
Wordpress Version: 5.3.2
Plugin Version: 14.10
Current Theme: pes2019
Application Used: Own Application
Active Plugins:
Advanced Custom Fields PRO
Ajax Load More
Classic Editor
Contact Form 7
Enable Media Replace
Force Regenerate Thumbnails
Limit Login Attempts Reloaded
Simple Custom Post Order
Hide SEO Bloat
WordPress Importer
Yoast SEO
WordPress Database Backup
WP GoToWebinarForum: Plugins
In reply to: [Simple Custom Post Order] Order not working on taxonomy archiveHi Mihaela
Thanks for staying with this but I am not sure how we can proceed.
There is a documented issue, apart from these two cases I found the solution via Google. It’s specific, it has a solution, therefore it should be possible to trace its cause within your code fairly simply.
My theme is bespoke, written from the ground up but is relatively simple. I would be happy to share it with you if you can think of a way. As I say the only plugin that is necessary is ACF and I can’t test without it switched on (without deconstructing the theme) and, if it was a clash with ACF as the cause I’m afraid it would be SCPO that would be ditched.
Wonderful! As simple as that, huh?
Thanks for the rapid response.
- This reply was modified 4 years, 9 months ago by wizcomhosting.
Forum: Plugins
In reply to: [Simple Custom Post Order] Order not working on taxonomy archiveForum: Plugins
In reply to: [Simple Custom Post Order] Order not working on taxonomy archiveThanks for your help Milhaela.
I am beginning to have problems with SCPO which is extremely disappointing as it has ‘just worked’ up until now. This morning I had a site whose order was lost until I checked “Show advanced view of Post Types” which did nothing I could see (except make the order work again!)
I have used the Health Check Plugin and the result is the same. Note I cannot turn off Advanced Custom Fields Pro or my them breaks but this should be an uncontroversial plugin. Also I cannot use the default theme because my custom post types are missing.
To be clear (because it seems from your screenshot you don’t completely understand my problem):
1. My post type is Projects, the Taxonomy is region, one of the Terms is Middle East
2. I can order the posts in the backend absolutely fine.
3. If I display the post-type archive
archive-projects.php
the order form SCPO works absolutely fine4. If I display the taxonomy archive
taxonomy-region.php
then the order is the post date order and not the SCPO order unless I use the patch listed above.This is absolutely repeatable with or without health check and only ACF active.
Forum: Plugins
In reply to: [Simple Custom Post Order] Order not working on taxonomy archiveAbsolutely. Though according to the docs that’s for sorting the order of the terms within taxonomies rather than the order of the posts in the taxonomy archive. However I turned it on as a precaution.
To recap it’s the order of posts in a taxonomy archive that is broken. A solution would still be appreciated rather than a workaround ??
Forum: Plugins
In reply to: [Simple Custom Post Order] Order not working on taxonomy archiveJust to add, I have had to add this to
functions.php
;function custom_pre_get_posts($wp_query) {
if (($wp_query->is_main_query()) && (is_tax(‘my-tax’))) {
$wp_query->set(‘orderby’, ‘menu_order’);
$wp_query->set(‘order’, ‘ASC’);
}
}add_action(‘pre_get_posts’, ‘custom_pre_get_posts’);`
And it works.
The capability used to grant access to SSA is manage_options which admin role has but editor role doesn’t.
I added this code in functions.php
/*-------------------------------------------------------------- ## Add Editor Access to SSA --------------------------------------------------------------*/ if ( ! current_user_can( 'manage_options' ) ) { $admin_role = get_role('editor'); // grant the capability $admin_role->add_cap('manage_options', true); }
Forum: Plugins
In reply to: [WPS Hide Login] What have you done?I have finally got my WordPress back by deleting again all htaccess files and restoring to WordPress defaults.
I am at a loss as what has caused the issue but I consider your plugin to be dangerous.