extensionly
Forum Replies Created
-
Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] Showing pricesCopy the url to your website.
Uncheck number 4 you don’t need it if number 2 is not checked.Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] Showing pricesI meant “link”
Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] Showing pricesPlease tell us the plugin settings-the first few would do.
Also please post a ling to the front end of the site so we can check.Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] HTTP 500 error with WordPress 4.9.8Sorry people. Haste makes waste. Please update to 1.8.97
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay Not WorkingI am using WooCommerce Dynamic Pricing by WooCommerce and it still does not work!
“Seems there is no interest in resolving,”. Unfortunately that is what it seems like.Thanks for the response.
I wrote the name wrong. It is just WooCommerce Dynamic Pricing. Apple Pay button is there but nothing happens, no message, nothing in the logs(with debug on). Just a dead button. It is for a client site. It is disabled now since they don’t want people to see it that way. Latest Stripe and WooCommerce and superstore as a theme. Since I posted I disabled the Dynamic pricing and it came back and died again. So i am not sure if it is the dynamic pricing either at this point. but with dynamic pricing it does not work at all.
- This reply was modified 8 years, 12 months ago by extensionly.
- This reply was modified 8 years, 12 months ago by extensionly.
- This reply was modified 8 years, 12 months ago by extensionly.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay Not Workingis there a real solution out there, free or paid. I really need to get this working.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay Not WorkingI saw it was marked resolved. I thought maybe solution was communicated off line.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay Not WorkingI have the same problem. I see this is marked as resolved. Does this mean:
1- WooCommerce Apple Pay does not work with Dynamic Pricing .
2- WooCommerce Apple Pay does work with Dynamic Pricing .
3- There was a problem and now it has been fixed.I still have the same problem and I use dynamic pricing plugin. Any info would be greatly appreciated
Forum: Fixing WordPress
In reply to: Need Help with Basic CSSYou can try this:
insert the following in the functions.php file in the current theme directory. You can put it at the very end of the file.
function hide_my_menu_css() {
if ( is_home())
{echo “<style> #site-navigation{display: none !important;}</style> “;
}
}
add_action( ‘wp_head’, ‘hide_my_menu_css’ ,100);
Forum: Fixing WordPress
In reply to: All text in posts now centered, no idea whySorry i meant to say turn it into “h1, h2, p {/*text-align: center;*/}”
Forum: Fixing WordPress
In reply to: All text in posts now centered, no idea whyWhen you find the “h1, h2, p {text-align: center;}” in that file, turn it into “h1, h2, p {//text-align: center;}”
and see what happens.Forum: Fixing WordPress
In reply to: All text in posts now centered, no idea whyyou have an inline style sheet that does this
h1, h2, p {
text-align: center;
}
check out this plugin : popup-by-supsystic
there is a file in popup-by-supsystic/js/core.jsand look at this line that says:
“All that is below: CSS I’ve come up with. -Brian *\/\nh1, h2, p {text-align: center;}”
this might be a good start.Forum: Fixing WordPress
In reply to: Blank admin pageYou can check out this manually resetting your plugins (no Dashboard access required).
Forum: Fixing WordPress
In reply to: Function to replace all h1 tags in my theme with h2in short, you don’t have to replace h1 with h2. You can make them look what you want using your style sheet.