psenechal
Forum Replies Created
-
Forum: Plugins
In reply to: [Import and export users and customers] Adding multiple rolesI think I may have figured it out. I changed my delimeter to a pipe “|” and then separate the roles by a comma. That allowed me to add both roles on import.
Let me know if that is the solution or if the “::” is supposed to work when using comma separated. It would be a lot easier since Excel saves as CSV.
Thanks!
Forum: Plugins
In reply to: [Payment Gateway Based Fees and Discounts for WooCommerce] subscriptionI have the same problem. $50 subscription product with a 3% fee added to the total for Stripe credit card. My total for the initial purchase shows $53.05, but the recurring total shows $51.50 per year.
I tried this on a regular product and I’m still getting the wrong amount…$53.05 for a $50 product with a 3% fee added to the total.
I also can’t disable the fee globally and enable it just for a product…it gets added twice when I do this.
Not sure what I’m missing here, but this extension doesn’t seem to work at all.
Forum: Plugins
In reply to: [The Events Calendar] Title for Single Events/Venues/OrganizersI was able to figure some of it out. You actually have to pass a post ID when using tribe_is_event(), tribe_is_venue(), and tribe_is_organizer().
To do this, I added the following at the top of my function:
global $wp; $url = home_url( $wp->request );
then made the call like this:
if ( tribe_is_event(url_to_postid( $url )) && is_single() )
I can now send back a static page title…just need to see if I can get the post name instead and send that back.
Thanks.- This reply was modified 6 years, 11 months ago by psenechal.
Forum: Plugins
In reply to: [Store Locator Plus?] Admin CSS issuesAwesome…thanks for the update!
Forum: Plugins
In reply to: [Store Locator Plus?] Admin CSS issuesNon-SLP pages are rendering fine. The main offender appears to be an overflow:hidden on the body tag in the SLP CSS. It’s most evident when viewing or adding locations. Can’t get to the submit button because there aren’t any scroll bars. Again, this is while using the Material WP admin theme plugin, so I’m not sure if it’s something you even want to address since the normal WP admin theme appears to be unaffected. I resolved the issue on mine by commenting out that CSS tag in the SLP style sheet.
Forum: Plugins
In reply to: wp E-commerce product images not shown – https is added to urlI don’t have an SSL certificate installed on my domain, so at the least, it’s going to generate an invalid certificate error. I also didn’t open port 443 on the firewall since I don’t have any secure connections going to it.
I would think using a secured url for the images would be something optional you could turn on or off from the admin area, but I can’t seem to find it. If it’s hard coded somewhere, please let me know and I’ll make the change.
Forum: Plugins
In reply to: wp E-commerce product images not shown – https is added to urlI’m having the exact same problem. Let me know if you find a solution. Thanks.