norbertk
Forum Replies Created
-
It is creating additional support cases from our users. The block pages have too much information on them and the custom message is buried in all the detail. I just need a simple page that display’s the custom message.
@andrewshu is there a way to do it programmatically from the database?
That works just as good! Thank you
Can I accomplish this programmatically with my custom theme?
Forum: Developing with WordPress
In reply to: How do I modify each instance of setcookie?I managed to figure it out. Solution here.
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Disable search for logged out usersThe search is added as part of the main menu. How can I only load it for the main menu when a user is logged in?
Marking as resolved.
Thanks @gelieys. Just resolved it a few minutes ago — needed to refresh permalinks.
Forum: Plugins
In reply to: [User Verification by PickPlugins] Disabling Email NotificationYour requests come off very aggressively. This is a free plug-in. Consider making a donation for your hasty requests.
I am using Elementor Pro and it has the ability to add fonts (https://docs.elementor.com/article/276-custom-fonts). I have no idea why Gelasio isn’t out-of-the-box, however.
Okay I was thinking about it wrong then. Just so I understand, I’ll want to install the fonts through Elementor, then go to that page and have OMGF optimize it?
Screenshots: https://imgur.com/a/9GnwBSA
When I’m in Elementor, I am expecting to be able to find the downloaded fonts.
Forum: Themes and Templates
In reply to: [Xolo] Mobile StylingThanks, I needed to add !important for it to work. Does that seem right?
Forum: Plugins
In reply to: [WP Author Box Lite] profile image hash not correctI fixed it by explicitly calling the Gravatar logo:
$avatar = get_avatar( $authorid, 80 ); if(!empty($avatar)){ $html .= '<div class="wpautbox-avatar">'; $grav_url = "http://www.gravatar.com/avatar/" . md5(strtolower($user_email)) . "?d=" . urlencode($default) . "&s=80"; $html .= "<img alt='' src='$grav_url' class='avatar avatar-80 photo' height='80' width='80' />"; $html .= '</div>'; }