franworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Showtime] Problem WordPress 4.3.1I am not sure if you resolved your issue but if you go into the showtime.php file and update all instances of the add_menu_page $capability parameter, your problem should resolve.
Replace the number with one of the administrative user roles outlined in the codex.
https://codex.www.ads-software.com/Roles_and_Capabilities<?php
add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
?>Details on how to add a menu page
https://codex.www.ads-software.com/Function_Reference/add_menu_pageIt works well but slows down my website also.
Yes, when I’m not logged in I can access the form on submit.
I still haven’t figured out the Firewall bit. I will perform another round of testing on Monday.
Yes
Turning OFF the ‘User Management’ section resolves the Password Protected page redirecting to the WP Dashboard on submit.
WP has the option to Password Protect a Post.
Ok, I will check that out.
And what about the Password protected page automatically redirecting to the WP Dashboard when it should open up the protected form?
I was puzzled with #2 & #3 as well. It seems as if the firewall inconsistently picks and chooses what it allows through.
I can see in the Audit Trail where a complete form entry was blocked while others were allowed through.
Forum: Plugins
In reply to: [Showtime] "Add show" button not working at showtime pluginI had the same problem. My shows weren’t loading and the add show button wasn’t working. After making these changes everything is working fine. (At least for now)
I changed all instances of
<?=
to<?php
and
Edited one line of code:Original
<form method="post" action="<? SS3_URL ?>/crud.php" class="showtime-update-shows">
Edited
<form method="post" action="<?php echo SS3_URL ;?>/crud.php" class="showtime-update-shows">
Forum: Plugins
In reply to: [Showtime] [Plugin: Showtime] Images not workingThis was happening to me as well. After much headache, trial and error; I discovered the solution.
When uploading an image or using an image already uploaded…be sure to include the link URL before inserting the image — if the link url is not present click the “File URL” button.
If this does not work…i don’t know what will.