hmcody
Forum Replies Created
-
I am using UM version 2.3.2 and the option is Enable the “Content Restriction” settings for the Gutenberg Blocks It is found on UM Settings -> Access -> Restriction Content right under the Restricted Access Message box.
I don’t see “Allow Gutenberg Block restrictions” anywhere in my settings, though they sound like the same thing. Perhaps we are working on different versions?
I was having the same problem. Part of the issue was that I needed to explicitly Enable Content Restriction for Gutenberg Blocks on the Access tab in UM settings. The Restrict Access toggle was then available for the menus. Unfortunately, the settings which had been previously set on the menu did not seem to carry over, so I still have to re-secure the menu.
Forum: Developing with WordPress
In reply to: Link search not working with wp_link_query_argsNor should you have to chase it down!
Turns out the real issue is with Relevansi and I can fix it by turning it off for Admin Searches. There IS a problem with Elementor, but given what bad luck I have had in the past dealing with their support, I probably won’t bother reporting it.
Thanks for looking at this.
Forum: Developing with WordPress
In reply to: Link search not working with wp_link_query_argsLooks like it is something in Elementor. It has a function (filter_wp_link_query_args) that throws and error when wp_link_query_args is invoked.
Forum: Developing with WordPress
In reply to: Link search not working with wp_link_query_argsDuh! That did the trick. Thanks.
Which leads me to believe that I have a theme or plugin conflict in my full site, since I don’t have the typo there.
Forum: Plugins
In reply to: [WPS Hide Login] Login URL gives 404 error after core updateSorry, @futureyoon, I thought I had replied to you before. This is the code I use. The commented out line was what was causing the problem. Once I removed ‘index.php’ everything started working again.
//Add Login/Logout to front-end menus
add_filter(‘wp_nav_menu_items’, ‘add_login_logout_link’, 10, 2);
function add_login_logout_link($items, $args) {
ob_start();
//wp_loginout(‘index.php’);
wp_loginout();
$loginoutlink = ob_get_contents();
ob_end_clean();
$items .= ‘- ‘. $loginoutlink .’
‘;
return $items;
}Forum: Plugins
In reply to: [WPS Hide Login] Login URL gives 404 error after core updateUpdate: The redirect was included in my login/logout code. Once I took that out, everything is working as it should.
Forum: Plugins
In reply to: [WPS Hide Login] Login URL gives 404 error after core updateI am running into the same problem after updating to 5.7.1. One thing I noticed is that if I click on my login link on my main menu, it now appends
“?redirect_to=index.php”
after the login url slug. I don’t think it was doing that before. Everything is fine for accounts that have access to the backend, but accounts that only have frontend access are sent to the 404 page.Forum: Plugins
In reply to: [Dynamic Conditions] Use a shortcode for Condition ValueI ended up not using your plugin to do this, so I no longer have what I did available.
Thanks for getting back to me, though.
Forum: Plugins
In reply to: [Pods Gravity Forms Add-On] Cancel Save of Custom PostI’ve solved the immediate problem by eliminating to ability to select another file.
But I would still be interested to know where I could cancel the save if I need to do so.
Forum: Plugins
In reply to: [Elements Plus!] Scheduled Plus! Not WorkingWorks just as it should!
Thanks so much for the quick fix!
Forum: Plugins
In reply to: [Elements Plus!] Scheduled Plus! Not WorkingI’m glad to know it isn’t just me! I look forward to hearing about a fix.
Thanks!
Forum: Plugins
In reply to: [Elements Plus!] Scheduled Plus! Not WorkingOr not.
I deactivated all of the plugins except for Elementor and Elements Plus. I tried both with Elementor Pro activated and deactivated. I tried changing the theme to Twenty-Seventeen. I tried starting a new page with new sections and text. The schedule still seems not to work on sections. I also tried installing Elements Plus on my local machine and the section schedule wasn’t working on there, either.
Two questions:
1) What theme are you using?
2) Could there be some other part of Elements Plus that needs to be enabled for the schedule to work on sections? I have only enable Schedule since that is all I need.Forum: Plugins
In reply to: [Elements Plus!] Scheduled Plus! Not WorkingI disabled the schedule for the section and enabled the schedule for the column. I’m still seeing the header.
I have a bad feeling that his is a conflict with another plugin ?? Let me play the disable an test game an see what I find out. I will report back!