David Wang
Forum Replies Created
-
Thank you so much for the quick reply! I actually want to hide the shipping address entirely, so I guess I should just use
.shipping-address
as the selector? Please let me know how I can find the HTML markup for the invoice and I will figure out the CSS myself.Hi @davidblood hope this saves you some money.
add_filter( 'pmpro_has_membership_access_filter', 'my_admins_bypass_pmpro_restrictions' ); function my_admins_bypass_pmpro_restrictions( $hasaccess ) { if ( current_user_can( 'edit_posts' ) ) { $hasaccess = true; } return $hasaccess; }
See: https://www.paidmembershipspro.com/how-to-add-code-to-wordpress/
Forum: Plugins
In reply to: [Download Monitor] 500 server error when serving downloadsNever mind, I figured out the problem. The path to the file was wrong.
I’m experiencing this issue too, although only in the Google Chrome browser. @togemaxxmedia is your site on a Nginx server?
Hi Shea, sorry I forgot to update this thread.
The problem wasn’t related to Code Snippets at all. It was because the folder I wanted to use as the temporary directory was outside of the
open_basedir
paths.Thank you!
Forum: Plugins
In reply to: [bbp style pack] HTML getting posted in New Topic formThank you, I should have been more specific with my questions then. Cheers
Forum: Plugins
In reply to: [bbp style pack] HTML getting posted in New Topic formThanks Robin, but won’t this strip all tags? I want to keep bold, italics, links – all the formatting enabled by bbp style pack’s rich editor. Thank you
Forum: Plugins
In reply to: [WP Job Manager] Buttons to trigger AJAX filteringThank you, that’s really useful ??
Forum: Plugins
In reply to: [WP Job Manager] Buttons to trigger AJAX filteringThanks Richard, but I’m not looking for a Submit button. I’m hoping to add buttons that filter by category. Any ideas there? Thanks!
Forum: Plugins
In reply to: [WP Job Manager] How to put job search on my front pageHave you tried using the
[jobs]
shortcode on the front page?I had a similar issue and realized that it was caused by a
body { height: 100% }
CSS rule. Gutenberg converts it to.editor-writing-flow { height: 100%; }
To fix it, I added this CSS to my
wp_head
.editor-writing-flow { height: fit-content !important; }
Hope this helps you guys at BSF fix the problem ??
Thanks Beka, appreciate your quick response. I realized that there was also the more general
woocommerce_after_account_payment_methods
hook which turned out to be better for my purposes. Just sharing that for anyone else who may need.Hey there, thanks for taking the time to look into this. I think I figured out the issue. I was previously using MonsterInsights for GA, and it has a wrapper function that handles events. I’m guessing it doesn’t account for the WooCommerce GA code because they offer a paid add-on for it. I switched to a different plugin and it works fine now. Sorry, I should have updated this thread.
Cool, looks like that solved it. Looking forward to the updated version going live on the repo.
Forum: Plugins
In reply to: [Genesis Simple Share] WaypointsJust want to chime in to say that the bug still affects static front pages. I would really appreciate it if you guys added a check for
is_front_page()
too. Thanks!