flantascience
Forum Replies Created
-
Forum: Plugins
In reply to: [Logo Carousel] Slider has stopped sliding since updatingThis is still not working – is anyone still working on this plugin?
I don’t mind paying for it. But what I need, is a daily sales report that gets mailed out at 5pm. BUT sales made after 5pm on that day, would get added to the next-days report.
So, for example…. if I make 7 sales at noon today. Then my 5pm report will include those. If I make 3 sales at 10pm today, that would show up on tomorrows 5pm report.
Does that make sense? Can I do that with the paid plugin?
There is already a child theme in place. I have checked with WooCommerce and the theme developers and they say it is something with the PPpbBT plugin that I need to modify.
Forum: Plugins
In reply to: [Force Login] How can it work with SSL without saying “too many redirects”?Hey, I really appreciate you looking into that for me. Looks like I already had the functionality. It works pretty well, though I’ve got some issues with it. But I will take those issues up with the folks at Ultimate Member. THANK YOU
Forum: Plugins
In reply to: [Force Login] How can it work with SSL without saying “too many redirects”?The plugin which I use which I think is redirecting people is Ultimate Member.
So I just updated the login page URL to /pun-login
I’m still getting the error. This is what’s now in the address bar:
Forum: Plugins
In reply to: [Force Login] How can it work with SSL without saying “too many redirects”?Just tried again.
I do use a “custom login” page. It is here:
https://peerunschooling.net/loginWhen I try to access that page (which is whitelisted) while the plugin is enabled, I get the redirect error. This is what ends up in my address bar when that error appears, it looks like the plugin is trying to forward me to the wp-login.php page:
Also, here is what is in my functions.php for whitelisting:
/**
* Filter Force Login to allow exceptions for specific URLs.
*
* @return array An array of URLs. Must be absolute.
*/
function my_forcelogin_whitelist( $whitelist ) {
$whitelist[] = site_url( ‘/’ );
$whitelist[] = site_url( ‘/register’ );
$whitelist[] = site_url( ‘/login’ );
$whitelist[] = site_url( ‘/community-guidelines’ );
$whitelist[] = site_url( ‘/privacy-policy’ );
$whitelist[] = site_url( ‘/terms-and-conditions/’ );
return $whitelist;
}
add_filter(‘v_forcelogin_whitelist’, ‘my_forcelogin_whitelist’, 10, 1);For the Jim Flannery, here is a link: https://jim-flannery.com/product/flim-jannery-flim-trilogy/
For Backup Tactical – what I did is disable the PayPal for the PPpbBT plugin and then enabled the standard PayPal as a workaround. This works for this site, but for a variety of issues I can’t do it on other sites.
I know you can’t offer a ton of support when customizing things. But i went to that site and copied the code into a custom plugin and when I activated, I got this message:
The plugin generated 2 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
Any tips on this? Is this code for an older plugin version? Did I mess something up? I’ll copy the code I used below here.
<?php /* Plugin Name: Ultimate Member - Custom Post Types Extension by JF Web Dev Plugin URI: https://utlimatemember.com Description: This adds tabs and content for custom post types to the profiles page Author: Jim Flannery Version: 1.0 Author URI: https://www.jfwebdev.com */ ?> <?php /* First we need to extend main profile tabs */ add_filter('um_profile_tabs', 'add_custom_profile_tab', 1000 ); function add_custom_profile_tab( $tabs ) { $tabs['mycustomtab'] = array( 'name' => 'My custom tab', 'icon' => 'um-faicon-comments', ); return $tabs; } /* Then we just have to add content to that tab using this action */ add_action('um_profile_content_mycustomtab_default', 'um_profile_content_mycustomtab_default'); function um_profile_content_mycustomtab_default( $args ) { echo 'Hello world!'; } ?>
OK …. still got an issue. My custom taxonomy has a parent-> child relationship. Is there a way to get that to show up at all? It lists all the categories in a list without showing that hierarchy.
Ya…. this is resolved. I read the manual ??
HOW TO LINK A FIELD TO A CUSTOM TAXONOMY
Add the desired field to which the custom taxonomy should be mapped. Drop Down, Multi Select, Radio Buttons and Checkboxes fields are current supported.
Open the field settings by clicking on the field and click on the “Advanced” tab.
Check the “Populate with a Taxonomy” checkbox.
Select the desired taxonomy from the drop down that appears.Looks like my custom field might have showed up, but the taxonomy isn’t. In a “normal” post, you can have a Gravity Field for “Post Category.” I want the equivalent of this for my Custom Post Type – any tips?
As a short-term workaround, I can take the backuptactical.com site and disable PayPal Powered by Braintree and re-enabled the standard PayPal checkout. This really isn’t ideal though, and the Jim-Flannery site is still in need of a fix for this bug.
Same thing is happening on my other site! Yikes!
https://backuptactical.com/checkout/
You’ll see that it immediately says “Oops, something went wrong. Please try a different payment method.”
And then if I scroll down and choose “PayPal” as the payment method, the “Place Order” button disappears. If I disable PayPal entirely, then this error goes away.
So it appears something is messed up with the PayPal part of this.
Forum: Plugins
In reply to: [Max Mega Menu] Lost all styling when I updated my themeYES!!!
Dude – you’re a savior. This was driving me nuts and it was so damn simple!!