Rogyw
Forum Replies Created
-
There are some online instructions on how to rollback:
https://www.wpbeginner.com/plugins/how-to-rollback-wordpress-plugins-version-control-for-beginners/You can get past versions of any plugin from the WordPress plugins listings under plugin > development > advanced. e.g.
https://www.ads-software.com/plugins/job-manager-career/advanced/Hope that helps.
We have Version 1.11.1 installed and are experiencing this issue. Data submitted isn’t saved to database and not sent in notification emails.
- This reply was modified 4 years, 10 months ago by Rogyw.
We are experiencing a similar issue – but it may be different.
We have a form with multiple conditional drop down boxes and fields. Many are required fields.
At first I thought people were just putting in a space to get around the required field requirement.Its a major problem that people can just tap the space to get around the required field. Please fix that.
Sometimes we receive an email with all the expected information, sometimes we get an email with only some of the field values.
I note that the field values on the email and saved in the database are only the fields displayed when the form first displays. The field values that are missing are the fields normally hidden when the form first displays. i.e. any conditionally displayed fields are not saved in either the database or the email. (I just tested it and confirmed this).
Will do more testing.
WordPress 5.3.2
Forminator 1.11.1 (but it started happening in a previous versions)Issue present with WordPress 5.2.2 and WooCommerce 3.6.4
See https://github.com/woocommerce/woocommerce/issues/23752 and https://core.trac.www.ads-software.com/ticket/47448Forum: Plugins
In reply to: [Search Everything] empty search / error filtering posts in admin pagesThanks for tracking this down @marsuby and for the suggestion.
I had a case with bbPress content not being displayed – turned debug.log on and the same invalid SQL issue ((())) was being reported. Site used Search Everything and bbPress. Disabling Search Everything allowed the content to display. Adding your hotfix also helped.Forum: Plugins
In reply to: [Search Everything] Conflict with bbPressHi, I just had a case of a site which has been running bbPress and Search Everything for a couple of years. It recently stopped working due to the Search Everything SQL error ((())) issue noted elsewhere in these Search Everything forums. Applying the temporary patch suggested by
https://www.ads-software.com/support/topic/empty-search-error-filtering-posts-in-admin-pages/
resolved the conflict with bbPress in this case.I did some debugging to check the values em-manager is receiving in
wp-content/plugins/events-manager/em-events.phpprint_r($post); print_r(array($events_page_id, $locations_page_id, $categories_page_id, $edit_bookings_page_id, $edit_events_page_id, $edit_locations_page_id, $my_bookings_page_id, $tags_page_id)); $content = apply_filters('em_content_pre', '', $page_content); print_r($page_content); print_r($content);
and the output is as follows:
WP_Post Object ( [ID] => 0 [post_author] => 0 [post_date] => 0 [post_date_gmt] => 0 [post_content] => [post_title] => [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => [post_password] => [post_name] => [to_ping] => [pinged] => [post_modified] => 0 [post_modified_gmt] => 0 [post_content_filtered] => [post_parent] => 0 [guid] => [menu_order] => 0 [post_type] => page [post_mime_type] => [comment_count] => 0 [filter] => raw [is_404] => 1 [is_page] => [is_single] => [is_archive] => [is_tax] => ) Array ( [0] => 24 [1] => [2] => [3] => [4] => 321 [5] => [6] => [7] => ) $page_content = <h1>This is the group info page.</h1> $content =
The change I suggest as a possible solution is an additional check for $post->ID being 0 i.e. changing line 13 of events-manager/em-events.php to:
if( empty($post) || empty($post->ID) ) return $page_content; //fix for any other plugins calling the_content outside the loop
It resolves the issue for me – but does anyone know if there are any cases this change will cause other problems?
Thanks.- This reply was modified 7 years, 10 months ago by Rogyw.
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Content of page is not showingForum: Plugins
In reply to: [BuddyPress Groups Extras] Content of page is not showing– @dirkhaworth just seen your post after posting – Snap! Thanks for confirmation!
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Content of page is not showingIn my case it looks like a conflict caused by the “Events Manager” plugin. Currently using Events Manager version 5.6.6.1. It’s function em_content($page_content) is generating the
<div id="em-wrapper"></div>
, which is meant to be wrapping the page content if its an event. It’s taking in the page content and stripping it. I’ll post on Events Manager plugin support forum instead.- This reply was modified 7 years, 10 months ago by Rogyw.
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Content of page is not showing+1 On this issue. First time install with
- WordPress 4.7.1
- BuddyPress 2.7.4
- BuddyPress Groups Extra Version 3.6.9.1
- plus various other plugins
I installed the plugin. Went into its settings and added two group pages under an “Information” group-tab. Rich Editor is enabled for both pages and fields.
The two group pages are listed under the Groups ‘Pages’ tab sub menu.
For both pages, the content saved in the pages content area is not displayed, and the “Edit” link for the page is shown at top right corner.
Clicking on the Edit link I see the admin edit form and the content is saved in there correctly.Here is the html output:
<div role="navigation" id="subnav" class="item-list-tabs no-ajax"> <ul> <li> <a href="/groups/mygroupname/gpages/group-info">Group Info</a> </li><li class="current"> <a href="/groups/mygroupname/gpages/group-news">Group News</a> </li> </ul> </div> <div class="gpage"> <div id="em-wrapper"></div> <div class="edit_link"> <a target="_blank" title="Edit link for group admins only" href="/groups/mygroupname/admin/extras/pages-manage/?edit=40408">[Edit]</a> </div> </div>
- This reply was modified 7 years, 10 months ago by Rogyw. Reason: Added html output