msacco6
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] product category showing 1 -24 but only shows 10Thanks @ajwd. I tried a lot of things. I ended up selecting all products in the bulk editor and re-selecting status to “publish” and visibility to “Search and Catalog” and it worked. I’m not sure if somehow some products got “hidden” for any reason.
I’m still not sure why 24 products were not showing up on the page, even if the product was hidden it shouldn’t effect how many products show on a page.
Thank you for checking it out.
Forum: Plugins
In reply to: [Secondary Title] Small feature idea: placeholderGreat plugin and thanks for adding the Placeholder. I am trying to write a function to change the placeholder copy for a custom post type called “company” so that my users know what the space should be used for. I am not very experienced in writing functions so any help is appreciated.
function change_secondary-title-text( $subtitle ){ $screen = get_current_screen(); if ( 'company' == $screen->post_type ) { $subtitle = 'City, State'; } return $subtitle; } add_filter( 'secondary_post_title', 'change_secondary-title-text' );
Forum: Plugins
In reply to: [My Private Site] Jonradio private site with A5 custom loginThank you to both of you. Works perfectly.
Forum: Plugins
In reply to: [My Private Site] Jonradio private site with A5 custom loginIs there a solution to getting these to work together? It’s strange because I was using both on a localhost site and they worked both perfect. Today, I uploaded the same site to a godaddy hosting account and I can’t get A5 Custom Login Page to work.
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Double Charge When Error In FormI’m still not positive, but I think this is what happened to me. In my case I think that the people who were being charged twice were using a company card and the zip code that they entered was not matching where the card was registered. They were getting notifications of an error on their form but the payments were actually going through.
To handle this I went into my Stripe Account general settings and disabled the zip code verification as well as the CVC verification. I didn’t have any more issues since then. Good Luck.
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Double Charge When Error In FormSame thing. I am having customers get charged up to four times for the same transaction?!?! Anyone have a solution for this?