marcelle42
Forum Replies Created
-
I am also having this issue. I suspect @ispacecrusader is correct about the PHP versions, because I cloned the site (for other reasons) onto a server with an older version of PHP, and the plugin still works fine, but when I look at the server with the newer version of PHP, I get the error listed above.
I hope this will be fixed in a near-future version!
I’ve tried it with that setting both enabled and disabled. It doesn’t change the outcome — the form always shows again, without the success message.
Hi there,
Thank you for your advice.
1. We are using EM 5.9.7.3.
2. We are using PHP 7.3.
3. I tried WP Safe Mode, but it didn’t get along with our firewall settings. Instead, I copied the site to our staging environment, activated the Twenty Twenty theme, and deactivated all plugins except EM. I am still having the same problem.Something worth noting is that the success message does display for logged-in users, just not for anonymous users. Any advice would be appreciated.
I thought I had ruled that out by deactivating all the plugins, but lo and behold, when I deactivated the Impreza theme and activated Twenty Seventeen, the problem went away. Taking this up with the Impreza Support system, but thought I would note it here since Impreza is a popular theme, and purports to support TablePress. Thanks for your guidance.
Forum: Themes and Templates
In reply to: [WP Simple] Front Page Banner won't changeI’ve just added you as a user to the site. You should received your login information in an email momentarily.
Forum: Themes and Templates
In reply to: [WP Simple] Front Page Banner won't changeI have the same issue in both Chrome and Firefox (on a Mac, if that matters).
Forum: Plugins
In reply to: [PressForward] Nominated items not showing in "Under Review"Hi Aram,
I’m not sure if other plugins are AJAX-heavy. My best guesses are that “Video List Manager” might be. I can try deactivating all my plugins?
I followed the instructions you gave. The errors in the console were:
POST https://ulife.gmu.edu/wp-admin/admin-ajax.php 500 Internal Server Error 816ms load-sc...ver=4.1 (line 4) Object[button.btn.btn-small.nominate-now.schema-actor.schema-switchable] relatio...ver=4.1 (line 120) Object[button.btn.btn-small.nominate-now.schema-actor.schema-switchable, button.btn.btn-small.nominate-now.schema-actor.schema-switchable] relatio...ver=4.1 (line 122) Non-switchable, make active relatio...ver=4.1 (line 130) Switchable schema class: off - turn it on relatio...ver=4.1 (line 142) Switchable Active class relatio...ver=4.1 (line 126) Switchable schema class: on - turn it off relatio...ver=4.1 (line 138) POST https://ulife.gmu.edu/wp-admin/admin-ajax.php 200 OK 919ms load-sc...ver=4.1 (line 4)
When I expanded the admin-ajax.php items, I didn’t see anything marked “action” in the Headers subtab. However, in the Response subtabs, I found this:
<?xml version='1.0' encoding='UTF-8' standalone='yes'?><wp_ajax><response action='pf_ajax_relate_1981'><relationships id='1981' position='1'><response_data><![CDATA[30]]></response_data><supplemental><user><![CDATA[5]]></user><buffered><![CDATA[]]></buffered></supplemental></relationships></response></wp_ajax> {"wp-auth-check":true,"server_time":1421420347} {"wp-auth-check":true,"server_time":1421420467}
Is that helpful, or am I missing something?
Thank you!
Karen
Forum: Plugins
In reply to: [PressForward] Nominated items not showing in "Under Review"Aram,
I updated to the latest version of PressForward (3.4.4), but I’m still having the same problem. Any suggestions would be welcome.
Forum: Plugins
In reply to: [PressForward] Nominated items not showing in "Under Review"Nothing at all happens when I hit the Reset Readability link.
The debug module is enabled, and the log is as follows:
Current Log
Does not update in real time.
Total Current Feed Items: 12
Month to date Feed Items: 12
Last month Feed Items: 0Total Current Nominations: 0
Month to date Nominations: 0
Last month Nominations: 0Total Actions Taken: 9
Total Nominations Published: 0
The log does not exist.
The feed I’m using is https://newsdesk.gmu.edu/feed/.
Forum: Plugins
In reply to: [The Events Calendar] Overriding events widgetI’m having this same issue (I haven’t modified the core code yet). Why does this widget display as an item in an ordered list, instead of an unordered list? I’ve worked around it through CSS, but it’s not ideal.
Forum: Fixing WordPress
In reply to: How does wp_nav_menu work?Fantastic! Thanks for letting me know. Don’t forget to mark this as resolved!
Forum: Fixing WordPress
In reply to: How does wp_nav_menu work?Just having a conversation, and learned that wp_nav_menu() doesn’t fire if you don’t have any menus defined. Do you have any menus defined under Appearance > Menus?
Forum: Fixing WordPress
In reply to: How does wp_nav_menu work?Can you use pastebin.com to paste your entire header.php file and share the link, for context? Do you have a link to your site that you can share?
Forum: Themes and Templates
In reply to: [Easel] Sidebar IDsSidebar ids are set when the sidebar is declared, usually in the functions.php file, usually with the register_sidebar function. You can change an existing sidebar is, or you can create a new sidebar. Note that changing an existing id may break some of the styles.
You may want to make a copy of the Easel theme before you change it, or create a child theme. Otherwise, if the Easel theme is updated, your changes will be lost.
Forum: Themes and Templates
In reply to: Converting static-HTML template to a WP websiteThe Theme Development page is the best place to start. The main content of a page or post is handled by the Loop. So, the most basic WordPress theme is:
<?php get_header(); ?> <!-- This part is the Loop --> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <!-- do stuff ... --> <?php endwhile; ?> <?php endif; ?> <!-- the Loop is over --> <?php get_footer(); ?>
The Theme Development page explains how to customize the header and footer files, and other kinds of theme files you might want to use.