JohnStaples
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] How to Set Width of Dropdown?Thank you but I already tried using !important to override; it appears that you are setting CSS dynamically in Javascript. Can you provide any working CSS that will override the width? I was able to change the width on line #102 of dwf.js but I do understand the issues that can arise when changing the plugin code directly. If there is a way using CSS I’d def prefer that!
Thanks again and thank you for the cool plugin!I forgot to mention that both sites AND their databases are on the same hosting account.
I found this worked perfectly on another (cleaner) site so I’ll mark this as resolved.
Forum: Plugins
In reply to: [Super Progressive Web Apps] How do I get page caching to work?I received an email from someone named fracisstarks who was attempting to answer my question above but they misunderstood my question and explained how to set up webpage caching on the server.
Perhaps I was not clear. I am referring to pages that the PWA caches locally on the phone so that whenever internet is unavailable the user can still interact with those cached pages.
To understand what I mean use your phone to go to app.starbucks.com and add their app to your homescreen. Then visit a few pages. Now close their app, put your phone in airplane mode and open their app again. You will be able to see some of the pages you viewed before.
This is a fundamental feature of a PWA but I cannot seem to get SuperPWA to do this. Any ideas as to how I can get this to work?Can you please provide an update on when iOS support will be added to your Push Notifications WordPress plugin? Does this depend on Apple releasing Safari 16.4 from beta (https://developer.apple.com/documentation/safari-release-notes/safari-16_4-release-notes)?
Forum: Plugins
In reply to: [Two Factor] Disable all but email authTry dropping this code into your functions.php in your child theme folder. It removes all providers except email.
// Redefine 2FA to be only email
add_filter( ‘two_factor_providers’, ‘your_prefix_two_factor_providers’ );
function your_prefix_two_factor_providers( $content ) {
$content = array(‘Two_Factor_Email’ => TWO_FACTOR_DIR . ‘providers/class-two-factor-email.php’,);
return $content;
}Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Hide Event Time on GridThe plugin author gave me a slick way to do this so I wanted to mark this as resolved and share the solution.
—————–
1) edit the calendar shortcode (where you want this effect) to look something like this,
[my_calendar id=”no_time_calendar”]2) go to My Calendar Settings and click the Text tab
3) for “Event title (Grid)” change it from this,
{time}: {title}
to this,
<span>{time}: </span>{title}
and save4) then add this CSS to your custom stylesheet,
#no_time_calendar .event-title a span { display: none; }
—————–And that’s it! Now the calendar you chose will hide the times on events on the grid while your other calendars will continue to display it normally.
Huge THANK YOU to the plugin author for a Great Plugin and Outstanding support! I strongly encourage everyone using this plugin to support the author!
Thanks Nicolas. So, this would still appear to the server like a request for wp-login.php?
Your description say this,
“This free plugin will automatically fetch metadata from your mp3 files to autocomplete the title, album and artist name as well as the length of each track in your audioplayer”
Is that no longer valid?
Forum: Plugins
In reply to: [Enhanced Media Library] Unable to Tag Multiple ItemsI resolved the issue. No help needed.
It looks like you’ll need to take some action! NextScripts has posted this in answer to this problem that is caused by changes at Facebook,
https://www.nextscripts.com/news/2018/05/facebook-officially-closed-unrestricted-access-to-its-api/
NextScripts has posted this in answer to this problem that is caused by changes at Facebook,
https://www.nextscripts.com/news/2018/05/facebook-officially-closed-unrestricted-access-to-its-api/
Thanks for your reply! We figured out another way to do this but will consider your plugin for future needs. Thanks again!
Forum: Plugins
In reply to: [Job Manager] Emails Not SendingSo, I removed the WP Mail SMTP plugin and tried the technique described here,
http://www.butlerblog.com/2013/12/12/easy-smtp-email-wordpress-wp_mail/
and it worked like a charm for both Job Manager and Contact Form 7! I am getting emails instantly now.
Forum: Plugins
In reply to: [Job Manager] Emails Not SendingOne more piece of info. I installed Contact Form 7 and created a simple form and it correctly sends that to my email so I have confirmed that email sending is working. This is some sort of issue with Job Manager not sending email.